vscode C++ bazel编译和gdb调试配置

1 概述

说点废话,脚本转开发真的各种知识点,编译和调试,日常工作中用bazel编译,这问题就来了,咋调试压?官网看到g++,那按道理应该bazel也行吧,可之前不知道vscode的配置项,今天整一整,工作摸鱼学工具…

2 用bazel编译可供gdb调试的可执行程序

个人理解可能错误,欢迎纠错

bazel build //:target -c dbg
  1. 首先我们建立一个helloworld项目,在bash输入
code . // 打开vscode
  1. 创建下面结构的文件目录
helloworld
  |——.vscode
		|——lanuch.json
		|——tasks.json
  |—— helloworld.cpp
  |——BUILD
  |——WORKSPACE

在文件tasks.json键入,需要注意的点

  • label 编译任务的名称,需要和lanuch.json联动
  • command 用bazel编译时的命令
  • args 用bazel编译时的参数
{
    "tasks": [
        // try bazel build
        {
            "type": "cppbuild",
            "label": "bazel build",
            "command": "/home/chuan/bin/bazel",  
            "args": [
                "build",
                "//:helloworld",
                "-c",
                "dbg"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "detail": "调试器生成的任务。"
        }
    ],
    "version": "2.0.0"
}

在文件lanuch.json键入,需要注意的点

  • program 这里需要配置能够找到bazel编译的生成的可执行程序
  • preLaunchTask 前置的任务名字,是tasks.json中的label所对应的名字
{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "C/C++: g++ build and debug active file",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/bazel-bin/${fileBasenameNoExtension}",  
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "miDebuggerPath": "/usr/bin/gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "bazel build"
        }
    ]
}

在BUILD文件中键入:

cc_binary(
    name = "helloworld",
    srcs = ["helloworld.cpp"],
)

在helloworld.cpp中键入:

#include 

int main() {
  using namespace std;
  cout << "Hello World!" << endl;
  return 0;
}

综上,一个项目就配置好了,这个时候通过vscode右上角的按钮就可以运行或者调试了。如果想了解的细一些,可以看vscode官网教程,很详细,要耐心看。
https://code.visualstudio.com/docs/cpp/config-linux#_explore-the-debugger

你可能感兴趣的:(vscode,c++,ide)