报错:checking whether the C compiler (gcc ) works… no

2016年7月20日 | 分类: 【技术】

在configure时,报错:

loading cache ./config.cache
checking for gcc... gcc
checking whether the C compiler (gcc  ) works... no
configure: error: installation or configuration problem: C compiler cannot creae executables.

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

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

export LIBS=
export CFLAGS=

参考:http://blog.csdn.net/sxhong/article/details/740572