LLDB-DAP in VSC doesn't respect "disableASLR": false
unless you also do settings set target.disable-aslr false
#94338
Labels
"disableASLR": false
unless you also do settings set target.disable-aslr false
#94338
When you try to debug in Docker using LLDB-DAP, by default it fails because it's unable to disable the ASLR.
Adding
"disableASLR": false,
tolaunch.json
is supposed to fix it, but currently you need both that and"initCommands": ["settings set target.disable-aslr false"],
for it to work.Ideally the former should be enough (or if either one worked, that would be perfect). I could swear that the former was enough at some point (maybe when I was using v0.2.0 VSC extension I compiled myself, while now I'm using v0.2.1 from the marketplace).
I'm using
lldb-dap-18
v18.1.3 from apt.llvm.org on Ubuntu 22.04.The text was updated successfully, but these errors were encountered: