web-dev-qa-db-ja.com

スコープの例を実行しているUbuntuSDKエラー

Ubuntu16.04でUbuntuSDK(PPAからインストール)を使用してUbuntuTouchのスコープを作成する方法を学んでいます。

テンプレートからC++スコープを作成しました。実行しようとすると、次のエラーが発生します。

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.

どうすればこれを修正できますか? build-essential&g ++パッケージをインストールしました。

1
Costales

ファイル /usr/bin/arm-linux-gnueabihf-g++はパッケージによって提供されますg++-arm-linux-gnueabihf、GNU armhfアーキテクチャ用のC++コンパイラ。インストールするだけです。

Sudo apt-get install g++-arm-linux-gnueabihf
2
Eric Carvalho