Hacker News new | ask | show | jobs
by selfmodruntime 207 days ago
How do you manage to do this?
1 comments

There's a crate that prevents linking panic symbol in the final stage of the executable generation, forcing it to be undefined symbol, so while it is hard to find out where the panic is, it effectively requires me to inspect throughout the code to find out. Sometimes I have to disassemble the object file to see this
it's not the `no_panic` crate by david tolnay, is it?