Exemplo de escopo de erro do Ubuntu SDK em execução

1

Estou aprendendo a criar um escopo para o Ubuntu Touch com o Ubuntu SDK (instalado pelo PPA) no Ubuntu 16.04.

Eu criei um escopo C ++ do template. Quando estou tentando executar, estou recebendo este erro:

CMAKE_CXX_COMPILER: /usr/bin/arm-linux-gnueabihf-g++ is not a full path to an existing compiler tool. Tell CMake where to find the compiler by setting either the environment variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path to the compiler, or to the compiler name if it is in the PATH.

Por favor, como eu poderia consertar isso? Eu instalei o build-essential & amp; pacotes g ++.

    
por costales 15.01.2016 / 20:02

1 resposta

3

O arquivo /usr/bin/arm-linux-gnueabihf-g++ é fornecido pelo pacote g++-arm-linux-gnueabihf , o compilador GNU C ++ para a arquitetura armhf. Então, basta instalá-lo:

sudo apt-get install g++-arm-linux-gnueabihf
    
por Eric Carvalho 21.02.2016 / 13:41