Skip to content

Commit ce08495

Browse files
committed
Remove --disable-assembly on windows arm64
1 parent eb93f2e commit ce08495

2 files changed

Lines changed: 1 addition & 9 deletions

File tree

bin/build_dependencies_unix.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ SKIP_MPFR=no
2121
PATCH_GMP_C23=no
2222
PATCH_LDD=no
2323
PATCH_IMMINTRIN=no
24-
GMP_FAT_ARG="--enable-fat"
2524
HOST_ARG=
2625

2726
USE_GMP=gmp
@@ -43,7 +42,6 @@ do
4342
echo " --host <HOST> - set the host (target) for GMP build"
4443
echo " --skip-gmp - skip building GMP"
4544
echo " --skip-mpfr - skip building MPFR"
46-
echo " --disable-fat - disable building fat binaries"
4745
echo " --patch-ldd - patch flint shared linking for mingw on arm64"
4846
echo " --patch-immintrin - patch flint arm64 msvc header to avoid immintrin.h"
4947
echo
@@ -92,11 +90,6 @@ do
9290
SKIP_MPFR=yes
9391
shift
9492
;;
95-
--disable-fat)
96-
# Needed for the ARM64 Windows build under clangarm64.
97-
GMP_FAT_ARG="--disable-assembly"
98-
shift
99-
;;
10093
--patch-gmp-arm64)
10194
# Needed only for GMP 6.2.1 on OSX arm64 (Apple M1) hardware
10295
# As of GMP 6.3.0 this patch is no longer needed
@@ -214,7 +207,7 @@ if [ "$USE_GMP" = "gmp" ]; then
214207
./configfsf.guess
215208

216209
./configure --prefix=$PREFIX\
217-
$GMP_FAT_ARG\
210+
--enable-fat\
218211
--enable-shared=yes\
219212
--enable-static=no\
220213
--host=$HOST_ARG

bin/cibw_before_all_windows_arm64.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ pacman -S --noconfirm \
1616
#
1717

1818
bin/build_dependencies_unix.sh \
19-
--disable-fat\
2019
--use-gmp-github-mirror\
2120
--host aarch64-w64-mingw32\
2221
--patch-C23\

0 commit comments

Comments
 (0)