File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ no_mangle! {
72
72
not( target_env = "wasi" )
73
73
) ,
74
74
target_os = "xous" ,
75
+ all( target_arch = "x86_64" , target_os = "uefi" ) ,
75
76
all( target_arch = "xtensa" , target_os = "none" ) ,
76
77
all( target_vendor = "fortanix" , target_env = "sgx" )
77
78
) ) ]
@@ -95,15 +96,16 @@ no_mangle! {
95
96
fn tanf( n: f32 ) -> f32 ;
96
97
}
97
98
98
- #[ cfg( target_os = "xous" ) ]
99
+ #[ cfg( any ( target_os = "xous" , target_os = "uefi" ) ) ]
99
100
no_mangle ! {
100
101
fn sqrtf( x: f32 ) -> f32 ;
101
102
fn sqrt( x: f64 ) -> f64 ;
102
103
}
103
104
104
105
#[ cfg( any(
105
106
all( target_vendor = "fortanix" , target_env = "sgx" ) ,
106
- target_os = "xous"
107
+ target_os = "xous" ,
108
+ target_os = "uefi"
107
109
) ) ]
108
110
no_mangle ! {
109
111
fn ceil( x: f64 ) -> f64 ;
Original file line number Diff line number Diff line change @@ -230,6 +230,8 @@ fn memmove_backward_aligned() {
230
230
}
231
231
}
232
232
233
+ // PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
234
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
233
235
#[ test]
234
236
fn memset_backward_misaligned_nonaligned_start ( ) {
235
237
let mut arr = gen_arr :: < 32 > ( ) ;
@@ -242,6 +244,8 @@ fn memset_backward_misaligned_nonaligned_start() {
242
244
}
243
245
}
244
246
247
+ // PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
248
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
245
249
#[ test]
246
250
fn memset_backward_misaligned_aligned_start ( ) {
247
251
let mut arr = gen_arr :: < 32 > ( ) ;
@@ -254,6 +258,8 @@ fn memset_backward_misaligned_aligned_start() {
254
258
}
255
259
}
256
260
261
+ // PowerPC tests are failing: https://github.com/rust-lang/rust/issues/99853
262
+ #[ cfg( not( target_arch = "powerpc64" ) ) ]
257
263
#[ test]
258
264
fn memset_backward_aligned ( ) {
259
265
let mut arr = gen_arr :: < 32 > ( ) ;
You can’t perform that action at this time.
0 commit comments