1.安裝eclipse:
第一種是經過Ubuntu自帶的程序安裝功能安裝Eclipse,應用程序 ->Ubtuntu軟件中心,搜Eclipse安裝便可。
第二種方法是用命令:應用程序->附件->終端 而後輸入(中間可能須要你輸入密碼):
sudo apt-get install eclipse
sudo apt-get install eclipse-pde
sudo apt-get install eclipse-jdt
2.安裝CDT(c/c++插件)
(1)同 2 中 在Work with的框框下輸入 http://download.eclipse.org/releases/indigo(注意若是你的eclipse版本是galileo,則輸入
http://download.eclipse.org/releases/galileo
)
選擇Collaboration->Mylyn Bridge: C/C++ Development,安裝,重啓eclipse
(2)同上輸入網址後選擇 Programming Languages->Eclipse C/C++ Development
切記:(1)(2)順序有依賴關係,安裝順序不能顛倒。
在安裝cdt的時候,會報這個錯誤:
An error occurred while installing the items
session context was:(profile=PlatformProfile, phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Install, operand=null --> [R]org.eclipse.cvs 1.0.400.v201002111343, action=org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.InstallBundleAction).
The artifact file for osgi.bundle,org.eclipse.cvs,1.0.400.v201002111343 was not found.
後來google了一下,發現解決辦法。
sudo apt-get install eclipse-pde
在裝cdt插件,完成~
用Eclipse+CDT開發c/c++項目的時候,怎麼能讓Eclipse發揮代碼自動提示的功能呢?其實也很簡單:
打開終端:輸入:$ gcc -version
獲得相似的:gcc 版本 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
很容易就看到你當前使用的版本了。
啓動Eclipse.進入:Windows-->Preferences-->C/C++找到Environment。增長兩個變量:
CPLUS_INCLUDE_PATH: /usr/include/c++/4.6.1(個人gcc版本)
C_INCLUDE_PATH: /usr/includec++
3.特別注意:c/C++程序運行時,先創建build project,而後才運行,若是你直接運行的話會出現:launched failed,Binary not found.ubuntu