Ubuntu 64 ビット バージョンを実行しており、最新の 64 ビット Eclipse をダウンロードしました。とともにg ++をインストールしましbuild-essential
た。g++ をテストして、端末から動作することを確認しました。正常に動作します。
alex@ubuntu:~/Desktop$ g++ test.cpp -o test
alex@ubuntu:~/Desktop$ ./test
Hello World!alex@ubuntu:~/Desktop$
ただし、単純な C++ Hello Word プロジェクト (Eclipse に付属するデフォルト プロジェクトの 1 つ) をビルドしようとすると、エラーが発生します。
Description Resource Path Location Type
Program "g++" not found in PATH Preferences, C++/Build/Settings/Discovery, [CDT GCC Builtin Compiler Settings] options C/C++ Scanner Discovery Problem
g++
値で名前が付けられた環境変数を追加/usr/bin/g++
したところ、上記のエラーはなくなりましたが、プロジェクトがコンパイルされてコンソールに表示されても、未解決のエラーが発生しています!!!Hello World!!!
Description Resource Path Location Type
Symbol 'endl' could not be resolved test_hello.cpp /test_hello/src line 13 Semantic Error
Symbol 'cout' could not be resolved test_hello.cpp /test_hello/src line 13 Semantic Error
Symbol 'std' could not be resolved test_hello.cpp /test_hello/src line 10 Semantic Error
環境変数を正しく入力しましたか?? 「未解決」エラーを修正するにはどうすればよいですか?? ありがとう !