溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Eclipse下C/C++環(huán)境如何搭建

發(fā)布時(shí)間:2021-11-17 15:08:26 來(lái)源:億速云 閱讀:184 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹Eclipse下C/C++環(huán)境如何搭建,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

  1. 我們需要一個(gè)cdt,這個(gè)可以在Eclipse官網(wǎng)下載。

  2. 我們需要MinGW——C/C++編譯平臺(tái),下載后需要安裝,同時(shí)選中g(shù)++、MinGW Make,同時(shí)設(shè)置環(huán)境變量,將%MinGW_HOME%\bin設(shè)置到PATH中,然后我們可以通過(guò)命令行敲擊gcc,看是否有效果。

  3. 我們需要gdb——C/C++調(diào)試平臺(tái),下載后安裝,默認(rèn)到MinGW_HOME就行。

  4. 我們開(kāi)啟eclipse編譯一個(gè)C/C++工程,右鍵可以運(yùn)行,調(diào)試。

安裝

Eclipse下C/C++環(huán)境如何搭建

設(shè)置環(huán)境變量

Eclipse下C/C++環(huán)境如何搭建

Eclipse下C/C++環(huán)境如何搭建


新建C項(xiàng)目

Eclipse下C/C++環(huán)境如何搭建

新建C++項(xiàng)目

Eclipse下C/C++環(huán)境如何搭建

來(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è)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI