We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e4b0ab + af56c4d commit 671bde2Copy full SHA for 671bde2
bin/build_dependencies_unix.sh
@@ -257,6 +257,7 @@ else
257
tar xf mpfr-$MPFRVER.tar.gz
258
cd mpfr-$MPFRVER
259
./configure --prefix=$PREFIX\
260
+ --host=$HOST_ARG\
261
--with-gmp=$PREFIX\
262
--enable-shared=yes\
263
--enable-static=no
@@ -281,7 +282,13 @@ curl -O -L https://github.com/flintlib/flint/releases/download/v$FLINTVER/flint-
281
282
tar xf flint-$FLINTVER.tar.gz
283
cd flint-$FLINTVER
284
./bootstrap.sh
285
+ # --host=$HOST_ARG\ # host is ignored
286
+ # --enable-arch works on 3.1.3p1, not available on HEAD
287
288
+ --enable-arch=${HOST_ARG%%-*}\
289
+ --disable-assembly\
290
+ --disable-avx2\
291
+ --disable-avx512\
292
$FLINTARB_WITHGMP\
293
--with-mpfr=$PREFIX\
294
--disable-static\
0 commit comments