about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorJan Sommer <jan.sommer@dlr.de>2024-11-23 23:59:03 +0100
committerJan Sommer <jan.sommer@dlr.de>2024-11-30 21:16:05 +0100
commit3f94047d8cd96846465048b5570d41cd1f90bd6f (patch)
tree3b3f26659ae412e1f53fa65d5924d25f1ab078e0 /library/std/src
parente93e096cc88728337fb41ff74431ebe71a1b4663 (diff)
downloadrust-3f94047d8cd96846465048b5570d41cd1f90bd6f.tar.gz
rust-3f94047d8cd96846465048b5570d41cd1f90bd6f.zip
Switch rtems target to panic unwind
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys/personality/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/personality/mod.rs b/library/std/src/sys/personality/mod.rs
index 9754e840d15..2e1d2e53a29 100644
--- a/library/std/src/sys/personality/mod.rs
+++ b/library/std/src/sys/personality/mod.rs
@@ -31,7 +31,7 @@ cfg_if::cfg_if! {
         target_os = "psp",
         target_os = "xous",
         target_os = "solid_asp3",
-        all(target_family = "unix", not(target_os = "espidf"), not(target_os = "l4re"), not(target_os = "rtems"), not(target_os = "nuttx")),
+        all(target_family = "unix", not(target_os = "espidf"), not(target_os = "l4re"), not(target_os = "nuttx")),
         all(target_vendor = "fortanix", target_env = "sgx"),
     ))] {
         mod gcc;