最近我开始玩Bazel,并且在调试应用程序时遇到问题,我可以使用 g ++ 进行调试,但是不能调试生成的 Bazel 。 exe文件。
谢谢您的关注。
此外,我使用Bazel和VsCode任务构建源代码。
版本
|-- 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
#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
此命令将生成一些文件和文件夹
某些文件夹包含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"
]
}
]
}
{
// 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
}
]
}
]
}
答案 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" ...