File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
10
10
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
11
11
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
12
12
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13
- refs/heads/auto: e5bbe8244b8e8efefa26df4287f22fa3f059bd1c
13
+ refs/heads/auto: c8442afeb066656c4f4db3ca8538ee5976b504f6
14
14
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
15
15
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
16
16
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ fn size_of_basic() {
22
22
#[ cfg( any( target_arch = "x86" ,
23
23
target_arch = "arm" ,
24
24
target_arch = "mips" ,
25
- target_arch = "mipsel" ) ) ]
25
+ target_arch = "mipsel" ,
26
+ target_arch = "powerpc" ) ) ]
26
27
fn size_of_32 ( ) {
27
28
assert_eq ! ( size_of:: <uint>( ) , 4 u) ;
28
29
assert_eq ! ( size_of:: <* const uint>( ) , 4 u) ;
@@ -55,7 +56,8 @@ fn align_of_basic() {
55
56
#[ cfg( any( target_arch = "x86" ,
56
57
target_arch = "arm" ,
57
58
target_arch = "mips" ,
58
- target_arch = "mipsel" ) ) ]
59
+ target_arch = "mipsel" ,
60
+ target_arch = "powerpc" ) ) ]
59
61
fn align_of_32 ( ) {
60
62
assert_eq ! ( align_of:: <uint>( ) , 4 u) ;
61
63
assert_eq ! ( align_of:: <* const uint>( ) , 4 u) ;
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ mod i686_unknown_dragonfly;
72
72
mod i686_unknown_linux_gnu;
73
73
mod mips_unknown_linux_gnu;
74
74
mod mipsel_unknown_linux_gnu;
75
+ mod powerpc_unknown_linux_gnu;
75
76
mod x86_64_apple_darwin;
76
77
mod x86_64_apple_ios;
77
78
mod x86_64_pc_windows_gnu;
@@ -95,7 +96,7 @@ pub struct Target {
95
96
/// OS name to use for conditional compilation.
96
97
pub target_os : String ,
97
98
/// Architecture to use for ABI considerations. Valid options: "x86", "x86_64", "arm",
98
- /// "aarch64", and "mips ". "mips" includes "mipsel".
99
+ /// "aarch64", "mips", and "powerpc ". "mips" includes "mipsel".
99
100
pub arch : String ,
100
101
/// Optional settings with defaults.
101
102
pub options : TargetOptions ,
@@ -339,6 +340,7 @@ impl Target {
339
340
i686_unknown_linux_gnu,
340
341
mips_unknown_linux_gnu,
341
342
mipsel_unknown_linux_gnu,
343
+ powerpc_unknown_linux_gnu,
342
344
arm_linux_androideabi,
343
345
arm_unknown_linux_gnueabi,
344
346
arm_unknown_linux_gnueabihf,
You can’t perform that action at this time.
0 commit comments