Eclipse可以安裝在各種操作系統。這裡是安裝到Ubuntu 10.10上。有兩種方法實現安裝,一是採用Ubuntu的軟體源;二是從官方下載後解壓。 1、 通過Ubuntu軟體源安裝 $ sudo apt-get install build-essential $ sudo apt-get ins ...
Eclipse可以安裝在各種操作系統。這裡是安裝到Ubuntu 10.10上。有兩種方法實現安裝,一是採用Ubuntu的軟體源;二是從官方下載後解壓。
1、 通過Ubuntu軟體源安裝
$ sudo apt-get install build-essential
$ sudo apt-get install eclipse
$ sudo apt-get install eclipse-pde
$ sudo apt-get install eclipse-jdt
再通過eclipse的安裝功能來安裝CDT插件。步驟如下(一定要按照這個順序):
·啟動eclipse
·選擇菜單helpàInsatll New Software
·在Work with的文本框中填入地址:
http://download.eclipse.org/releases/galileo
·選擇CollaborationàMylyn Bridge:C/C++ Development,安裝。
·重啟eclipse
·選擇Programming LanguagesàEclipse C/C++ Development,選擇你所想的。
2、 從官方下載包按照
Eclipse需要Java運行環境支持,因此,必須先安裝JRE;然後解壓eclipse包,直接運行程式即可
·Eclipse IDE for C/C++ Developers
下麵討論下eclipse的基本配置(根據網路整理)
1、C/C++環境配置:Window - Preferences - C/C++
·Appearance,選中Group method definitions in the Outline view
·Code Style,通過New來新建一個代碼風格,命名為yesaidu_cs,且初始化為BSD/Allmain,然後按習慣修改一些細節;建議是採用預設的。
·Editor - Content Assist - Auto-Activation - Delay(ms),原值為500,改為100,則智能提示速度會明顯加快。
·Indexer,清空Files to index up-front的內容,修改Cache limits的值,儘可能大,可以提高速度。
2、修改智能提示快捷鍵:
Window - Preferences - General - Keys,輸入Content,找到Content Assist,在Binding中修改,例如修改為Shift+Space。
3、其他設置
· Window - Preferences - General - Editors - Text Editors,選中Show line numbers,設置Print margin column為110
·Window - Preferences - General - Workspace,取消Build automatically,選中Save automatically before build
4、源代碼管理
Linux下開源代碼管理軟體現在大都改成git,這也是將來的趨勢。要在eclipse上使用git,需要一個插件egit;官方網址為http://www.eclipse.org/egit,它基於jgit開發。