Only enable--fat on x86 in build-all.py #7458 #7556

This commit is contained in:
Thomas Krijnen
2026-01-23 11:22:56 +01:00
committed by GitHub
parent ab3108ff59
commit a6a9f9d0a7
+1 -1
View File
@@ -1177,7 +1177,7 @@ if "cgal" in targets:
# Disable assembly, otherwise `emcc -c conftest.s` will crash due to assembly mismatch.
gmp_args.extend(("--disable-assembly", "--enable-cxx"))
mpfr_args.extend(("--host", "none"))
else:
elif "x86" in arch:
gmp_args.append("--enable-fat") # See issues #7458 #7556
OLD_CC = None