-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lldb-mi exits launching my application with SIGKILL #88
Comments
Should add, this is all on macOS: all toolchain stuff is from XCode 13.2: (except for lldb-mi which is from VS-Code cpptools)
|
Good news, with current HEAD (2388bd7), the problem is different: no SIGKILL occurs. Instead, lldb-mi seems to get stuck early in dyld startup. If it hit 'break' (pause button) in VS Code, the debug console then shows all the expected output (as if pressing pause caused this to flush in a stuck pipe, from lldb-mi). When I press continue, debugging and my application then proceed correctly: debugging works, etc, etc. Of course, I do not have
So I guess there is something blocking in |
I'm trying to debug my application using VS-Code, with their bundled lldb-mi (will build from current source here in a moment)
If I create a small test application, lldb-mi works fine, but if I try to debug my real application, which is large, lldb-mi dies right after it logs loading symbols for the app. When I use regular lldb (supplied by XCode), everything works as expected.
Output from lldb-mi when it dies (after manually doing a 'run')
I suspect this is a configuration problem but I have no clue how to debug it further: can you suggest anything I can set / log / try to isolate where the real problem might be? Aside from trying lldb-mi from this Git which I will do in a moment.
The text was updated successfully, but these errors were encountered: