web-dev-qa-db-ja.com

ubuntu 18.04でgcc 4.9をインストールします

Ubuntu 18.04でgcc 4.9をインストールする方法はありますか?私は試した

Sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
Sudo apt-get update
Sudo apt-get install gcc-4.9 g++-4.9

しかし、私は得る:

Package g++-4.9 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

スナイパーでいくつかのシミュレーションを実行するには、このバージョンが必要です。とにかくそれを行うか、ubuntu 16.04でVMを作成する必要がありますか?

6

使用可能:Sudo apt install g++-4.8

そして、no PIEgcc54-c++_5.4.0-ubuntu16_AMD64.debhttps://drive.google.com/file/d/1ptHLaZXImpeMzq4xuuGGn5VjrvxNSop3/view?usp = sharingRef。https://stackoverflow.com/questions/50213089/linking-error-with-gcc- g-7-3-0-on-ubuntu-18-04/50232797#50232797 →私の答え。

または、xenial/etc/apt/sources.listに一時的に追加します:Sudo gedit /etc/apt/sources.list

deb http://dk.archive.ubuntu.com/ubuntu/ xenial main
deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe

... Sudo apt update && Sudo apt install g++-4.9を実行します

11
Knud Larsen