Skip to content

Commit 6aa252c

Browse files
committed
refine tests
1 parent eafbb43 commit 6aa252c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

testcrate/build.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ fn main() {
2222
// GCC and LLVM disagree on the ABI of `f16` and `f128` with MinGW. See
2323
// <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115054>.
2424
|| target.contains("windows-gnu")
25-
// // FIXME(llvm): There is an ABI incompatibility between GCC and Clang on 32-bit x86.
26-
// // See <https://github.com/llvm/llvm-project/issues/77401>.
27-
// || target.starts_with("i686")
25+
// FIXME(llvm): There is an ABI incompatibility between GCC and Clang on 32-bit x86.
26+
// See <https://github.com/llvm/llvm-project/issues/77401>.
27+
|| target.starts_with("i586")
28+
|| target.starts_with("i686")
2829
// 32-bit PowerPC and 64-bit LE gets code generated that Qemu cannot handle. See
2930
// <https://github.com/rust-lang/compiler-builtins/pull/606#issuecomment-2105635926>.
3031
|| target.starts_with("powerpc-")

0 commit comments

Comments
 (0)