VSCode配置C 環境

2021-08-29 01:10:48 字數 1361 閱讀 9380

ide用慣了,換編輯器寫被坑傻了。

vscode環境的配置都由.json資料構成,全部放在workingfolder的.vscode資料夾內,預設是隱藏的,因為這是配置檔案啊。

1.配置settings

如果想改字型大小什麼的,直接搜尋命令open settings,在user.setting裡改。

2.生成c_cpp_properties.json

command shift p + edit configuration

/**",

"c:\\program files (x86)\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\lib\\gcc\\i686-w64-mingw32\\8.1.0\\include\\c++"

],"defines": ,

"windowssdkversion": "10.0.16299.0",

"compilerpath": "c:\\program files (x86)\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin\\g++.exe",

"cstandard": "c11",

"cppstandard": "c++17",

"intellisensemode": "gcc-x64"}],

"version": 4

}

3. 生成tasks.json

這個檔案很重要,在這檔案裡要說明你想執行的任務。

"tasks": [

,]

4.生成launch.json

configure task runner,

debug->open configuration,生成launch.json

/debug.exe",

"args": ,

"stopatentry": false,

"cwd": "$",

"environment": ,

"externalconsole": true,

"mimode": "gdb",

# gdb.exe路徑

"midebuggerpath": "c:\\program files (x86)\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin\\gdb.exe",

"setupcommands": [

],# 可以省去debug的第一步

"prelaunchtask": "build-debug"}]

}

VScode 配置C 環境

為了成功完成教程,你只需要以下幾步 posix 啟用c 11 c11多執行緒功能。使libgcc依賴於libwinpthreads,所以即使不直接呼叫pthreads api,也會分發winpthreads dll。分配乙個更多的dll與您的應用程式沒有任何問題。win32 沒有c 11多執行緒功能...

vscode配置c 環境

建立乙個projects作為工作空間,在projects檔案中建立乙個project資料夾作為專案位址。用vscode開啟project資料夾,並在這個資料夾中建立.vscode資料夾,在.vscode資料夾中寫上這三個配置檔案 c cpp properties.json includepath表示...

VScode配置C 環境

參考及引用 2.安裝並開啟vscode,安裝以下外掛程式 然後按照以下步 將mingw的路徑新增到下面 5.配置json檔案 在.vscode資料夾中,新建兩個 只需兩個 配置檔案,即launch.json tasks.json。將下列內容複製進去即可.建立檔案方法 直接輸入檔名即可。注意 ideb...