vscode用MinGW和Clang配置C++环境

 

 vscode是个不错的编辑器,简洁轻量,就是一开始的时候须要对环境进行配置,开个贴记录一下怎么用MingGW64+clang来配置。html

下载地址ios

 

安装MinGW与Clangc++

Clang 下载完安装,选择Add LLVM to the system PATH for all users(通常重启电脑,这一步才生效)。git

MinGW安装的时候Architecture选x86_64,装好之后,复制到Clang的文件夹里,同时本身将MinGW的bin文件夹加到环境变量path中。github

 

win+r,输入cmd,打开输入clang -v, 若是显示版本号就安装完成了。shell

 

 

下面是比较关键的四组代码json

 

 

记得把路径根据本身的具体状况修改windows

launch.josn代码:编辑器

// https://github.com/Microsoft/vscode-cpptools/blob/master/launch.md
{ "version": "0.2.0", "configurations": [ { "name": "(gdb) Launch", // 配置名称,将会在启动配置的下拉菜单中显示
            "type": "cppdbg", // 配置类型,这里只能为cppdbg
            "request": "launch", // 请求配置类型,能够为launch(启动)或attach(附加)
            "program": "${fileDirname}/${fileBasenameNoExtension}.exe", // 将要进行调试的程序的路径
            "args": [], // 程序调试时传递给程序的命令行参数,通常设为空便可
            "stopAtEntry": true, // 设为true时程序将暂停在程序入口处,我通常设置为true
            "cwd": "${workspaceFolder}", // 调试程序时的工做目录
            "environment": [], // (环境变量?)
            "externalConsole": true, // 调试时是否显示控制台窗口,通常设置为true显示控制台
            "internalConsoleOptions": "neverOpen", // 若是不设为neverOpen,调试时会跳到“调试控制台”选项卡,你应该不须要对gdb手动输命令吧?
            "MIMode": "gdb", // 指定链接的调试器,能够为gdb或lldb。但目前lldb在windows下没有预编译好的版本。
            "miDebuggerPath": "gdb.exe", // 调试器路径。
            "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": false } ], "preLaunchTask": "Compile" // 调试会话开始前执行的任务,通常为编译程序。与tasks.json的label相对应
 } ] }

tasks.josn代码:ui

// https://code.visualstudio.com/docs/editor/tasks
{ "version": "2.0.0", "tasks": [ { "label": "Compile", // 任务名称,与launch.json的preLaunchTask相对应
            "command": "clang++", // 要使用的编译器
            "args": [ "${file}", "-o", // 指定输出文件名,不加该参数则默认输出a.exe
                "${fileDirname}/${fileBasenameNoExtension}.exe", "-g", // 生成和调试有关的信息
                "-Wall", // 开启额外警告
                "-static-libgcc", // 静态连接
                "-fcolor-diagnostics", "--target=x86_64-w64-mingw", // 默认target为msvc,不加这一条就会找不到头文件
                "-std=c++17" // C语言最新标准为c11,或根据本身的须要进行修改
            ], // 编译命令参数
            "type": "shell", "group": { "kind": "build", "isDefault": true // 设为false可作到一个tasks.json配置多个编译指令,须要本身修改本文件,我这里很少提
 }, "presentation": { "echo": true, "reveal": "always", // 在“终端”中显示编译信息的策略,能够为always,silent,never。具体参见VSC的文档
                "focus": false, // 设为true后可使执行task时焦点汇集在终端,但对编译c和c++来讲,设为true没有意义
                "panel": "shared" // 不一样的文件的编译信息共享一个终端面板
 } // "problemMatcher":"$gcc" // 若是你不使用clang,去掉前面的注释符,并在上一条以后加个逗号。照着个人教程作的不须要改(也能够把这行删去)
 } ] }

settings.json代码:

{ "files.defaultLanguage": "cpp", // ctrl+N新建文件后默认的语言
    "editor.formatOnType": true, // 输入时就进行格式化,默认触发字符较少,分号能够触发
    "editor.snippetSuggestions": "top", // snippets代码优先显示补全

    "code-runner.runInTerminal": true, // 设置成false会在“输出”中输出,没法输入
    "code-runner.executorMap": { "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++ $fileName -o $fileNameWithoutExt.exe -Wall -g -Og -static-libgcc -fcolor-diagnostics --target=x86_64-w64-mingw -std=c++17 && $dir$fileNameWithoutExt" }, // 设置code runner的命令行
    "code-runner.saveFileBeforeRun": true, // run code前保存
    "code-runner.preserveFocus": true, // 若为false,run code后光标会聚焦到终端上。若是须要频繁输入数据可设为false
    "code-runner.clearPreviousOutput": false, // 每次run code前清空属于code runner的终端消息

    "C_Cpp.clang_format_sortIncludes": true, // 格式化时调整include的顺序(按字母排序)
    "C_Cpp.intelliSenseEngine": "Default", // 能够为Default或Tag Parser,后者较老,功能较简单。具体差异参考cpptools扩展文档
    "C_Cpp.errorSquiggles": "Disabled", // 由于有clang的lint,因此关掉
    "C_Cpp.autocomplete": "Disabled", // 由于有clang的补全,因此关掉

    "clang.cflags": [ // 控制c语言静态检测的参数
        "--target=x86_64-w64-mingw", "-std=c11", "-Wall" ], "clang.cxxflags": [ // 控制c++静态检测时的参数
        "--target=x86_64-w64-mingw", "-std=c++17", "-Wall" ], "clang.completion.enable": true, "files.associations": { "iostream": "cpp", "ostream": "cpp", "string_view": "cpp", "*.tcc": "cpp", "string": "cpp", "cmath": "cpp" } // 效果效果比cpptools要好
}

c_cpp_properties.json代码:

{ "configurations": [ { "name": "MinGW", "intelliSenseMode": "clang-x64", "compilerPath": "C:/Program Files/LLVM/bin/gcc.exe", "includePath": [ "${workspaceFolder}" ], "defines": [], "browse": { "path": [ "${workspaceFolder}" ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" }, "cStandard": "c11", "cppStandard": "c++17" } ], "version": 4 }
相关文章
相关标签/搜索