Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions bin/build_dependencies_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ else
tar xf mpfr-$MPFRVER.tar.gz
cd mpfr-$MPFRVER
./configure --prefix=$PREFIX\
--host=$HOST_ARG\
--with-gmp=$PREFIX\
--enable-shared=yes\
--enable-static=no
Expand All @@ -281,7 +282,13 @@ curl -O -L https://github.com/flintlib/flint/releases/download/v$FLINTVER/flint-
tar xf flint-$FLINTVER.tar.gz
cd flint-$FLINTVER
./bootstrap.sh
# --host=$HOST_ARG\ # host is ignored
# --enable-arch works on 3.1.3p1, not available on HEAD
./configure --prefix=$PREFIX\
--enable-arch=${HOST_ARG%%-*}\
--disable-assembly\
--disable-avx2\
--disable-avx512\
$FLINTARB_WITHGMP\
--with-mpfr=$PREFIX\
--disable-static\
Expand Down