码迷,mamicode.com
首页 > 其他好文 > 详细

configure error C compiler cannot create executables错误解决

时间:2016-03-11 12:17:04      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

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

?

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的值。

? ?

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

? ?

export LIBS=
export DYLD_LIBRARY_PATH=
export LD_LIBRARY_PATH=

configure error C compiler cannot create executables错误解决

标签:

原文地址:http://www.cnblogs.com/xulele/p/5264789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!