更改编译工具链
This commit is contained in:
parent
09379a8cf3
commit
f0d64dcdc9
5 changed files with 18 additions and 16 deletions
|
@ -10,7 +10,7 @@
|
||||||
"stopAtEntry": true, // 设为true时程序将暂停在程序入口处,我一般设置为true
|
"stopAtEntry": true, // 设为true时程序将暂停在程序入口处,我一般设置为true
|
||||||
"cwd": "C:/Project/LLVM/bin",//自己的编译器路径,自行修改
|
"cwd": "C:/Project/LLVM/bin",//自己的编译器路径,自行修改
|
||||||
"environment": [],
|
"environment": [],
|
||||||
"externalConsole": true, // 调试时是否显示控制台窗口,一般设置为true显示控制台
|
"externalConsole": false, // 调试时是否显示控制台窗口,一般设置为true显示控制台
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
"miDebuggerPath": "C:\\Project\\LLVM\\bin\\gdb.exe",//自己的gdb路径,自行修改
|
"miDebuggerPath": "C:\\Project\\LLVM\\bin\\gdb.exe",//自己的gdb路径,自行修改
|
||||||
"setupCommands": [
|
"setupCommands": [
|
|
@ -5,10 +5,11 @@
|
||||||
|
|
||||||
"code-runner.runInTerminal": true, // 设置成false会在“输出”中输出,无法输入
|
"code-runner.runInTerminal": true, // 设置成false会在“输出”中输出,无法输入
|
||||||
"code-runner.executorMap": {
|
"code-runner.executorMap": {
|
||||||
|
|
||||||
// "c": "cd $dir && gcc *.c -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe",
|
// "c": "cd $dir && gcc *.c -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe",
|
||||||
// "cpp": "cd $dir && g++ *.cpp -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe"
|
// "cpp": "cd $dir && g++ *.cpp -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe"
|
||||||
"c": "cd $dir && gcc *.c -fexec-charset=gb2312 -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe",
|
"c": "cd $dir && gcc *.c -fexec-charset=gb2312 -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe",
|
||||||
"cpp": "cd $dir && g++ *.cpp -fexec-charset=gb2312 -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe"
|
"cpp": "cd $dir && g++ *.cpp -std=c++17 -fexec-charset=gb2312 -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe"
|
||||||
// "c": "cd $dir && clang $fileName -o $fileNameWithoutExt.exe -Wall -g -Og -static-libgcc -fcolor-diagnostics --target=x86_64-w64-mingw -std=c11 && $dir$fileNameWithoutExt",
|
// "c": "cd $dir && clang $fileName -o $fileNameWithoutExt.exe -Wall -g -Og -static-libgcc -fcolor-diagnostics --target=x86_64-w64-mingw -std=c11 && $dir$fileNameWithoutExt",
|
||||||
// "cpp": "cd $dir && clang++ *.cpp -o $fileNameWithoutExt.exe -Wall -g -Og -static-libgcc -fcolor-diagnostics --target=x86_64-w64-mingw-g++ -std=c++17 && $dir$fileNameWithoutExt"
|
// "cpp": "cd $dir && clang++ *.cpp -o $fileNameWithoutExt.exe -Wall -g -Og -static-libgcc -fcolor-diagnostics --target=x86_64-w64-mingw-g++ -std=c++17 && $dir$fileNameWithoutExt"
|
||||||
}, // 设置code runner的命令行
|
}, // 设置code runner的命令行
|
||||||
|
@ -18,19 +19,20 @@
|
||||||
|
|
||||||
"C_Cpp.clang_format_sortIncludes": true, // 格式化时调整include的顺序(按字母排序)
|
"C_Cpp.clang_format_sortIncludes": true, // 格式化时调整include的顺序(按字母排序)
|
||||||
"C_Cpp.intelliSenseEngine": "Default", // 可以为Default或Tag Parser,后者较老,功能较简单。具体差别参考cpptools扩展文档
|
"C_Cpp.intelliSenseEngine": "Default", // 可以为Default或Tag Parser,后者较老,功能较简单。具体差别参考cpptools扩展文档
|
||||||
// "C_Cpp.errorSquiggles": "Disabled", // 因为有clang的lint,所以关掉
|
"C_Cpp.errorSquiggles": "Disabled", // 因为有clang的lint,所以关掉
|
||||||
// "C_Cpp.autocomplete": "Disabled", // 因为有clang的补全,所以关掉
|
"C_Cpp.autocomplete": "Disabled", // 因为有clang的补全,所以关掉
|
||||||
|
|
||||||
// "clang.cflags": [ // 控制c语言静态检测的参数
|
"clang.cflags": [ // 控制c语言静态检测的参数
|
||||||
// "--target=x86_64-w64-mingw",
|
"--target=x86_64-w64-mingw",
|
||||||
// "-std=c11",
|
"-std=c11",
|
||||||
// "-Wall"
|
"-Wall"
|
||||||
// ],
|
],
|
||||||
// "clang.cxxflags": [ // 控制c++静态检测时的参数
|
"clang.cxxflags": [ // 控制c++静态检测时的参数
|
||||||
// "--target=x86_64-w64-mingw",
|
"--target=x86_64-w64-mingw",
|
||||||
// "-std=c++17",
|
"-std=c++17",
|
||||||
// "-Wall"
|
"-Wall"
|
||||||
// ],
|
],
|
||||||
// "clang.completion.enable": true,
|
"clang.completion.enable": true,
|
||||||
"C_Cpp.default.compilerPath": "C:/Program Files/LLVM/bin/gcc.exe" // 效果效果比cpptools要好
|
"C_Cpp.default.compilerPath": "C:/Program Files/LLVM/bin/gcc.exe",
|
||||||
|
// "C_Cpp.clang_format_fallbackStyle": "LLVM" // 效果效果比cpptools要好
|
||||||
}
|
}
|
Reference in a new issue