gpt4 book ai didi

c - 在 Windows 上使用 Visual Studio Code 调试 C

转载 作者:太空宇宙 更新时间:2023-11-04 02:25:05 26 4
gpt4 key购买 nike

我正在尝试在 Windows 10 上使用 Visual Studio Code 调试 C 程序,我在其中安装了 C/C++ 扩展。

我的问题是,当我在工作区 (E:\Docs\c) 中创建 Source.c 时,编写一些代码然后按 F5,它显示错误消息 launch: program 'E:\Docs\c\a.exe' does not exist,这意味着 VSCode 不执行编译操作。

与此同时,当我转到控制台并键入 gcc source.c 时,它会在同一文件夹中创建 a.exe,然后按 F5 再次启动时没有问题,但每次我想运行代码时都这样做很烦人。

那么,有没有办法从 VSCode 内部编译代码?

这是我的c_cpp_properties.json:

{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}",
"C:\\Program Files (x86)\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\lib\\gcc\\i686-w64-mingw32\\8.1.0\\include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"intelliSenseMode": "msvc-x64"
}
],
"version": 4
}

这是 launch.json :

{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\Program Files (x86)\\mingw-w64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

最佳答案

我认为您应该像这样将带有构建任务标签的预启动任务添加到launch.json:

"preLaunchTask": "build" // label of your build task

这意味着您的 tasks.json 中应该有标签为 build 的任务,例如

    "tasks": [
{
"label": "build",
"type": "shell",
"command": "gcc -g source.c"
"group": {
"kind": "build",
"isDefault": true
}
}
]

“-g”标志对于启用调试也很重要

关于c - 在 Windows 上使用 Visual Studio Code 调试 C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52770066/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com