From c9287febffa7b9fcdbd14cd864b2d8cadab8191a Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Fri, 6 Feb 2026 23:48:05 +0300 Subject: [PATCH 1/2] Test gmp snapshot (gmp-6.3.0-20250919151842.tar.zst) --- scripts/cibw_before_all.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/scripts/cibw_before_all.sh b/scripts/cibw_before_all.sh index cde08860..32957e3b 100644 --- a/scripts/cibw_before_all.sh +++ b/scripts/cibw_before_all.sh @@ -19,9 +19,13 @@ GMP_VERSION=6.3.0 GMP_DIR=gmp-${GMP_VERSION} GMP_URL=https://ftp.gnu.org/gnu/gmp/${GMP_DIR}.tar.xz +GMP_URL=https://gmplib.org/download/snapshot/gmp-next/gmp-6.3.0-20250919151842.tar.zst + download ${GMP_URL} -tar --extract --file ${GMP_DIR}.tar.xz -cd ${GMP_DIR} +#tar --extract --file ${GMP_DIR}.tar.xz +tar xf gmp-6.3.0-20250919151842.tar.zst +#cd ${GMP_DIR} +cd gmp-6.3.0-20250919151842/ for f in ../scripts/*.diff do @@ -33,7 +37,7 @@ if [ "$OSTYPE" = "cygwin" ] then if [ "${RUNNER_ARCH}" = "ARM64" ] then - autoreconf -fi +# autoreconf -fi CONFIG_ARGS="${CONFIG_ARGS} --disable-assembly" else CONFIG_ARGS="${CONFIG_ARGS} --enable-fat" From 30d92b8be4bb978a169a1802f31be5e3d2cee18f Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Fri, 6 Feb 2026 23:52:06 +0300 Subject: [PATCH 2/2] +1 --- scripts/cibw_before_all.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/cibw_before_all.sh b/scripts/cibw_before_all.sh index 32957e3b..886e2115 100644 --- a/scripts/cibw_before_all.sh +++ b/scripts/cibw_before_all.sh @@ -27,10 +27,10 @@ tar xf gmp-6.3.0-20250919151842.tar.zst #cd ${GMP_DIR} cd gmp-6.3.0-20250919151842/ -for f in ../scripts/*.diff -do - patch --strip 1 < $f -done +#for f in ../scripts/*.diff +#do +# patch --strip 1 < $f +#done CONFIG_ARGS="--enable-shared --disable-static --with-pic --disable-alloca --prefix=$PREFIX" if [ "$OSTYPE" = "cygwin" ]