0

根据 gcc wiki 站点http://gcc.gnu.org/wiki/InstallingGCC上给出的安装说明,

tar xvzf gcc-4.8.1.tar.gz
cd gcc-4.8.1
./contrib/download_prerequisites
cd ..
mkdir objdir
cd objdir
$PWD/../gcc-4.8.1/configure --prefix=$HOME/gcc-4.8.1 
make
make install

我试图在我的笔记本电脑上安装 gcc。但是,在输入配置命令后安装时出现以下错误。

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... /usr/bin/sed
checking for gawk... gawk
checking for libatomic support... yes
checking for libitm support... yes
checking for libsanitizer support... yes
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/fedora-19/Downloads/objdir':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.

输入make命令后,显示以下错误。

make: *** No targets specified and no makefile found.  Stop.

请指导这个问题。

4

3 回答 3

0

我认为有一种在 Fedora 19 上安装 gcc 的最简单方法。你尝试过 yum 吗?有类似的东西sudo yum install gcc

您的错误意味着必须在 configure 命令期间生成的 makefile 不存在,因为您没有任何 c 编译器。您可以在 config.log 文件中查看详细信息。

于 2013-07-27T21:00:30.303 回答
0

您可以执行以下命令在 Fedora 中安装 GCC 编译器:

百胜安装 gcc

执行此操作后,它会显示总大小和总下载大小。

或者从网上下载 gcc-4.4.7-3.el6.x86_64 包并执行:

rpm -ivh gcc-4.4.7-3.el6.x86_64*

它可能会起作用。

于 2014-09-28T11:41:31.943 回答
-1

这解决了问题,

$PWD/../configure

make

make install
于 2015-03-02T08:54:15.073 回答