如何在Windows 10操作系统上使用Bazel调试C ++代码

时间:2018-12-17 18:46:08

标签: c++ debugging visual-studio-code bazel vscode-tasks

最近我开始玩Bazel,并且在调试应用程序时遇到问题,我可以使用 g ++ 进行调试,但是不能调试生成的 Bazel 。 exe文件。

谢谢您的关注。

此外,我使用Bazel和VsCode任务构建源代码。

  1. 我应该针对哪个.exe文件调试应用程序?
  2. 我的设置可以吗?
  3. 可以在Windows上使用Bazel调试c ++源代码。
  4. 我应该使用minGW调试bazel生成的可执行文件还是一些 othertools或debuggers ??

版本

  • 操作系统:Windows 10
  • Bazel版本:内部标签:0.20.0

我有这个项目结构:

|-- CPP_TESTS
    |-- .gitignore
    |-- a.exe  <-- I generated this with g++ minGW
    |-- readme.md
    |-- WORKSPACE
    |-- .vscode
    |   |-- c_cpp_properties.json
    |   |-- launch.json
    |   |-- settings.json
    |   |-- tasks.json
    |-- project
        |-- WORKSPACE
        |-- main
            |-- app.cc
            |-- BUILD
            |-- readme.md

enter image description here

app.cc

#include <iostream>

int main(int argc, char const *argv[])
{
    int a = 3;
    int b = 5;
    int c = a + b;

    /* code */
    std::cout << "Hello world" << std::endl;
    std::cout << c << std::endl;
    return 0;
}

内置文件

cc_binary(
    name = "app",
    srcs = ["app.cc"]
)

然后在./CPP_TESTS的根目录上运行此命令

  

bazel build //project/main:app

此命令将生成一些文件和文件夹

enter image description here

某些文件夹包含app.exe文件,例如在 bazel-bin 目录我有此文件和文件夹

|-- bazel-bin
    |-- project
    |   |-- main
    |       |-- app.exe
    |       |-- app.exe-2.params
    |       |-- app.exe.runfiles_manifest
    |       |-- app.pdb
    |       |-- app.exe.runfiles
    |       |   |-- MANIFEST
    |       |-- _objs
    |           |-- app
    |               |-- app.obj
    |-- project-name
        |-- main
            |-- app.exe
            |-- app.exe-2.params
            |-- app.exe.runfiles_manifest
            |-- app.pdb
            |-- app.exe.runfiles
            |   |-- MANIFEST
            |-- _objs
                |-- app
                    |-- app.obj
  

所以如果我在

内运行app.exe
|-- bazel-bin
    |-- project
    |   |-- main
    |       |-- app.exe   <=========
  

我得到这个输出

INFO: Elapsed time: 0,145s, Critical Path: 0,01s
INFO: 0 processes.
INFO: Build completed successfully, 1 total action
INFO: Build completed successfully, 1 total action
Hello world
8
PS C:\dev\tests\cpp_tests>

如果我调试应用程序,则会出现此错误。

开始之前,这是我的 tasks / json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "bazel_run",
            "type": "shell",
            "command": "bazel run //project/main:app",
            "args": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        {
            "label": "bazel_build",
            "type": "shell",
            "command": "bazel build //project/main:app",
            "args": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        },
        {
            "label": "bazel_debug_build",
            "type": "shell",
            "command": "bazel",
            "args": [
                "build",
                "//project/main:app",
                "--compilation_mode=dbg"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$gcc"
            ]
        }
    ]
}

launch.json

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {                                
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            // "program": "${workspaceFolder}/a.exe",
            "program": "${workspaceFolder}\\bazel-bin\\project\\main\\app.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "gdb",
            "miDebuggerPath": "C:/MinGW/bin/gdb.exe",
            "preLaunchTask": "bazel_debug_build",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}
  

所以我运行bazel build //project/main:app命令   enter image description here

错误消息。

enter image description here

但是app.exe在吗? enter image description here

3 个答案:

答案 0 :(得分:1)

请查看我对以下相关问题的回答:https://stackoverflow.com/a/54007919/7778502

虽然我无法确定您的设置是否正确(我需要了解更多信息,例如您安装了哪些VSCode插件,其他.json文件的内容是什么),但我可以肯定地说您有两个WORKSPACE文件,看起来是错误的。

您应该删除project\WORKSPACE,因为Bazel认为带有WORKSPACE文件的每个目录树都是唯一的工作空间。每个工作空间在其根目录中仅需要一个WORKSPACE文件。如果子目录具有其自己的WORKSPACE文件,则它是一个单独的工作空间,并且Bazel不会在“父”工作空间中使用其目标。

答案 1 :(得分:1)

您应该使用放在bazel-out/x64_windows-dbg/project/main/app.exe内的可执行文件。

如果要设置断点,则可能还需要--strip=never参数。

如果不起作用,请在launch.json文件中尝试使用“ cppvsdbg”而不是“ cppdbg”作为配置类型。

答案 2 :(得分:0)

首先,您需要添加一些bazel选项进行调试。手册在这里:enter link description here

如果要调试程序,则需要和选项,例如:

bazel build --copt="-g" --strip="never" ...