Closed korrat closed 2 years ago
On some targets, alloc is built with unwinding. Therefore, it requires libunwind even when compiling with panic=abort. Defining the _Unwind_Resume symbol fixes this. The actual implementation does not matter, since it will never be called.
alloc
libunwind
panic=abort
_Unwind_Resume
See rust-lang/rust#79609 for more details.
Thanks! Released in 0.13.0
On some targets,
alloc
is built with unwinding. Therefore, it requireslibunwind
even when compiling withpanic=abort
. Defining the_Unwind_Resume
symbol fixes this. The actual implementation does not matter, since it will never be called.See rust-lang/rust#79609 for more details.