Skip to content

Commit 5355286

Browse files
committed
Auto merge of #808 - rgdoliveira:ppc64-musl, r=alexcrichton
Add missing powerpc64 in musl/mod.rs powerpc64 was missing in musl/mod.rs and making build fail as it was not able to find types, like c_char.
2 parents f001b8a + 65fc01a commit 5355286

File tree

1 file changed

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

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,9 @@ extern {
309309
}
310310

311311
cfg_if! {
312-
if #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] {
312+
if #[cfg(any(target_arch = "x86_64",
313+
target_arch = "aarch64",
314+
target_arch = "powerpc64"))] {
313315
mod b64;
314316
pub use self::b64::*;
315317
} else if #[cfg(any(target_arch = "x86",

0 commit comments

Comments
 (0)