当前位置: 技术问答>linux和unix
gcc安装遇到的问题
来源: 互联网 发布时间:2015-06-26
本文导语: 我在redhat8下安装gcc-2.95.3.tar.Z,运行./Configure --prefix=/usr 提示错误: ./Configure : line 7: cc :command not found *** the command 'cc -o conftest -g conftest.c' failed. *** *** You must set the enviroment variable CC to a working compiler...
我在redhat8下安装gcc-2.95.3.tar.Z,运行./Configure --prefix=/usr 提示错误:
./Configure : line 7: cc :command not found
*** the command 'cc -o conftest -g conftest.c' failed. ***
*** You must set the enviroment variable CC to a working compiler ***
请问是什么问题?怎样解决?谢谢
./Configure : line 7: cc :command not found
*** the command 'cc -o conftest -g conftest.c' failed. ***
*** You must set the enviroment variable CC to a working compiler ***
请问是什么问题?怎样解决?谢谢
|
redaht8默认的gcc应该是3.0以上的版本,为什么还要安装2.95.x?若有特殊需要,可下载二进制包安装,或者先将某一个版本的gcc安装好,然后再下载你需要的gcc的源码编译安装。
|
对,如果你没有编译器,那么只能下载一个编译好的二进制包。
其实redhat8应该自带了gcc的二进制包,当然没有配置交叉编译。
而且gcc-2.9x和gcc-3.x应该都有。
把安装盘找出来升级以下就行了。
其实redhat8应该自带了gcc的二进制包,当然没有配置交叉编译。
而且gcc-2.9x和gcc-3.x应该都有。
把安装盘找出来升级以下就行了。
|
你得先有一个编译器才能编译gcc的源代码啊