about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-06-05 16:54:37 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-06-05 16:54:37 +0000
commit1797ae5174dc1444b2711ac250e1b44bf25ae1ef (patch)
treed6eea6e7c74b1d79d8481bca8d9944657da99099
parentaeac484d18f285e0f647348a36d897d2e0aff38b (diff)
downloadrust-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.rs7
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");