codelldb
codelldb copied to clipboard
Can't find codelldb.exe (but, it's right there)
OS: Windows 11
VSCode version: VSCodium-1.88.0
CodeLLDB version: CodeLLDB-1.10.0
Compiler: zig-0.11.0
Debuggee: x86_64-windows-msvc
- Run command
workbench.action.debug.start
- task
build
completes sucessfully - target executable is spawned
- process paused on entry-point
- CodeLLDB complains it can't find
codelldb.exe
- though
codelldb.exe
is right where you'd expect it to be - running the very same command manually, in a CMD box, resumes the execution of the target process until it exits
$ \\vadimcn.vscode-lldb-1.10.0-universal\\adapter\\codelldb.exe terminal-agent --connect=62648
bash: \vadimcn.vscode-lldb-1.10.0-universal\adapter\codelldb.exe: No such file or directory
{
// 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": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/zig-out/bin/foo.exe",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "build"
}
]
}