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:
parent
f001b8a43c
commit
65fc01a06f
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user