IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> VS code + MinGW: windows上编写调试cpp -> 正文阅读

[开发工具]VS code + MinGW: windows上编写调试cpp

MinGW

  1. 官网下载 MinGW并安装。
  2. 在设置->高级系统设置->环境变量中给PATH添加上MinGW下的bin目录的路径,如D:\mingw-w64\mingw64\bin。
    打开cmd,输入g++ -v或gcc -v,如果有输出则配置成功。
    Using built-in specs.
    COLLECT_GCC=gcc
    ......
    Thread model: posix
    gcc version 8.1.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project)`
    

VS code

  1. 下载安装VS Code
  2. VS code中安装 Extension:c/c++ (ms-vscode.cpptools), (Ctrl+Shift+X),安装后重启vs code使之生效。
    在这里插入图片描述
  3. 下面逐步展示使用vs code debug cpp,或者参考官网进行配置。后面总共会产生一下几个文件:
  • helloword.cpp (示例代码)
  • tasks.json (编译配置)
  • launch.json (debugger 配置)
  • c_cpp_properties.json (compiler path and IntelliSense settings)
  1. 新建一个helloword目录,并在vscode中选择Open Folder打开该目录
  2. tasks.json编译
    选择Terminal > Configure Default Build Task > C/C++: g++ build active file,产生tasks.json,类似下面:
    {
      "tasks": [
        {
          "type": "cppbuild",
          "label": "C/C++: g++.exe build active file",
          "command": "C:/msys64/mingw64/bin/g++.exe",
          "args": ["-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe"],
          "options": {
            "cwd": "${fileDirname}"
          },
          "problemMatcher": ["$gcc"],
          "group": {
            "kind": "build",
            "isDefault": true
          },
          "detail": "compiler: C:/msys64/mingw64/bin/g++.exe"
        }
      ],
      "version": "2.0.0"
    }
    
  • args: 将传给g++的命令行参数.

  • ${file}: 代码文件, 将编译并在(${fileDirname}) 下生成它对应的可执行文件. 更多细节可参考 variables reference.

    点击helloword.cpp,在Terminal工具栏中选择Run Build Task,或者Ctrl+Shift+B 编译该项目。点击下面TERMINAL右边的’+'新建一个TERMINAL,输入.\helloword.exe运行程序

    > Executing task: C/C++: g++.exe 生成活动文件 <
    
    正在启动生成...
    D:\software\mingw-w64\mingw64\bin\g++.exe -fdiagnostics-color=always -g D:\dev\vscode\projects\helloworld\helloword.cpp -o D:\dev\vscode\projects\helloworld\helloword.exe
    生成已成功完成。
    
    Terminal will be reused by tasks, press any key to close it.
    
    PS D:\dev\vscode\projects\helloworld> .\helloword.exe
    Hello C++ World from VS Code and the C++ extension! 
    
  1. launch.json debug
    工具栏选择Run->Add Configuration->C++ (GDB/LLDB)->g++.exe build and debug active file.

    {
      "version": "0.2.0",
      "configurations": [
        {
          "name": "g++.exe - Build and debug active file",
          "type": "cppdbg",
          "request": "launch",
          "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
          "args": [],
          "stopAtEntry": false,
          "cwd": "${fileDirname}",
          "environment": [],
          "externalConsole": false,
          "MIMode": "gdb",
          "miDebuggerPath": "C:\\msys64\\mingw64\\bin\\gdb.exe",
          "setupCommands": [
            {
              "description": "Enable pretty-printing for gdb",
              "text": "-enable-pretty-printing",
              "ignoreFailures": true
            }
          ],
          "preLaunchTask": "C/C++: g++.exe build active file"
        }
      ]
    }
    

    Change the stopAtEntry value to true to cause the debugger to stop on the main method when you start debugging.

    The preLaunchTask setting is used to specify task to be executed before launch. Make sure it is consistent with the tasks.json file label setting.

    在helloword.cpp中设置断点,然后选择 Run > Start Debugging或者F5就开始debug了。

  2. c_cpp_properties.json, intelliSense
    Ctrl+Shift+P 输入C/C++: Edit Configurations (UI)
    设置编译器路径 compilerPath 和对应的intelliSenseMode。生成c_cpp_properties.json
    intelliSense是vs code里的一个插件,功能包括:自动代码补全;实时错误检查;代码改进建议。

    {
     "configurations": [
       {
         "name": "Linux",
         "includePath": ["${workspaceFolder}/**"],
         "defines": [],
         "compilerPath": "/usr/bin/gcc",
         "cStandard": "c11",
         "cppStandard": "c++17",
         "intelliSenseMode": "clang-x64"
       }
     ],
     "version": 4
    }
    
  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-10-20 12:41:44  更:2021-10-20 12:44:09 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 22:38:17-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码