Skip to content

Commit f05baa6

Browse files
committed
Run ldconfig when installing FLINT
1 parent 08d8689 commit f05baa6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

bin/install_latest_flint_ubuntu.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ source bin/build_variables.sh
66

77
sudo apt-get update
88
sudo apt-get install libgmp-dev libmpfr-dev xz-utils ninja-build
9+
910
curl -O -L https://github.com/flintlib/flint/releases/download/v$FLINTVER/flint-$FLINTVER.tar.gz
10-
tar xf flint-$FLINTVER.tar.gz
1111
tar -xzf flint-$FLINTVER.tar.gz
1212
cd flint-$FLINTVER && ./configure --disable-static && make -j$(expr $(nproc) + 1) && sudo make install
13+
14+
ls -l /usr/local/lib
15+
sudo ldconfig /usr/local/lib

0 commit comments

Comments
 (0)