參考:http://developer.51cto.com/art/200906/126363.htmhtml
http://www.cnblogs.com/feisky/archive/2010/03/21/1691170.htmlios
1 下載eclipsec++
eclipse:http://eclipse.org/downloads/packages/release/Galileo/SR2app
下載cdteclipse
Eclipse package: Eclipse C/C++ IDE Galileo SR2.ide
p2 software repository: http://download.eclipse.org/tools/cdt/releases/galileo測試
2ui
下載mingw-get-setup.exe而且安裝 參考 http://www.jb51.net/softjc/159871.html.net
1>配置環境變量(很重要):
步驟以下:打開:「個人電腦->屬性->高級->環境變量->系統變量」編輯以下系統變量:
變量名 變量值
PATH D:\MinGW\bin;
LIBRARY_PATH D:\MinGW\lib
C_INCLUDEDE_PATH D:\MinGW\include
CPLUS_INCLUDE_PATH D:\MinGW\include\c++\3.2.3;D:\MinGW\include\c++\3.2.3\mingw32;D:\MinGW\include\c++\3.2.3\backward;D:\MinGW\includedebug
注:我是將MinGW 安裝在d盤下,你能夠根據你本身的狀況來設定其路徑,如:MinGW的安裝路徑\bin;
2>更改
C:\MinGW \bin底下的"mingw32-make.exe"改名爲"make.exe",由於Eclipse使用時預設是用系統裏的"make"這個文件名,而 不是"mingw32-make"。固然若是你不想改MinGW中的,也能夠修改Eclipse中的設定。在"make targets view"中新增一個task時,"build command"取消"use default",使用"mingw32-make"。另外在"project properties->make project"中將"make"改成"mingw32-make"(後面eclipse IDE配置將詳細説明)。
3>測試
(1)安裝完成後「系統環境變量」的設定說明:
編 輯Path,在變量值的最前面添加「d:\MinGW\bin;」,這句必定要放在最前面,防止和VC/.NET之類的make命令衝突,而且把d: \MinGW\bin目錄下的mingw32-make.exe更名爲make.exe,而後在cmd中執行下make命令(如d:\MinGW \bin>make.exe),若是出現「***No targets specfied and no make file found stop」,設置成功。這樣也不影響Visual C++6.0的使用,要否則在Eclipse下用CDT編C/C++程序會編譯不了。
(2)確認MinGW安裝及環境變量設定是否生效。
在cmd中輸入「gcc -v」,若是屏幕出現「gcc不是內部命令或外部命令,也不是可運行的程序或批處理文件。」表示環境變量設定有問題。若是不是,表示設定成功。
c. 配置Eclipse IDE for MinGW
1>選擇Windows=>Preferences...菜單,在Preferences彈出窗口中選擇C/C++=>Make=& gt;New Make Project左側樹結點,在右側Make Builder頁籤設置Build command: mingw32-make。(若使用Managed Make C++ Project則Build command必須爲make.exe)
2> 若要在Windows環境下運行make target必須將Project=>Properties=>C++ Make Project中Binary Parser設定爲PE Windows Parser。
3> 配置調試環境:點選Run=>Debug...菜單,在彈出的Debug窗口中選擇相應的C/C++ Local Application,在右側選擇Debugger頁籤,設置Debugger:GDB Debugger和GDB debugger:gdb
至此,若是不出意外,eclipse已經能夠編寫/調試c++代碼.
d.hello word
1>打開c++編輯界面:在window->open perspective->other 選擇c/c++並肯定
2> 建立工程:file->new->project 選擇c/c++中的"managed make c++ project" 而後next,在project name填寫hello 而後 next,在c/c++ indexer 選項卡,若是你的機器足夠快,選擇full c/c++ indexer 不然就選擇fast indexer 再不行就選擇no indexer 而後finish
3>添加代碼:file->new->other 選擇c/c++中的source file,next,載source file 中填寫hello.cpp,(注意必定要寫.cpp不然程序沒法執行),而後finish。接着填寫代碼:
#include <iostream.h>
int main() //再次強調是int main(),而不是void
{
cout<<"Hello word!"<<endl;
return 0;
}
保存
3> 編譯工程:默認的project->build automatically已經被選中,這時在你每次保存後都會自動編譯並連接,若是project->build automatically被取消能夠project->build all 所有編譯,要從新編譯能夠在左側(通常是這樣)的c/c++ project窗口中選中工程,右擊,選擇rebuild project。
4>運行:run->run as->local c/c++ application。
OK