Replies: 3 comments 12 replies
-
|
Error 0x0000007E is ERROR_MOD_NOT_FOUND aka "DLL not found". Check dll dependencies of the liblldb you are loading. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Where is the The same question goes for |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
OS: Windows 10
VSCode version: 1.72.2
CodeLLDB version: 1.8.1
Compiler: gcc.exe (Rev1, Built by MSYS2 project) 12.2.0
Debuggee: x86_64-w64-mingw32
When I set "lldb.library" in vscode settings to any of my lldb binaries (one from MSYS2 project, another one from WinLibs project) code-lldb just returns an error code and hangs vscode completely:
LLDB output log
Initial debug configuration: { name: 'debug', type: 'lldb', request: 'launch', program: '${workspaceFolder}/build/Debug/var_parser.exe', args: [], cwd: '${workspaceFolder}', __configurationTarget: 6 } Resolved debug configuration: { name: 'debug', type: 'lldb', request: 'launch', program: '${workspaceFolder}/build/Debug/var_parser.exe', args: [], cwd: '${workspaceFolder}', __configurationTarget: 6, relativePathBase: 'd:\\workspace\\var-parser', _adapterSettings: { displayFormat: 'auto', showDisassembly: 'auto', dereferencePointers: true, suppressMissingSourceFiles: true, evaluationTimeout: 5, consoleMode: 'commands', sourceLanguages: null, terminalPromptClear: null, evaluateForHovers: true, commandCompletions: true, reproducer: false } } Error: "Could not load \"d:\\\\tools\\\\vscode\\\\data\\\\extensions\\\\vadimcn.vscode-lldb-1.8.1\\\\adapter\\\\codelldb.dll\" (err=0000007F)" Debug adapter exit code=1 (0x1), signal=null.Beta Was this translation helpful? Give feedback.
All reactions