mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
19 lines
387 B
Bash
Executable File
19 lines
387 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if (( $# != 1 )); then
|
|
echo "usage: `basename $0` <prefix>" 1>&2
|
|
exit 1
|
|
fi
|
|
PREFIX=$1
|
|
OS=$2
|
|
|
|
set -ex
|
|
./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=native -mtune=native"
|
|
make -j4
|
|
make install
|