microsoft 出品的 cl編譯器執行/除錯c配置,cl.exe 通過visual studio c ++ build tools 安裝:
launch.json:
2021-08-22:新版本vscode 已經將 externalconsole 配置項標記為廢棄,更換為使用使用:"console": "integratedterminal",
1\\out\\$.exe",
9 "args": ,
10 "stopatentry": false
,11 "cwd": "$",
12 "environment": ,
13"externalconsole": true
,14"console": "integratedterminal",
"prelaunchtask": "cl.exe build active file",
15 "logging": ,
18 "presentation": 21}
22]23 }
tasks.json: 需要在專案根目錄建 out 資料夾
1\\out\\$.exe",
14"/fo:",
15"$\\out\\$.obj",
16"$"
17],18"
group
": ,22"
presentation
": ,25"
problemmatcher
": "
$mscompile"26
}27]28 }
windows 環境變數 - >系統變數新建:
include
值(按實際情況設定填值,這裡是筆者安裝visual studio 2019後的值):
c:\program files (x86)\windows kits\10\include\10.0.18362.0\ucrt;c:\program files (x86)\windows kits\10\include\10.0.18362.0\um;c:\program files (x86)\windows kits\10\include\10.0.18362.0\winrt;c:\program files (x86)\microsoft visual studio\2019\buildtools\vc\tools\msvc\14.27.29110\include;c:\program files (x86)\windows kits\10\lib\10.0.18362.0\ucrt\x64;
lib
值(按實際情況設定填值,這裡是筆者安裝visual studio 2019後的值):
c:\program files (x86)\windows kits\10\lib\10.0.18362.0\ucrt\x64;c:\program files (x86)\windows kits\10\lib\10.0.18362.0\um\x64;c:\program files (x86)\microsoft visual studio\2019\buildtools\vc\tools\msvc\14.27.29110\lib\x64;
cl 編譯器環境配置問題
cl 編譯器是microsoft 推出的應用於wins 平台上的c c 編譯器 類似於linux系統上的gcc,g 等。實時上vs2015整合開發環境就是呼叫cl.exe來進行原始碼編譯的,所以可以直接在shell中執行 cl option.filename.link linkoption.編譯 我...
微軟cl編譯器的簡單使用
cl的位置 開始 所有程式 microsoft visual studio visual studio tools developer command prompt 編譯器產生通用物件檔案格式 coff 物件 obj 檔案。鏈結器產生可執行檔案 exe 或動態鏈結庫檔案 dll 注意,所有編譯器選項...
VC的編譯器cl用法初步
寫乙個簡單的cpp程式,比如hello.cpp,現要求使用cl編譯器來生成可執行的程式。cl是compiler的簡稱。最簡單的用法為 cl hello.cpp 然後會在當前目錄下生成檔案hello.obj hello.exe,其中編譯器生成的是 common object file format c...