| 11 Jul 2025 |
cpick | I'm trying to get a debugger to stop at a breakpoint when my rust program panics. I understand the recommendation to be to break on the rust_panic() function, but that's not working for me. Does anyone have any experience with this (or have an alternative)?
I'm on aarch64, I've tried both darwin and NixOS linux (via VM) both using nixpkgs cargo, rustc, lldb and gdb packages.
I've tried both rust-lldb and rust-gdb, neither is able to find the function and neither hit the breakpoint:
$ rust-lldb target/debug/delme
...
(lldb) b rust_panic
Breakpoint 1: no locations (pending).
WARNING: Unable to resolve breakpoint to any actual locations.
(lldb) r
Process 1612 launched: '/home/builder/delme/target/debug/delme' (aarch64)
thread 'main' panicked at src/main.rs:2:5:
Hello, world!
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Process 1612 exited with status = 101 (0x00000065)
$ rust-gdb target/debug/delme
(gdb) b rust_panic
Function "rust_panic" not defined.
Make breakpoint pending on future shared library load? (y or [n]) y
Breakpoint 1 (rust_panic) pending.
(gdb) r
Starting program: /home/builder/delme/target/debug/delme
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/nix/store/gydncjm02ww60x9gamkhfwj3f34g3g8m-glibc-2.40-66/lib/libthread_db.so.1".
thread 'main' panicked at src/main.rs:2:5:
Hello, world!
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
[Inferior 1 (process 1670) exited with code 0145]
$ cat src/main.rs
fn main() {
panic!("panic called");
}
| 17:25:25 |
cpick | * I'm trying to get a debugger to stop at a breakpoint when my rust program panics. I understand the recommendation to be to break on the rust_panic() function, but that's not working for me. Does anyone have any experience with this (or have an alternative)?
I'm on aarch64, I've tried both darwin and NixOS linux (via VM) both using nixpkgs cargo, rustc, lldb and gdb packages.
I've tried both rust-lldb and rust-gdb, neither is able to find the function and neither hit the breakpoint:
$ rust-lldb target/debug/delme
...
(lldb) b rust_panic
Breakpoint 1: no locations (pending).
WARNING: Unable to resolve breakpoint to any actual locations.
(lldb) r
Process 1612 launched: '/home/builder/delme/target/debug/delme' (aarch64)
thread 'main' panicked at src/main.rs:2:5:
panic called
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Process 1612 exited with status = 101 (0x00000065)
$ rust-gdb target/debug/delme
(gdb) b rust_panic
Function "rust_panic" not defined.
Make breakpoint pending on future shared library load? (y or [n]) y
Breakpoint 1 (rust_panic) pending.
(gdb) r
Starting program: /home/builder/delme/target/debug/delme
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/nix/store/gydncjm02ww60x9gamkhfwj3f34g3g8m-glibc-2.40-66/lib/libthread_db.so.1".
thread 'main' panicked at src/main.rs:2:5:
panic called
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
[Inferior 1 (process 1670) exited with code 0145]
$ cat src/main.rs
fn main() {
panic!("panic called");
}
| 17:26:39 |
cpick | * I'm trying to get a debugger to stop at a breakpoint when my rust program panics. I understand the recommendation to be to break on the rust_panic() function, but that's not working for me. Does anyone have any experience with this (or have an alternative)?
I'm on aarch64, I've tried both darwin and NixOS linux (via VM) both using nixpkgs cargo, rustc, lldb and gdb packages.
I've tried both rust-lldb and rust-gdb, neither is able to find the function and neither hit the breakpoint:
$ rust-lldb target/debug/delme
...
(lldb) b rust_panic
Breakpoint 1: no locations (pending).
WARNING: Unable to resolve breakpoint to any actual locations.
(lldb) r
Process 1612 launched: '/home/builder/delme/target/debug/delme' (aarch64)
thread 'main' panicked at src/main.rs:2:5:
panic called
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Process 1612 exited with status = 101 (0x00000065)
$ rust-gdb target/debug/delme
...
(gdb) b rust_panic
Function "rust_panic" not defined.
Make breakpoint pending on future shared library load? (y or [n]) y
Breakpoint 1 (rust_panic) pending.
(gdb) r
Starting program: /home/builder/delme/target/debug/delme
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/nix/store/gydncjm02ww60x9gamkhfwj3f34g3g8m-glibc-2.40-66/lib/libthread_db.so.1".
thread 'main' panicked at src/main.rs:2:5:
panic called
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
[Inferior 1 (process 1670) exited with code 0145]
$ cat src/main.rs
fn main() {
panic!("panic called");
}
| 17:26:56 |
dramforever | i'm not sure if rust_panic is even a real thing, try rust_begin_panic? | 17:27:53 |
dramforever | huh | 17:28:42 |
dramforever | apparently it is supposed to be a thing | 17:28:48 |
cpick | No joy (same result: neither lldb nor gdb can find the symbol). | 17:29:12 |
dramforever | ummmmmm | 17:29:16 |
dramforever | how did you build your thing? can you reproduce this with just a clean cargo bin crate? | 17:30:06 |
dramforever | i just tried gdb and b rust_panic works | 17:30:26 |
dramforever | makes me wonder if you've set some cargo config options to strip or otherwise mess with the symbol table | 17:30:54 |
dramforever | i'm on aarch64-linux | 17:31:10 |
cpick | OK, that's encouraging, thanks. I just created a new NixOS VM, ran nix shell nixpkgs#{cargo,lldb,gcc,rustc,gdb} ran cargo init and replaced println in main.rs with panic, then did cargo build. | 17:32:03 |
cpick | So I shouldn't have any non-stock configuration? | 17:32:23 |
dramforever | that sounds about right | 17:32:45 |
dramforever | then gdb target/debug/whatever-the-name-is | 17:33:08 |
cpick | I used rust-gdb, I'll try gdb itself... | 17:33:23 |
cpick | Yeah, same result. | 17:33:58 |
dramforever | that's so weird | 17:38:28 |
dramforever | how recent is this nixpkgs of yours | 17:38:38 |
| Jose Storopoli joined the room. | 17:52:23 |
cpick | Good question... I think this is it?
$ readlink -f /nix/var/nix/profiles/per-user/root/channels
/nix/store/in3n7rsk9rkhdfzsba2kfl1hzv13xbn3-nixos-25.11.20250708.9b008d6
| 17:54:06 |
ghpzin | Are you on nixos-25.05 or unstable version before 2025-06-19 ? I assume it does not work on rustc 1.87+ because of https://github.com/rust-lang/rust/issues/140821 | 17:57:23 |
ghpzin | Are you on nixos-25.05 or unstable version before 2025-06-19 ? I assume it does not work on rustc 1.87+ because of https://github.com/rust-lang/rust/issues/140821 rustc 1.86 (from nixos-25.05)
(gdb) b rust_panic
Breakpoint 1 at 0x30ff4
rustc 1.87 (from nixos-unstable):
(gdb) b rust_panic
Function "rust_panic" not defined.
| 18:02:23 |
cpick | Aha! As suggested
rbreak rust_panic worked for me in gdb (no joy with the suggested b s -r rust_panic in lldb, though).
Still that works well for my purposes. Thank you!
| 18:02:36 |
dramforever | ah, that must be it, i'm on a newer rustc but i forgot that the thing i was debugging was an older one | 18:10:18 |
dramforever | * ah, that must be it, i'm on a newer rustc but i forgot that the thing i was debugging was compiled with an older one | 18:10:28 |
cpick | It looks like I just needed to use br s -r rust_panic (not b) in lldb and that works just fine.
Thank you both!
| 18:11:30 |
Toma | Oh, I was wrong about cargoDepsName not being used, I just misremembered. The important thing is: it no longer affects the hash. The old fetchCargoTarball implementation generated a tarball that had a directory name inside it dependent on the name of the package. Now, with fetchCargoVendor, we no longer care about the names, the only thing that matters now is the exact contents of the Cargo.lock file: if anything changes in it, the hash will have to be regenerated. This is because the Cargo.lock is copied into the FOD for later validation. So, because the Cargo.lock file usually contains the version of the package, even if no deps were changed, the changed version value would lead to a new hash.
If we removed the Cargo.lock integrity check (where it checks if cargoDeps's Cargo.lock and src's Cargo.lock match), we'd no longer have to copy Cargo.lock into our FOD, so we'd only get a new hash if the dependency list changed. This is not worth it compared to the integrity check, which is pretty important.
| 20:02:39 |
| 12 Jul 2025 |
undltd | Thanks for the explanation. | 06:50:06 |