Skip to content

Commit

Permalink
Fix broken aarch64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
ejjeong committed Mar 2, 2015
1 parent 1576142 commit a7fe94f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sys/unix/backtrace.rs
Expand Up @@ -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)
Expand Down

0 comments on commit a7fe94f

Please sign in to comment.