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.
This commit is contained in:
Roberto Oliveira 2017-10-17 16:02:23 -02:00
parent f001b8a43c
commit 65fc01a06f

View File

@ -309,7 +309,9 @@ extern {
}
cfg_if! {
if #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] {
if #[cfg(any(target_arch = "x86_64",
target_arch = "aarch64",
target_arch = "powerpc64"))] {
mod b64;
pub use self::b64::*;
} else if #[cfg(any(target_arch = "x86",