Created
November 15, 2021 07:44
-
-
Save ensup/4c3e51858c85123eb54bc6443b020317 to your computer and use it in GitHub Desktop.
clang + w64 mingw in vscode(windows)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "cppbuild", | |
"label": "C/C++: clang.exe 활성 파일 빌드", | |
"command": "C:\\Program Files\\LLVM\\bin\\clang.exe", | |
"args": [ | |
"--target=x86_64-w64-windows-gnu", | |
"-fdiagnostics-color=always", | |
"-g", | |
"${file}", | |
"-o", | |
"${fileDirname}\\${fileBasenameNoExtension}.exe" | |
], | |
"options": { | |
"cwd": "${fileDirname}" | |
}, | |
"problemMatcher": [ | |
"$gcc" | |
], | |
"group": "build", | |
"detail": "컴파일러: \"C:\\Program Files\\LLVM\\bin\\clang.exe\"" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment