linux中安装GCC时以下错误,各位大侠帮看看是什么原因啊?

root@Test gcc-4.6.1]# ./configure --prefix=/usr/local/gcc-4.6.1
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
checking for gawk... gawk
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/smartfinder/gcc-4.6.1':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

错误:没有可用的CC编译工具在你的$PATH中

所以有两种可能:
1 你的系统中本身就没有编译器用来编译GCC的源代码.
2 你的编译器不在$PATH中,所以不能调用,要转到相应的目录中去.追问

那我应该怎么办呢?我对linux完全不懂啊。。。

追答

1:没有办法,因没你没有编译器编译代码,就无法安装GCC了,这是一个先有鸡还是先有蛋的问题
2:去usr/bin下看有没有GCC,如果有,加到$PATH中.

温馨提示:内容为网友见解,仅供参考
第1个回答  2011-09-27
configure: error: no acceptable C compiler found in $PATH

你被谁忽悠了?你肯定什么都不会就这么弄,谁让你这么弄的你赶紧提刀砍他去把……
提问前请先搜索旧问题行吗?一楼那个回答我看着很眼熟……
第2个回答  2011-09-27
你要先装gcc编译器,才能编译新版gcc的源码。
你犯不着自己编译啊。
去软件管理的软件下载安装现成的gcc可执行程序就行了。
Ubuntu默认是有gcc的。
openSUSE装开发环境,命令行su切到root用户,
执行:
zypper install bison ccache flex gcc gcc-c++ gcc-java gcc45-locale gcc45-info zlib-devel nasm vtcl boost-devel gsl-devel sqlite3-devel libqt4-devel qt4-assistant-adp-devel autoconf automake automoc4 checkinstall cmake-gui make qt-creator git mercurial libqt4-devel-doc

如果是radhat的,把上面zypper换成yum试试。追问

能直接告诉我在哪里下载吗?

追答

你的什么linux系统呢?

追问

red hat linux

追答

第一,连上网;
第二,打开命令行,su切换到root用户,
执行
yum install bison ccache flex gcc gcc-c++ make

试试看。

第3个回答  2011-09-27
别下gcc源代码 直接下安装版
相似回答