From bb45363b1bc5b8d9523d17f5206b93c715fae4cc Mon Sep 17 00:00:00 2001 From: Yuqi <38589382+Creeki@users.noreply.github.com> Date: Wed, 15 Nov 2023 16:39:02 +0100 Subject: [PATCH] Update install-RAiSD-GSL.sh for new gsl Adapts to the current version 2.7.1 of gsl, as well as possible future updates. --- install-RAiSD-GSL.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install-RAiSD-GSL.sh b/install-RAiSD-GSL.sh index 5d0a601..95880ce 100755 --- a/install-RAiSD-GSL.sh +++ b/install-RAiSD-GSL.sh @@ -1,11 +1,12 @@ -wget https://ftp.gnu.org/gnu/gsl/gsl-latest.tar.gz +wget http://ftp.gnu.org/gnu/gsl/gsl-latest.tar.gz tar -xvzf gsl-latest.tar.gz curpath=$(pwd) mkdir gsl -cd gsl-2.6 +cd gsl-* ./configure --prefix=$curpath/gsl && make && make install cd .. rm Makefile cp makefiles/Makefile.GSL Makefile make clean make +cd source && ln -s ../gsl/include/gsl/ .