Como instalar o gcc-4.5-arm-linux-gnueabi no Ubuntu 13.04?

0

Eu tentei sudo apt-get install gcc-4.5-arm-linux-gnueabi

Eu recebi este erro:

E: Package 'gcc-4.5-arm-linux-gnueabi' has no installation candidate

Como posso fazer o download?

    
por Mohan 01.08.2013 / 16:09

1 resposta

0

No Ubuntu 13.04, a versão é 4.7. Existe uma razão particular pela qual você precisa de 4.5 e não pode usar o último 4.7?

É possível procurar por pacotes nos repositórios do APT e, para obter melhores resultados, você pode usar expressões regulares:

$ sudo apt-cache search gcc-4.*-arm-linux-gnueabi$
gcc-4.7-arm-linux-gnueabi - GNU C compiler
gcc-4.7-multilib-arm-linux-gnueabi - GNU C compiler (multilib files)

Resumindo:

$ - marks that the string matching should end there
* - matches any character

Referências:

link

link

    
por mgor 01.08.2013 / 19:43