Instale o gcc 4.9 no ubuntu 18.04

4

Existe alguma maneira de instalar o gcc 4.9 no ubuntu 18.04? Eu tentei

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

mas recebo 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 Eu preciso desta versão para executar algumas simulações com sniper. Existe alguma maneira de fazê-lo ou eu tenho que fazer uma VM com o Ubuntu 16.04?

    
por Nikos Tzagarakis 14.05.2018 / 14:58

1 resposta

7

Disponível: sudo apt install g++-4.8

E o sem PIE gcc54-c++_5.4.0-ubuntu16_amd64.deb link , Ref. link → Minha resposta.

Ou adicione xenial a /etc/apt/sources.list temporariamente: sudo gedit /etc/apt/sources.list

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

... e sudo apt update && sudo apt install g++-4.9

    
por Knud Larsen 14.05.2018 / 16:42