]> git.lizzy.rs Git - rust.git/blobdiff - library/panic_unwind/src/lib.rs
Rollup merge of #94017 - fee1-dead:unub, r=bjorn3
[rust.git] / library / panic_unwind / src / lib.rs
index e5753ccae2d4fb072d6648ee3318555dc0ae2983..7f05c82ac284bdfc9c279c8ff0f4a221a3235464 100644 (file)
     } else if #[cfg(target_os = "hermit")] {
         #[path = "hermit.rs"]
         mod real_imp;
+    } else if #[cfg(target_os = "l4re")] {
+        // L4Re is unix family but does not yet support unwinding.
+        #[path = "dummy.rs"]
+        mod real_imp;
     } else if #[cfg(target_env = "msvc")] {
         #[path = "seh.rs"]
         mod real_imp;