1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/ci-scripts/install-latan.sh

23 lines
474 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-04-26 17:36:44 +01:00
if (( $# != 1 )); then
echo "usage: `basename $0` <prefix>" 1>&2
exit 1
fi
2016-04-11 19:16:38 +01:00
PREFIX=$1
set -ex
2020-01-10 14:15:40 +00:00
INITDIR=$(pwd -P)
2020-01-11 20:16:56 +00:00
mkdir -p ${PREFIX}
2020-01-10 14:15:40 +00:00
cd ${PREFIX}
PREFIX=$(pwd -P)
cd ${INITDIR}
2016-04-11 19:16:38 +01:00
./install-deps.sh ${PREFIX}
cd ..
./bootstrap.sh
mkdir -p build
cd build
../configure --prefix=${PREFIX} --with-minuit=${PREFIX} --with-nlopt=${PREFIX} --with-hdf5=${PREFIX} --with-gsl=${PREFIX} CXXFLAGS="${CXXFLAGS} -O3 -march=haswell -mtune=haswell"
make -j4
make install