Fix broken aarch64 build

This commit is contained in:
Eunji Jeong 2015-03-02 14:07:07 +09:00
parent 1576142495
commit a7fe94fc0c

View file

@ -566,7 +566,7 @@ mod uw {
// This function doesn't exist on Android or ARM/Linux, so make it same
// to _Unwind_GetIP
#[cfg(any(target_os = "android",
#[cfg(any(all(target_os = "android", target_arch = "arm"),
all(target_os = "linux", target_arch = "arm")))]
pub unsafe fn _Unwind_GetIPInfo(ctx: *mut _Unwind_Context,
ip_before_insn: *mut libc::c_int)