Skip to content

Commit 189fb8b

Browse files
committed
test i586 i686
1 parent 01c0b12 commit 189fb8b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

testcrate/build.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn main() {
2323
|| target.contains("windows-gnu")
2424
// FIXME(llvm): There is an ABI incompatibility between GCC and Clang on 32-bit x86.
2525
// See <https://github.com/llvm/llvm-project/issues/77401>.
26-
|| target.starts_with("i686")
26+
// || target.starts_with("i686")
2727
// 32-bit PowerPC and 64-bit LE gets code generated that Qemu cannot handle. See
2828
// <https://github.com/rust-lang/compiler-builtins/pull/606#issuecomment-2105635926>.
2929
|| target.starts_with("powerpc-")
@@ -37,12 +37,12 @@ fn main() {
3737
features.insert(Feature::NoSysF16F128Convert);
3838
}
3939

40-
if target.starts_with("i586") {
41-
// 32-bit x86 without SSE seems to not have `__fixunstfti`, but does have everything else
42-
features.insert(Feature::NoSysF128IntConvert);
43-
// FIXME: i586 has a bug in `f128 -> f16`
44-
features.insert(Feature::NoSysF16F128Convert);
45-
}
40+
// if target.starts_with("i586") {
41+
// // 32-bit x86 without SSE seems to not have `__fixunstfti`, but does have everything else
42+
// features.insert(Feature::NoSysF128IntConvert);
43+
// // FIXME: i586 has a bug in `f128 -> f16`
44+
// features.insert(Feature::NoSysF16F128Convert);
45+
// }
4646

4747
if target.starts_with("wasm32-") {
4848
// Linking says "error: function signature mismatch: __extendhfsf2" and seems to

0 commit comments

Comments
 (0)