diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-06-05 16:54:37 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-06-05 16:54:37 +0000 |
| commit | 1797ae5174dc1444b2711ac250e1b44bf25ae1ef (patch) | |
| tree | d6eea6e7c74b1d79d8481bca8d9944657da99099 | |
| parent | aeac484d18f285e0f647348a36d897d2e0aff38b (diff) | |
| download | rust-1797ae5174dc1444b2711ac250e1b44bf25ae1ef.tar.gz rust-1797ae5174dc1444b2711ac250e1b44bf25ae1ef.zip | |
Define rust_eh_personality for alloc_example
x86_64-pc-windows-gnu requires it to be defined.
| -rw-r--r-- | example/alloc_example.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/example/alloc_example.rs b/example/alloc_example.rs index d994e2fbc0a..117eed5afd8 100644 --- a/example/alloc_example.rs +++ b/example/alloc_example.rs @@ -1,4 +1,4 @@ -#![feature(start, core_intrinsics, alloc_error_handler)] +#![feature(start, core_intrinsics, alloc_error_handler, lang_items)] #![no_std] extern crate alloc; @@ -27,6 +27,11 @@ fn alloc_error_handler(_: alloc::alloc::Layout) -> ! { core::intrinsics::abort(); } +#[lang = "eh_personality"] +fn eh_personality() -> ! { + loop {} +} + #[start] fn main(_argc: isize, _argv: *const *const u8) -> isize { let world: Box<&str> = Box::new("Hello World!\0"); |
