Skip to content

Commit 7d9b71f

Browse files
authored
Merge pull request rust-lang#435 from raphlinus/aarch64
Enable musl with aarch64
2 parents a8e4698 + d6c3de8 commit 7d9b71f

File tree

1 file changed

+1
-1
lines changed
  • src/unix/notbsd/linux/musl

1 file changed

+1
-1
lines changed

src/unix/notbsd/linux/musl/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ extern {
231231
}
232232

233233
cfg_if! {
234-
if #[cfg(any(target_arch = "x86_64"))] {
234+
if #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] {
235235
mod b64;
236236
pub use self::b64::*;
237237
} else if #[cfg(any(target_arch = "x86",

0 commit comments

Comments
 (0)