vscode-lldb 1.6.1 remote debug stuck at glibc "_start:3" #6976
-
Hi, I hope that I can get some help here. This is my first post :) I'm trying to remote debug my program with the vadimcn.vscode-lldb-1.6.1 extension but it gets stuck at I have to use the gdbserver on the target, so i set up my launch configuration like this: {
"name": "LLDB Debug (remote target)",
"type": "lldb",
"request": "custom",
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": "Run gdbserver",
"initCommands": [
"b main"
],
"targetCreateCommands": [
"target create /tmp/.vscode/build/EXECUTABLE"
],
"processCreateCommands": [
"gdb-remote 192.168.1.5:2345",
],
"expressions": "simple",
"relativePathBase": "/tmp/.vscode/sa-build"
}, The client connects successfully with the gdbserver, but it hangs with this call stack. When I try to continue, it won't pass this symbol. Callstack:
Compile Flags The program should be able to run on an arm target. It runs when I start it directly. "file" output for "EXECUTABLE"
GDB Server start command Below here are the gdbserver and lldb extension logs. GDB Server output
LLDB debug output
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@WardenGnaw Do you know? |
Beta Was this translation helpful? Give feedback.
@WardenGnaw Do you know?