我正在尝试从源代码安装GCC.我在https://gcc.gnu.org/wiki/InstallingGCC和this question on SO都遵循维基上的说明.
我在运行时遇到有关配置步骤的问题:
$PWD /../ gcc-4.6.2 / configure –prefix = $HOME / gcc-4.6.2
我得到以下输出和错误:
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... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking for libatomic support... yes
checking for libcilkrts support... no
checking for libitm support... yes
checking for libsanitizer support... yes
checking for libvtv support... yes
checking for libmpx support... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/usr/bin/objdir':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
我看起来好像错误是因为没有安装C编译器.这让我感到困惑,因为没有安装C编译器安装GCC应该做什么?我能找到的所有解决这个错误的解决方案都说我需要安装GCC,那么如果我需要安装GCC,我该如何安装GCC呢?
有什么我想念的吗?我还能做些什么来安装GCC?
注意:我不能只使用yum或apt-get来安装它,因为我使用的是没有安装这些类型的安装程序软件的自定义发行版.