Skip to content

Commit

Permalink
Merge pull request #631 from tgross35/try-enabling-tests
Browse files Browse the repository at this point in the history
Enable `f128 -> f16` tests on Linux
  • Loading branch information
Amanieu authored Jun 25, 2024
2 parents 93356a2 + 101ba13 commit 7a84ce4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions testcrate/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,9 @@ fn main() {
}

if target.starts_with("i586") || target.starts_with("i686") {
// 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
features.insert(Feature::NoSysF128IntConvert);
}

if target.contains("-unknown-linux-") {
// No `__extendhftf2` on x86, no `__trunctfhf2` on aarch64
// FIXME: 32-bit x86 has a bug in `f128 -> f16` system libraries
features.insert(Feature::NoSysF16F128Convert);
}

Expand Down

0 comments on commit 7a84ce4

Please sign in to comment.