2021-05-12 14:32:11
Ubuntu下安裝並設定VS Code編譯C++
Ubuntu下安裝並設定VS Code編譯C++
網上看了很多教學,寫的都不細緻,或者我理解不夠透徹,一步一步操作下來,總是錯誤百出。好不容易成功一次,現將完整過程記錄如下
安裝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直接預設同意就可以。
安裝外掛
開啟VS Code後,按crtl + shift + P調出命令列,然後搜尋C++,安裝微軟自己開發的那個。
同樣可以安裝C++ Intellisense外掛,用於自動補全程式碼。
設定launch.json和tasks.json
注意VS Code只能開啟原始碼所在的資料夾,而不是直接開啟原始碼檔案,否則下面將無法進行!
開啟原始碼所在資料夾後,在該資料夾中開啟原始碼。按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
}
]
}
]
}
然後,調出命令列,輸入Task Runner,選擇others
此時將自動生成tasks.json
將其中的
"command": "echo",
改為
"command": "g++",
將
"args": ["Hello World"],
改為
"args": ["-g","${workspaceRoot}/main.cpp"],
注意這裡的main.cpp要和你當前路徑的原始碼名稱一致。
完整的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"
}
執行測試
隨便編寫個程式碼
#include<iostream>
using namespace std;
int main()
{
cout<<"hello VS Code"<<endl;
return 0;
}
按crtl + shift + B構建,按F5執行,發現終端一閃而過,什麼都沒有輸出。於是考慮Windows下的辦法。
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
cout<<"hello VS Code"<<endl;
system("pause");
return 0;
}
同樣並沒有卵用。那就換一種方式。
#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
cout<<"hello VS Code"<<endl;
getchar();
return 0;
}
按crtl + shift + B構建,按F5執行,程式完美輸出。有圖為證,哈哈
後記:
期間在終端裡執行了以下操作
sudo apt-get install clang
如果提示Clang有錯可以執行該命令,安裝clang。
那麼問題來了,是不是換個資料夾每次寫個程式碼都得設定lauch.json和task.json檔案呢?或者將.vscode資料夾複製到當前資料夾下?這樣豈不是很麻煩,細思極恐。
Ubuntu 14.04 安裝Visual Studio Code http://www.linuxidc.com/Linux/2016-03/129052.htm
使用Visual Studio Code開發TypeScript http://www.linuxidc.com/Linux/2015-07/119456.htm
Visual Studio Code 簡單試用體驗 http://www.linuxidc.com/Linux/2015-05/116887.htm
Visual Studio Code試用體驗 http://www.linuxidc.com/Linux/2015-07/120378.htm
Visual Studio 2010 & Help Library Manager 安裝說明 http://www.linuxidc.com/Linux/2012-11/74814.htm
OpenCV 2.3.x/2.4.x在Visual Studio 2005/2008和Visual Studio 2010設定方法詳解 http://www.linuxidc.com/Linux/2012-08/68302.htm
使用OpenCV-2.4.0.exe檔案編譯x86或x64平台Visual Studio 2005/2008/2010目標檔案 http://www.linuxidc.com/Linux/2012-08/68305.htm
Visual Studio LightSwitch增加對HTML5和JavaScript的支援 http://www.linuxidc.com/Linux/2012-06/63397.htm
Visual Studio 11:使用 C++ 開發一個最簡單的 Metro 應用 http://www.linuxidc.com/Linux/2012-06/62657.htm
Ubuntu 14.04如何安裝Visual studio Code http://www.linuxidc.com/Linux/2016-07/132886.htm
相關文章