-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
bugdebuggerfixedCheck the Milestone for the release in which the fix is or will be available.Check the Milestone for the release in which the fix is or will be available.regressionA bug that didn't exist in a previous releaseA bug that didn't exist in a previous release
Milestone
Description
Environment
- OS and version: Windows 26100.1297 (ARM64)
- VS Code: 1.91.1
- C/C++ extension: 1.21.4
- OS and version of remote machine (if applicable):
- GDB / LLDB version:
Bug Summary and Steps to Reproduce
Bug Summary:
Unable to Launch programs in debugger.
Reverting to 1.20.5 works fine but with all versions 1.21.* Clicking "Launch" in the "Run and Debug" section simply builds the cmake target without actually launching it
Steps to reproduce:
"Click Launch" with the following launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"stopAtEntry": false,
"cwd": "${command:cmake.getLaunchTargetDirectory}",
"console": "integratedTerminal",
}]
}```
### Debugger Configurations
```shell
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"stopAtEntry": false,
"cwd": "${command:cmake.getLaunchTargetDirectory}",
"console": "integratedTerminal",
}]
}
Debugger Logs
No relevant errors observed
The only message (after clicking launch is below)
[build] Run Build Command(s): d:/vcpkg/downloads/tools/ninja/1.10.2-windows/ninja.exe -v -j 12 main
[build] ninja: no work to do.
[build]
[driver] Build completed: 00:00:00.114
[build] Build finished with exit code 0
Other Extensions
No response
Additional Information
No response
AndreasKunar
Metadata
Metadata
Assignees
Labels
bugdebuggerfixedCheck the Milestone for the release in which the fix is or will be available.Check the Milestone for the release in which the fix is or will be available.regressionA bug that didn't exist in a previous releaseA bug that didn't exist in a previous release
Type
Projects
Status
Done