Skip to content

Commit

Permalink
Enable installation of static libraries in container
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Mar 27, 2024
1 parent 52406e9 commit 9c9e698
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions maintainer/pineappl-ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rm -r /usr/local/cargo/registry
( curl "https://lhapdf.hepforge.org/downloads/?f=LHAPDF-${LHAPDF_V}.tar.gz" || \
curl "https://web.archive.org/web/20211018095814/https://lhapdf.hepforge.org/downloads/?f=LHAPDF-6.4.0.tar.gz" ) | tar xzf -
cd LHAPDF-${LHAPDF_V}
./configure --disable-python --disable-static
./configure --disable-python
make -j
make install
ldconfig
Expand All @@ -45,7 +45,7 @@ done
# install APPLgrid
curl "https://applgrid.hepforge.org/downloads?f=applgrid-${APPLGRID_V}.tgz" | tar xzf -
cd applgrid-${APPLGRID_V}
./configure --disable-static --without-root
./configure --without-root
make -j
make install
ldconfig
Expand All @@ -57,7 +57,7 @@ cd ..
# install fastNLO
curl "https://fastnlo.hepforge.org/code/v25/fastnlo_toolkit-${FASTNLO_V}.tar.gz" | tar xzf -
cd fastnlo_toolkit-${FASTNLO_V}
./configure --disable-static --prefix=/usr/local/
./configure --prefix=/usr/local/
make -j
make install
ldconfig
Expand Down

0 comments on commit 9c9e698

Please sign in to comment.