- # C and [[Rust]] Binaries - ## Rescuing `strip`ped binaries - https://serverfault.com/questions/1147489/gdb-with-separate-symbols-file - Rebuild the application *without* stripping (this should *generally* be deterministic, so ok) - Run `objcopy --only-keep-debug <binary> <output>.debug` - Load into a `gdb` session with `symbol-file /path/to/output.debug` - Should work as expected!