vadimcn / codelldb

A native debugger extension for VSCode based on LLDB
https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb
MIT License
2.42k stars 237 forks source link

Debug adapter exit code=3221225781 (0xc0000135), signal=null. #1093

Open Cybiger opened 2 months ago

Cybiger commented 2 months ago

I'm using win11 and configuring C++ debug environment with clang ++ in winlibs and codelldb.

After configuring the tasks.json and launch.json files of vscode, the sample program compiles and executes correctly, but when I press the F5 key to debug in vsocde, the codelldb plugin reports an error:

image
Initial debug configuration: {
  type: 'lldb',
  request: 'launch',
  name: 'Debug',
  program: '${workspaceFolder}\\build\\run.exe',
  args: [],
  cwd: '${workspaceFolder}',
  preLaunchTask: 'cppbuild',
  __configurationTarget: 6
}
Resolved debug configuration: {
  type: 'lldb',
  request: 'launch',
  name: 'Debug',
  program: '${workspaceFolder}\\build\\run.exe',
  args: [],
  cwd: '${workspaceFolder}',
  preLaunchTask: 'cppbuild',
  __configurationTarget: 6,
  relativePathBase: 'd:\\Codefield',
  _adapterSettings: {
    displayFormat: 'auto',
    showDisassembly: 'never',
    dereferencePointers: true,
    suppressMissingSourceFiles: true,
    evaluationTimeout: 5,
    consoleMode: 'commands',
    sourceLanguages: null,
    terminalPromptClear: null,
    evaluateForHovers: true,
    commandCompletions: true,
    reproducer: false
  }
}
Debug adapter exit code=3221225781 (0xc0000135), signal=null.
wanderhappy commented 1 month ago

same thing happens to me. win10