我運行的是Ubuntu 64位版本,並下載了最新的64位Eclipse。 安裝了g ++以及build-essential
。測試g ++以確保它可以在終端上運行,並且工作正常。Linux上的g ++和Eclipse問題 - 未解決的符號
[email protected]:~/Desktop$ g++ test.cpp -o test
[email protected]:~/Desktop$ ./test
Hello [email protected]:~/Desktop$
但是,試圖構建簡單的C++ Hello Word項目(Eclipse附帶的默認項目之一)時,出現錯誤。命名爲g++
與價值/usr/bin/g++
和上述錯誤
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
我已經加入環境變量走了,但是,現在我越來越沒有解決錯誤,雖然項目編譯並在控制檯顯示!!!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
有我正確輸入了環境變量?我怎樣才能解決「未解決」的錯誤?謝謝 !