Skip to content

Commit 93aeba4

Browse files
committed
Use FLINT 3.5.0
1 parent 46c3bac commit 93aeba4

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

bin/build_variables.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ MPIRVER=3.0.0 # MPIR build no longer works (not clear where to download from)
1919
# These are the actual dependencies used (at least by default):
2020
GMPVER=6.3.0
2121
MPFRVER=4.2.2
22-
FLINTVER=3.4.0
22+
FLINTVER=3.5.0

bin/install_latest_flint_ubuntu.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ source bin/build_variables.sh
77
sudo apt-get update
88
sudo apt-get install libgmp-dev libmpfr-dev xz-utils ninja-build
99

10-
git clone https://github.com/flintlib/flint
11-
cd flint && ./bootstrap.sh && ./configure --disable-static && make -j$(expr $(nproc) + 1) && sudo make install
10+
curl -O -L https://github.com/flintlib/flint/releases/download/v$FLINTVER/flint-$FLINTVER.tar.gz
11+
tar -xzf flint-$FLINTVER.tar.gz
12+
cd flint-$FLINTVER && ./configure --disable-static && make -j$(expr $(nproc) + 1) && sudo make install
1213

1314
ls -l /usr/local/lib
1415
sudo ldconfig /usr/local/lib

0 commit comments

Comments
 (0)