问题描述
在 Ubuntu 17.04 上尝试从源代码构建 llvm 3.4 时,我遇到了一些与 gcc 6.3 相关的问题(描述了 此处),所以我想使用 gcc-4.9.但是,当我从终端运行时:
While trying to build llvm 3.4 from source on Ubuntu 17.04, I have encounteredsome problems related to gcc 6.3 (described here), so I want to use gcc-4.9.However, when I run from terminal:
sudo apt install gcc-4.9 --fix-missing
我收到以下错误:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
cpp-4.9 gcc-4.9-base libasan1 libcloog-isl4 libgcc-4.9-dev
Suggested packages:
gcc-4.9-locales gcc-4.9-multilib gcc-4.9-doc libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan1-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg
libcilkrts5-dbg libquadmath0-dbg
The following NEW packages will be installed:
cpp-4.9 gcc-4.9 gcc-4.9-base libasan1 libcloog-isl4 libgcc-4.9-dev
0 upgraded, 6 newly installed, 0 to remove and 128 not upgraded.
Need to get 13.2 MB/13.2 MB of archives.
After this operation, 46.7 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Err:1 http://il.archive.ubuntu.com/ubuntu zesty/universe amd64 gcc-4.9-base amd64 4.9.4-2ubuntu1
404 Not Found
Err:2 http://il.archive.ubuntu.com/ubuntu zesty/universe amd64 cpp-4.9 amd64 4.9.4-2ubuntu1
404 Not Found
Err:3 http://il.archive.ubuntu.com/ubuntu zesty/universe amd64 libasan1 amd64 4.9.4-2ubuntu1
404 Not Found
Err:4 http://il.archive.ubuntu.com/ubuntu zesty/universe amd64 libgcc-4.9-dev amd64 4.9.4-2ubuntu1
404 Not Found
Err:5 http://il.archive.ubuntu.com/ubuntu zesty/universe amd64 gcc-4.9 amd64 4.9.4-2ubuntu1
404 Not Found
Unable to correct missing packages.
E: Failed to fetch http://il.archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.9/gcc-4.9-base_4.9.4-2ubuntu1_amd64.deb 404 Not Found
E: Failed to fetch http://il.archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.9/cpp-4.9_4.9.4-2ubuntu1_amd64.deb 404 Not Found
E: Failed to fetch http://il.archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.9/libasan1_4.9.4-2ubuntu1_amd64.deb 404 Not Found
E: Failed to fetch http://il.archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.9/libgcc-4.9-dev_4.9.4-2ubuntu1_amd64.deb 404 Not Found
E: Failed to fetch http://il.archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.9/gcc-4.9_4.9.4-2ubuntu1_amd64.deb 404 Not Found
E: Aborting install.
这里发生了什么?谢谢!
What is going on here? Thanks!
推荐答案
主存储库中似乎确实缺少 gcc-4.9.4
,它只有 gcc-4.9.3
:http://us.archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.9
It seems that gcc-4.9.4
is indeed missing from the main repository, which has only gcc-4.9.3
:http://us.archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.9
这解释了 apt
中的 404 Not Found
错误.
作为第一次修复尝试,您可以尝试以下操作,以防出现apt
能够修复的冲突:
This explains the 404 Not Found
error from apt
.
As a first fix attempt, you may try the following, just in case there's a conflict which apt
will be able to repair:
sudo apt-get update --fix-missing
sudo apt-get dist-upgrade
sudo apt-get install gcc-4.9 g++-4.9 gcc-4.9-multilib
Ubuntu 16.04
在 Ubuntu 16.04 上,可以从 Launchpad 工具链存储库安装 gcc-4.9:
On Ubuntu 16.04, gcc-4.9 could be installed from the Launchpad Toolchain repository:
sudo apt-add-repository -yu 'deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu xenial main'
sudo apt update
sudo apt-get install gcc-4.9 g++-4.9 gcc-4.9-multilib
Ubuntu 18.04(可能还有 17.10、17.04)
Ubuntu 18.04 (and probably 17.10, 17.04)
如果上述方法不起作用,您可以手动安装 gcc-4.9 以及所有必需的依赖项,方法是使用 dpkg
获取所需的软件包并按顺序安装它们:
If the above didn't work, you could go about installing gcc-4.9 manually along with all required dependencies, by grabbing the required packages and installing them by order, using dpkg
:
mkdir ~/Downloads/gcc-4.9-deb && cd ~/Downloads/gcc-4.9-deb
wget http://launchpadlibrarian.net/247707088/libmpfr4_3.1.4-1_amd64.deb
wget http://launchpadlibrarian.net/253728424/libasan1_4.9.3-13ubuntu2_amd64.deb
wget http://launchpadlibrarian.net/253728426/libgcc-4.9-dev_4.9.3-13ubuntu2_amd64.deb
wget http://launchpadlibrarian.net/253728314/gcc-4.9-base_4.9.3-13ubuntu2_amd64.deb
wget http://launchpadlibrarian.net/253728399/cpp-4.9_4.9.3-13ubuntu2_amd64.deb
wget http://launchpadlibrarian.net/253728404/gcc-4.9_4.9.3-13ubuntu2_amd64.deb
wget http://launchpadlibrarian.net/253728432/libstdc++-4.9-dev_4.9.3-13ubuntu2_amd64.deb
wget http://launchpadlibrarian.net/253728401/g++-4.9_4.9.3-13ubuntu2_amd64.deb
sudo dpkg -i gcc-4.9-base_4.9.3-13ubuntu2_amd64.deb
sudo dpkg -i libmpfr4_3.1.4-1_amd64.deb
sudo dpkg -i libasan1_4.9.3-13ubuntu2_amd64.deb
sudo dpkg -i libgcc-4.9-dev_4.9.3-13ubuntu2_amd64.deb
sudo dpkg -i cpp-4.9_4.9.3-13ubuntu2_amd64.deb
sudo dpkg -i gcc-4.9_4.9.3-13ubuntu2_amd64.deb
sudo dpkg -i libstdc++-4.9-dev_4.9.3-13ubuntu2_amd64.deb
sudo dpkg -i g++-4.9_4.9.3-13ubuntu2_amd64.deb
以上是在 18.04 上测试的,并产生了一个功能性安装的 gcc-4.9.
The above was tested on 18.04 and produced a functional installed gcc-4.9.
这篇关于ubuntu17.04安装gcc-4.9失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!