diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2016-01-15 17:28:28 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-01-15 17:28:28 +0530 |
| commit | 7208d2500394ce51010641919f3f79a5ce88dba0 (patch) | |
| tree | cd4ce2d9f411c08239b14bf906139ab83dc23305 /src/liballoc_system/lib.rs | |
| parent | ad83ea6a6554dfc837a8e42c1af8af093d98c63d (diff) | |
| parent | 12aec073a8cd293bede167a7ef062044eb07299e (diff) | |
| download | rust-7208d2500394ce51010641919f3f79a5ce88dba0.tar.gz rust-7208d2500394ce51010641919f3f79a5ce88dba0.zip | |
Rollup merge of #30776 - antonblanchard:powerpc64_merge, r=alexcrichton
This adds support for big endian and little endian PowerPC64. make check runs clean apart from one big endian backtrace issue.
Diffstat (limited to 'src/liballoc_system/lib.rs')
| -rw-r--r-- | src/liballoc_system/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/liballoc_system/lib.rs b/src/liballoc_system/lib.rs index a4e98e413bb..ffb6999d6e3 100644 --- a/src/liballoc_system/lib.rs +++ b/src/liballoc_system/lib.rs @@ -29,7 +29,9 @@ extern crate libc; target_arch = "arm", target_arch = "mips", target_arch = "mipsel", - target_arch = "powerpc")))] + target_arch = "powerpc", + target_arch = "powerpc64", + target_arch = "powerpc64le")))] const MIN_ALIGN: usize = 8; #[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64")))] |
