Como instalar uma versão específica do g ++?

3

No meu Ubuntu há g++ --version -

g++ (Ubuntu 4.4.3-4ubuntu5.1) 4.4.3
Copyright (C) 2009 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Eu quero ter o mesmo g++ --version em outra máquina Linux que tenha -

g++ (GCC) 4.1.2 20070626 (Red Hat 4.1.2-14)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Como posso alterar minha versão do g ++ para que seja igual ao anterior?

    
por URL87 02.11.2012 / 09:40

1 resposta

2

Faça o download da versão g ++ - 4.1 do aqui . g ++ - 4.1 não está disponível nos repositórios recentes do Ubuntu. Então você precisa baixar o pacote a partir do link fornecido.

Instale / compile o pacote de download juntamente com a versão atual do g ++.

Em seguida, use update-alternatives para alternar a versão

sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.3 10

Altere a versão padrão escolhendo a versão apropriada:

sudo update-alternatives --config g++
    
por devav2 02.11.2012 / 10:04