Is it possible to unwind on panic in #![no_std]
mode, e.g. with a customized #[panic_handler]
?
Asked
Active
Viewed 1,395 times
9

Shepmaster
- 388,571
- 95
- 1,107
- 1,366

updogliu
- 6,066
- 7
- 37
- 50
-
8The following article from [phil-opp](https://os.phil-opp.com/freestanding-rust-binary/#panic-implementation) explains unwinding in a no-std environment,though you will have to use OS specific libraries like [libunwind](http://www.nongnu.org/libunwind/) on linux – sn99 Apr 01 '19 at 09:23