本文主要是介绍configure: error: C++ compiler cannot create executables,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
命令:sudo apt-get install gcc
命令:sudo apt-get install g++
说明:
想在Ubuntu下手动编译安装一个软件,在./configure 命令之后提示下面的错误:
configure: error: C++ compiler cannot create executables
猜测可能是C++编译器的原因,baidu了一下,网上关于这个错误的信息很多,得知是没有安装gcc或者装了gcc没装g++,
我的Ubuntu没有安装g++,安装命令:sudo apt-get install g++,最好也先执行一下sudo apt-get install gcc
(如果已安装,执行该命令也不会出错,系统检查到已安装则不会再安装了),
上面两条命令执行结束之后,再./configure 编译就会成功了。
这篇关于configure: error: C++ compiler cannot create executables的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!