Is it possible to use a debugger with Bevy? #5401
Unanswered
AlexOkafor
asked this question in
Q&A
Replies: 2 comments
-
It looks like you're using VSCode. With the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Exit code 0xc0000005 is an access violation. In other words the windows equivalent of SIGSEGV. The log suggests that it is lldb which crashes. This would be a bug in lldb as a debugger should never crash, even if the debugged program severely misbehaves. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
I was trying to write some unit tests for systems and decided to try to use the CodeLLDB debugger for rust. A simple hello world program seems to work:
but the second I add in a Bevy app like so...:
the debugger fails:

with this output log:
Has anyone been able to successfully use a debugger with Bevy? Or is the consensus to just stick to
println
debugging?Beta Was this translation helpful? Give feedback.
All reactions