這篇文章主要介紹“ubuntu下如何安裝并配置vs code編譯c++”,在日常操作中,相信很多人在ubuntu下如何安裝并配置vs code編譯c++問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ubuntu下如何安裝并配置vs code編譯c++”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:國際域名空間、虛擬主機、營銷軟件、網(wǎng)站建設(shè)、新干網(wǎng)站維護、網(wǎng)站推廣。
安裝vs code
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make sudo apt-get update sudo apt-get install ubuntu-make sudo umake web visual-studio-code
然后按a直接默認(rèn)同意就可以。
安裝插件
打開vs code后,按crtl + shift + p調(diào)出命令行,然后搜索c++,安裝微軟自己開發(fā)的那個。
同樣可以安裝c++ intellisense插件,用于自動補全代碼。
配置launch.json和tasks.json
注意vs code只能打開源碼所在的文件夾,而不是直接打開源碼文件,否則下面將無法進(jìn)行!
打開源碼所在文件夾后,在該文件夾中打開源碼。按f5鍵,選擇c++,
然后會自動生成launch.json文件,下面只需要修改兩個地方
將
"program": "enter program name, for example \${workspaceroot}/a.out",
改為
"program": "${workspaceroot}/a.out",
將
"cwd": "\${workspaceroot}",
改為
"cwd": "${workspaceroot}",
完整的launch.json
{ "version": "0.2.0", "configurations": [ { "name": "(gdb) launch", "type": "cppdbg", "request": "launch", "program": "${workspaceroot}/a.out", "args": [], "stopatentry": false, "cwd": "${workspaceroot}", "environment": [], "externalconsole": true, "mimode": "gdb", "setupcommands": [ { "description": "enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignorefailures": true } ] } ] }
然后,調(diào)出命令行,輸入task runner,選擇others
此時將自動生成tasks.json
將其中的
"command": "echo",
改為
"command": "g++",
將
"args": ["hello world"],
改為
"args": ["-g","${workspaceroot}/main.cpp"],
注意這里的main.cpp要和你當(dāng)前路徑的源碼名稱一致。
完整的tasks.json
{ // see https://go.microsoft.com/fwlink/?linkid=733558 // for the documentation about the tasks.json format "version": "0.1.0", "command": "g++", "isshellcommand": true, "args": ["-g","${workspaceroot}/main.cpp"], "showoutput": "always" }
運行測試
隨便編寫個代碼
#includeusing namespace std; int main() { cout<<"hello vs code"< 按crtl + shift + b構(gòu)建,按f5運行,發(fā)現(xiàn)終端一閃而過,什么都沒有輸出。于是考慮windows下的辦法。
#include#include using namespace std; int main() { cout<<"hello vs code"< 同樣并沒有卵用。那就換一種方式。
#include#include using namespace std; int main() { cout<<"hello vs code"< 按crtl + shift + b構(gòu)建,按f5運行,程序完美輸出。有圖為證,哈哈
后記:
期間在終端里執(zhí)行了以下操作
sudo apt-get install clang如果提示clang有錯可以運行該命令,安裝clang。
到此,關(guān)于“ubuntu下如何安裝并配置vs code編譯c++”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
文章名稱:ubuntu下如何安裝并配置vscode編譯c++
文章鏈接:http://weahome.cn/article/jsddse.html