diff options
| author | bors <bors@rust-lang.org> | 2015-01-15 05:12:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-01-15 05:12:30 +0000 |
| commit | 0c96037ec1676b420002a06ea337865f95abbf2c (patch) | |
| tree | cec4f5e86bd892800d343105da4332ad94b3f61a /src/libcoretest | |
| parent | 451e134c180e88b06e3b747ed750e4901ca93721 (diff) | |
| parent | 78278d0c76f3c868a4a4bcc47336c384968c6b3a (diff) | |
| download | rust-0c96037ec1676b420002a06ea337865f95abbf2c.tar.gz rust-0c96037ec1676b420002a06ea337865f95abbf2c.zip | |
auto merge of #20980 : richo/rust/final-power, r=alexcrichton
Originally, this was going to be discussed and revisted, however I've been working on this for months, and a rebase on top of master was about 1 flight's worth of work so I just went ahead and did it.
This gets you as far as being able to target powerpc with, eg:
LD_LIBRARY_PATH=./x86_64-unknown-linux-gnu/stage2/lib/ x86_64-unknown-linux-gnu/stage2/bin/rustc -C linker=powerpc-linux-gnu-gcc --target powerpc-unknown-linux-gnu hello.rs
Would really love to get this out before 1.0. r? @alexcrichton
Diffstat (limited to 'src/libcoretest')
| -rw-r--r-- | src/libcoretest/mem.rs | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/libcoretest/mem.rs b/src/libcoretest/mem.rs index 96b50e8bccb..3dc209e6fcb 100644 --- a/src/libcoretest/mem.rs +++ b/src/libcoretest/mem.rs @@ -19,18 +19,14 @@ fn size_of_basic() { } #[test] -#[cfg(any(target_arch = "x86", - target_arch = "arm", - target_arch = "mips", - target_arch = "mipsel"))] +#[cfg(target_pointer_width = "32")] fn size_of_32() { assert_eq!(size_of::<uint>(), 4u); assert_eq!(size_of::<*const uint>(), 4u); } #[test] -#[cfg(any(target_arch = "x86_64", - target_arch = "aarch64"))] +#[cfg(target_pointer_width = "64")] fn size_of_64() { assert_eq!(size_of::<uint>(), 8u); assert_eq!(size_of::<*const uint>(), 8u); @@ -52,18 +48,14 @@ fn align_of_basic() { } #[test] -#[cfg(any(target_arch = "x86", - target_arch = "arm", - target_arch = "mips", - target_arch = "mipsel"))] +#[cfg(target_pointer_width = "32")] fn align_of_32() { assert_eq!(align_of::<uint>(), 4u); assert_eq!(align_of::<*const uint>(), 4u); } #[test] -#[cfg(any(target_arch = "x86_64", - target_arch = "aarch64"))] +#[cfg(target_pointer_width = "64")] fn align_of_64() { assert_eq!(align_of::<uint>(), 8u); assert_eq!(align_of::<*const uint>(), 8u); |
