您好,登錄后才能下訂單哦!
這篇文章主要介紹Eclipse下C/C++環(huán)境如何搭建,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
我們需要一個(gè)cdt,這個(gè)可以在Eclipse官網(wǎng)下載。
我們需要MinGW——C/C++編譯平臺(tái),下載后需要安裝,同時(shí)選中g(shù)++、MinGW Make,同時(shí)設(shè)置環(huán)境變量,將%MinGW_HOME%\bin設(shè)置到PATH中,然后我們可以通過(guò)命令行敲擊gcc,看是否有效果。
我們需要gdb——C/C++調(diào)試平臺(tái),下載后安裝,默認(rèn)到MinGW_HOME就行。
我們開(kāi)啟eclipse編譯一個(gè)C/C++工程,右鍵可以運(yùn)行,調(diào)試。
安裝
設(shè)置環(huán)境變量
新建C項(xiàng)目
新建C++項(xiàng)目
來(lái)段HelloWorld
C的
C代碼
#include ﹤stdio.h> #include ﹤stdlib.h> int main(void) { puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */ return EXIT_SUCCESS; }
控制臺(tái)編譯輸出
Console代碼
**** Build of configuration Debug for project c **** **** Internal Builder is used for build **** gcc -O0 -g3 -Wall -c -fmessage-length=0 -osrc\c.o ..\src\c.c gcc -oc.exe src\c.o Build complete for project c Time consumed: 14011 ms.
控制臺(tái)結(jié)果輸出
Console代碼
!!!Hello World!!!
C++的
C++代碼
#include ﹤iostream> using namespace std; int main() { cout ﹤﹤ "!!!Hello World!!!" ﹤﹤ endl; // prints !!!Hello World!!! return 0; }
控制臺(tái)編譯輸出
Console代碼
**** Build of configuration Debug for project cpp **** **** Internal Builder is used for build **** g++ -O0 -g3 -Wall -c -fmessage-length=0 -osrc\cpp.o ..\src\cpp.cpp g++ -ocpp.exe src\cpp.o Build complete for project cpp Time consumed: 25452 ms.
控制臺(tái)結(jié)果輸出
Console代碼
!!!Hello World!!!
以上是“Eclipse下C/C++環(huán)境如何搭建”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。