Chinaunix首页 | 论坛 | 博客
  • 博客访问: 346504
  • 博文数量: 102
  • 博客积分: 3140
  • 博客等级: 中校
  • 技术积分: 680
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-28 11:44
个人简介

开阔未来

文章分类

全部博文(102)

文章存档

2015年(10)

2014年(1)

2013年(1)

2012年(4)

2011年(8)

2010年(24)

2009年(51)

2008年(3)

我的朋友

分类: LINUX

2009-05-18 15:29:05

Netperf 交叉编译时会出错 configure: error: cannot check setpgrp。这是由于在configure 文件中会有 如下 语句:
if test "${ac_cv_func_setpgrp_void+set}" = set; then
  echo $ECHO_N "(cached) $ECHO_C" >&6
else
  if test "$cross_compiling" = yes; then
  { { echo "$as_me:$LINENO: error: cannot check setpgrp when cross compiling" >&5
echo "$as_me: error: cannot check setpgrp when cross compiling" >&2;}
   { (exit 1); exit 1; }; }
else

在语句中判断是否ac_cv_func_setpgrp_void 设置, 如果没有设置,交叉编译必然会出错。

所以可以用此命令configure 后再编译:

echo "ac_cv_func_setpgrp_void=yes" > config.cache

./configure --build=i686-pc-linux-gnu --host=mips CC=mips_4KC-gcc --config-cache


阅读(4222) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~