cmakeが失敗し、「CMakeエラー:CXXコンパイラ:” CMAKE_CXX_COMPILER-NOTFOUND”が見つかりませんでした。」


52
jonquil@jonquil-Satellite-L755D:~/Downloads/akonadi-googledata-1.2.0/build$ cmake ..
-- The C compiler identification is GNU
-- The CXX compiler identification is unknown
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name.
CMake Error at /usr/share/cmake-2.8/Modules/FindKDE4.cmake:98 (MESSAGE):
  ERROR: cmake/modules/FindKDE4Internal.cmake not found in
  /home/jonquil/.kde/share/apps;/usr/share/kubuntu-default-settings/kde4-profile/default/share/apps;/usr/share/kde4/apps
Call Stack (most recent call first):
  CMakeLists.txt:6 (find_package)


CMake Warning (dev) in CMakeLists.txt:
  No cmake_minimum_required command is present.  A line of code such as

    cmake_minimum_required(VERSION 2.8)

  should be added at the top of the file.  The version specified may be lower
  if you wish to support older CMake versions for this project.  For more
  information run "cmake --help-policy CMP0000".
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Configuring incomplete, errors occurred!

autotoolsでこれを取得します:

jonquil@jonquil-Satellite-L755D:~/Downloads/akonadi-googledata-1.2.0/build/build$ autoreconf -i -f
Can't exec "libtoolize": No such file or directory at /usr/bin/autoreconf line 196.
Use of uninitialized value in pattern match (m//) at /usr/bin/autoreconf line 196.
autoreconf: `configure.ac' or `configure.in' is required

何てwhich g++言うの?明らかに、システム上に動作するc ++コンパイラはありません。
トーマス

何も言いません。役立つ場合は、GCCをインストールしています。
xjonquilx

回答:


80

build-essentialをビルド必須のインストールまだインストールていない場合はインストールします。ソフトウェアセンターにインストールするか、次の方法でインストールできます。

sudo apt-get update && sudo apt-get install build-essential

4
私の問題を解決しました!
キムリフ

17

gccにはg ++は含まれていません。これらは異なるパッケージです。g ++g ++をインストールするをインストールします

apt-get install g++

今、私はこれを得ています:/usr/share/cmake-2.8/Modules/FindKDE4.cmake:98(MESSAGE):CMakeエラー:cmake / modules / FindKDE4Internal.cmake not / found / home / jonquil / .kde / share / apps; / usr / share / kubuntu-default-settings / kde4-profile / default / share / apps; / usr / share / kde4 / apps呼び出しスタック(最新の呼び出しが最初):CMakeLists.txt:6(find_package)
xjonquilx

ビルド環境が不足している、それは単なるコンパイラではなく、ライブラリなどが必要です。ここを見て、必要なものを見つけてください:help.ubuntu.com/community/CompilingEasyHowTo
トーマス

コンパイルに必要なすべてのパッケージを提供してくれるUbuntuにインストールできるパッケージがあることは知っていましたが、その名前を思い出せませんでした。ありがとう!
xjonquilx

それでも同じエラーが発生します。:(
xjonquilx

エラーメッセージのヒントはkdeにあります-kde開発はbuild-essentialには含まれていません。このためのメタパッケージがあるかどうかわからない。
トーマス

4

これは「Ubuntuに質問」であることは承知していますが、Fedoraを使用している人がこの問題に出会うとしたら、以下が助けになりました。

sudo dnf install gcc-c++

あなたはこの特定のフォーラムの目的に関して正しいです。Ubuntu Linux以外のディストリビューションに関する質問と回答は、unix.stackexchange.com
CentaurusA
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.