Skip to content

Commit 4c2f9db

Browse files
committed
tests
1 parent 189fb8b commit 4c2f9db

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

testcrate/build.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -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") || target.starts_with("i686") {
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)