已经安装好了gcc 但是为啥还出现Cannot find appropriate C++ compiler on this system
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了已经安装好了gcc 但是为啥还出现Cannot find appropriate C++ compiler on this system相关的知识,希望对你有一定的参考价值。
solaris10下 输入gcc-v 有版本提示
gcc 是编译C语言的,g++ 才是编译C++的,还有一种可能就是没有添加环境变量,希望我的回答能够对你有所帮助 参考技术A 你应该是只装了gcc没有装g++吧C compiler cannot create executables问题
今天在装advancemame游戏时遇到下面的问题,在网上搜索才知道是gcc没有装好,回想以前也有一些程序没有装好,是不是也是这个问题呢?于是试了一下以前一直没有装好的d4x,虽然现在熟悉了wget.虽然没有装上,不过情况有所好转,跟以前报的错误不同了,应该是能装了
原因一:
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=
以上是关于已经安装好了gcc 但是为啥还出现Cannot find appropriate C++ compiler on this system的主要内容,如果未能解决你的问题,请参考以下文章
Adobe Acrobat 7.0,我已经安装好了,为啥在EXCEL转换成PDF是,提示PDFmaker遗失?请各位高手帮帮忙!谢
在ubuntu上安装了gfortran编译器,出现了大问题哦!!求助啊!!
eclipse中使用git,代码已经和服务器一致,synchonize视图为啥还会显示图标?如何不显示这些文件?