I think this pr #127173 changed rust_panic to be mangled which breaks gdb breaking on it with rust_panic name. The comment in
|
/// An unmangled function (through `rustc_std_internal_symbol`) on which to slap |
says that it should be unmangled, likely #[no_mangle] should be added to it or stabilize some other name for it as else you have to rely on the internal mangled name __rustc::rust_panic in e.g. Intellij Rust plugin or other things that want to add a breakpoint to it.
I think this pr #127173 changed
rust_panicto be mangled which breaks gdb breaking on it withrust_panicname. The comment inrust/library/std/src/panicking.rs
Line 888 in e964cca