Replies: 1 comment 2 replies
-
The 'unsupported DW_FORM ...' message is likely due to Ada compiler emitting some debug info encoding that LLDB does not understand yet. Depending on which part of the debug info is affected, this could be a blocker or just a benign warning, though since gdb works without a problem, it's likely to be the former. But just in case it's not, does any of this help: https://github.com/vadimcn/vscode-lldb/wiki/Breakpoints-are-not-getting-hit? Also, check your compiler's users forum or mailing list, they are more likely to know what' going on. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
OS: Ubuntu 22.04.1
VSCode version: 1.72.0-insider
CodeLLDB version: v1.7.4
Compiler: GNAT 12.1.0
Debuggee: lldb version 14.0.0
Hi!
I am studying Ada programming and I would like to use CodeLLDB as a debugger. I managed to configure VSCode. Everything works normally, except debugging.
Webfreak's NativeDebug (gdb) works, CodeLLDB does not.
The debug session starts, but none of the breakpoints work; nor does the pause.
I get the following error message in the LLDB Output window (among others):
'unsupported DW_FORM value: 0x1e'
I am currently using lldb-14 (from the Ubuntu repository), but the same phenomenon is happening with the CodeLLDB's own LLDB.
Many thanks for any help/ideas!
LLDB Output:
launch.json:
Beta Was this translation helpful? Give feedback.
All reactions