Skip to content

Commit

Permalink
Merge pull request rust-lang#435 from raphlinus/aarch64
Browse files Browse the repository at this point in the history
Enable musl with aarch64
  • Loading branch information
alexcrichton authored Oct 24, 2016
2 parents a8e4698 + d6c3de8 commit 7d9b71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/notbsd/linux/musl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ extern {
}

cfg_if! {
if #[cfg(any(target_arch = "x86_64"))] {
if #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] {
mod b64;
pub use self::b64::*;
} else if #[cfg(any(target_arch = "x86",
Expand Down

0 comments on commit 7d9b71f

Please sign in to comment.