From 8b7e56a9080b82153c099eb668697f99e1308286 Mon Sep 17 00:00:00 2001 From: Friz64 Date: Wed, 26 Jan 2022 19:56:42 +0100 Subject: [PATCH] Fix Unix CI for no-std Took a bit of digging until i found the issue i was looking for. https://github.com/rust-lang/rust/issues/79609 --- no_std/no_std_test/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/no_std/no_std_test/src/main.rs b/no_std/no_std_test/src/main.rs index 3db95447..a6385cb4 100644 --- a/no_std/no_std_test/src/main.rs +++ b/no_std/no_std_test/src/main.rs @@ -47,3 +47,6 @@ extern "C" fn rust_eh_register_frames() {} #[no_mangle] extern "C" fn rust_eh_unregister_frames() {} + +#[no_mangle] +extern "C" fn _Unwind_Resume() {}