原因一:
configure 过程中遇到C compiler cannot create executables的原因:
gcc编译环境没用配好, 直接apt-get install gcc libc6-dev就可以解决


原因二:

可能你的环境变量被修改了

vi  ~/.bashrc

最后可能的环境变量被改变。。。

if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion

fi

#######下面的加#注释掉

# export CC=arm-linux-gcc
# export AR=arm-linux-ar
# export LD=arm-linux-ld
# export RANLIB=arm-linux-ranlib
# export STRIP=arm-linux-strip

vi /etc/profile

 

修改最后环境变量

PATH=$PATH:~/linuxarm-gcc/usr-4.3.2/local/arm/4.3.2/bin/
###注释掉下面
# export CC=arm-linux-gcc
# export AR=arm-linux-ar
# export LD=arm-linux-ld
# export RANLIB=arm-linux-ranlib
# export STRIP=arm-linux-strip

 

重启下配置文件

source /etc/profile

不行再开一工终端操作。

./configure

通过

OK

 

原因三:由于我们在编译软件之前,进行了export操作,改变了CFLAGS和LIBS的值

 

我们在编译软件的时候,是不是经常遇到下面的错误信息呢?

checking build system type… i686-pc-linux-gnu
checking host system type… i686-pc-linux-gnu
checking for gcc… gcc
checking for C compiler default output file name…
configure: error: C compiler cannot create executables
See `config.log’ for more details.

 

有很多人建议重装GCC,但是确无济于事。

这个错误产生的原因其实很简单: 由于我们在编译软件之前,进行了export操作,改变了CFLAGS和LIBS的值。

这个时候只要讲这个值清空就可以了。

sh   export LIBS=

sh   export CFLAGS=


转载来自:http://www.handlecode.com/os/1038184.html