Debugging Rust with gdb

后端 未结 2 2069
忘掉有多难
忘掉有多难 2021-02-20 00:21

I\'m aware of the debugging Rust questions here on StackOverflow and I also used gdb before with Go. However, I\'m running into a problem where it seems gdb is unable t

2条回答
  •  -上瘾入骨i
    2021-02-20 00:49

    Same question, later Rust version (1.0.0-beta), totally different answer:

    In GDB, when debugging a Rust executable, break main sets a breakpoint in some setup code that is part of the Rust standard library. This isn't what you want.

    Instead type: break $YOUR_CRATE::main, substituting the name of your program for $YOUR_CRATE.

提交回复
热议问题