File tree 2 files changed +4
-2
lines changed 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ pub mod int;
48
48
all( target_arch = "x86_64" , target_os = "uefi" ) ,
49
49
all( target_arch = "arm" , target_os = "none" ) ,
50
50
all( target_arch = "xtensa" , target_os = "none" ) ,
51
+ all( target_arch = "mips" , target_os = "none" ) ,
51
52
target_os = "xous" ,
52
53
all( target_vendor = "fortanix" , target_env = "sgx" )
53
54
) ) ]
Original file line number Diff line number Diff line change @@ -136,11 +136,12 @@ no_mangle! {
136
136
fn truncf( x: f32 ) -> f32 ;
137
137
}
138
138
139
- // only for the thumb*-none-eabi*, riscv32*-none-elf and x86_64 -unknown-none targets that lack the floating point instruction set
139
+ // only for the thumb*-none-eabi*, riscv32*-none-elf, x86_64-unknown-none and mips* -unknown-none targets that lack the floating point instruction set
140
140
#[ cfg( any(
141
141
all( target_arch = "arm" , target_os = "none" ) ,
142
142
all( target_arch = "riscv32" , not( target_feature = "f" ) , target_os = "none" ) ,
143
- all( target_arch = "x86_64" , target_os = "none" )
143
+ all( target_arch = "x86_64" , target_os = "none" ) ,
144
+ all( target_arch = "mips" , target_os = "none" ) ,
144
145
) ) ]
145
146
no_mangle ! {
146
147
fn fmin( x: f64 , y: f64 ) -> f64 ;
You can’t perform that action at this time.
0 commit comments