Skip to content

Commit 32f9b53

Browse files
committedMay 18, 2018
NetBSD on EABI ARM does not use ARM EHABI
1 parent df40e61 commit 32f9b53

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/libpanic_unwind/gcc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ const UNWIND_DATA_REG: (i32, i32) = (24, 25); // I0, I1
143143
// The personality routine for most of our targets, except ARM, which has a slightly different ABI
144144
// (however, iOS goes here as it uses SjLj unwinding). Also, the 64-bit Windows implementation
145145
// lives in seh64_gnu.rs
146-
#[cfg(all(any(target_os = "ios", not(target_arch = "arm"))))]
146+
#[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm"))))]
147147
#[lang = "eh_personality"]
148148
#[no_mangle]
149149
#[allow(unused)]
@@ -184,7 +184,7 @@ unsafe extern "C" fn rust_eh_personality(version: c_int,
184184

185185
// ARM EHABI personality routine.
186186
// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0038b/IHI0038B_ehabi.pdf
187-
#[cfg(all(target_arch = "arm", not(target_os = "ios")))]
187+
#[cfg(all(target_arch = "arm", not(target_os = "ios"), not(target_os = "netbsd")))]
188188
#[lang = "eh_personality"]
189189
#[no_mangle]
190190
unsafe extern "C" fn rust_eh_personality(state: uw::_Unwind_State,

‎src/libunwind/libunwind.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ extern "C" {
9393
}
9494

9595
cfg_if! {
96-
if #[cfg(all(any(target_os = "ios", not(target_arch = "arm"))))] {
96+
if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm"))))] {
9797
// Not ARM EHABI
9898
#[repr(C)]
9999
#[derive(Copy, Clone, PartialEq)]

0 commit comments

Comments
 (0)
Please sign in to comment.