vscode配置C_CPP调试

参考:http://blog.csdn.net/c_duoduo/article/details/51615381

https://cfhm.github.io/2017/09/16/vscode-2/

https://www.zhihu.com/question/30315894

日期:2018-03-16,vscode版本:1.21.1,mingw-w64版本7.2.0

1.安装拓展:C/C++(微软官方)、Code Runner

2.安装软件:mingw-w64(安装时把“架构”设置为x86_x64,然后设置一下路径,其他保持默认)

3.创建文件夹,在文件夹下编程

1)修改launch.json为://这个只用c试验了一下调试,没有用cpp试验

{

    "version": "0.2.0",

    "configurations": [

        {

            "name": "C Launch (GDB)",                // 配置名称,将会在启动配置的下拉菜单中显示

            "type": "cppdbg",                          // 配置类型,这里只能为cppdbg

            "request": "launch",                        // 请求配置类型,可以为launch(启动)或attach(附加)

            "targetArchitecture": "x86",                // 生成目标架构,一般为x86或x64,可以为x86, arm, arm64, mips, x64, amd64, x86_64

            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe", // 将要进行调试的程序的路径

            "miDebuggerPath":"D:\\mingw-w64\\x86_64-7.2.0-posix-seh-rt_v5-rev1\\mingw64\\bin\\gdb.exe", // miDebugger的路径,注意这里要与MinGw的路径对应

            "args": [],                                // 程序调试时传递给程序的命令行参数,一般设为空即可

            "stopAtEntry": true,                      // 设为true时程序将暂停在程序入口处,一般设置为false

            "cwd": "${workspaceRoot}",                  // 调试程序时的工作目录,一般为${workspaceRoot}即代码所在目录

            "externalConsole": true,                    // 调试时是否显示控制台窗口,一般设置为true显示控制台

            "preLaunchTask": "Compile"                    // 调试会话开始前执行的任务,一般为编译程序。与tasks.json的label相对应

        }

    ]

}

2)修改tasks.json为://这个只用c试验了一下调试,没有用cpp试验

{

    // See https://go.microsoft.com/fwlink/?LinkId=733558

    // for the documentation about the tasks.json format

    "version": "2.0.0",

    "tasks": [

        {

            "label": "Compile",

            "type": "shell",

            "command": "gcc",

            "args": [

                "${file}",

                "-o", // 指定输出文件名,不加该参数则默认输出a.exe

                "${fileDirname}\\${fileBasenameNoExtension}.exe",//这里如果写的是${file}.exe则test.c会生成test.c.exe

                "-g", // 生成和调试有关的信息

                "-Wall", // 开启额外警告

                "-static-libgcc", // 静态链接

                // "-fcolor-diagnostics",

                // "--target=x86_64-w64-mingw", // 默认target为msvc,不加这一条就会找不到头文件

                // "-std=c11" // C语言最新标准为c11,或根据自己的需要进行修改

            ], // 编译命令参数

            "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,去掉前面的注释符,并在上一条之后加个逗号。照着我的教程做的不需要改(也可以把这行删去)

        }

    ]

}

3)修改c_cpp_properties.json为://includePath是解决找不到.h文件的问题,把自己的.h文件的路径加进去,这里不能识别子目录,所以要手动添加所有子目录

{

    "configurations": [

        {

            "name": "Win32",

            "includePath": [

                "D:\\mingw-w64\\x86_64-7.2.0-posix-seh-rt_v5-rev1\\mingw64\\include",

                "D:\\mingw-w64\\x86_64-7.2.0-posix-seh-rt_v5-rev1\\mingw64\\lib\\gcc\\x86_64-w64-mingw32\\7.2.0\\include",

                "${workspaceRoot}",

                "D:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/lib/gcc/x86_64-w64-mingw32/7.2.0/include/c++/tr1",

                "D:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/lib/gcc/x86_64-w64-mingw32/7.2.0/include/c++"

            ],

            "defines": [

                "_DEBUG",

                "UNICODE",

                "_UNICODE"

            ],

            "intelliSenseMode": "msvc-x64",

            "browse": {

                "path": [

                    "D:\\mingw-w64\\x86_64-7.2.0-posix-seh-rt_v5-rev1\\mingw64\\include",

                    "D:\\mingw-w64\\x86_64-7.2.0-posix-seh-rt_v5-rev1\\mingw64\\lib\\gcc\\x86_64-w64-mingw32\\7.2.0\\include",

                    "${workspaceRoot}",

                    "D:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/lib/gcc/x86_64-w64-mingw32/7.2.0/include/c++/tr1",

                    "D:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/lib/gcc/x86_64-w64-mingw32/7.2.0/include/c++"

                ],

                "limitSymbolsToIncludedHeaders": true,

                "databaseFilename": ""

            }

        }

    ],

    "version": 3

}

4)修改工作区设置为://有一些设置和c/cpp无关

{

    "files.defaultLanguage": "cpp", // ctrl+N新建文件后默认的语言

    "code-runner.saveFileBeforeRun": true, // run code前保存

    "code-runner.preserveFocus": true, // 若为false,run code后光标会聚焦到终端上。如果需要频繁输入数据可设为false

    "code-runner.clearPreviousOutput": false, // 每次run code前清空属于code runner的终端消息

    "C_Cpp.intelliSenseEngine": "Default", // 可以为Default或Tag Parser,后者较老,功能较简单。具体差别参考cpptools插件文档

    "editor.formatOnType": true, // 输入时就进行格式化,默认触发字符较少,分号可以触发

    "editor.snippetSuggestions": "top" // snippets代码优先显示补全

}

5)修改用户设置为://有一些设置和c/cpp无关

{

    "git.ignoreMissingGitWarning": true,

    "workbench.colorTheme": "Blackboard",

    "files.autoSave": "afterDelay",

    "editor.renderWhitespace": "none",

    "files.insertFinalNewline": true,

    "files.trimFinalNewlines": true,

    "workbench.startupEditor": "newUntitledFile",

    "workbench.activityBar.visible": true,

}

你可能感兴趣的:(vscode配置C_CPP调试)