We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 93356a2 + 101ba13 commit 7a84ce4Copy full SHA for 7a84ce4
testcrate/build.rs
@@ -38,12 +38,9 @@ fn main() {
38
}
39
40
if target.starts_with("i586") || target.starts_with("i686") {
41
- // 32-bit x86 seems to not have `__fixunstfti`, but does have everything else
+ // 32-bit x86 does not have `__fixunstfti`/`__fixtfti` but does have everything else
42
features.insert(Feature::NoSysF128IntConvert);
43
- }
44
-
45
- if target.contains("-unknown-linux-") {
46
- // No `__extendhftf2` on x86, no `__trunctfhf2` on aarch64
+ // FIXME: 32-bit x86 has a bug in `f128 -> f16` system libraries
47
features.insert(Feature::NoSysF16F128Convert);
48
49
0 commit comments