1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00
Grid/bootstrap.sh

17 lines
575 B
Bash
Raw Normal View History

2017-05-25 14:27:49 +01:00
#!/usr/bin/env bash
2018-07-31 00:35:17 +01:00
EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.3.5.tar.bz2'
echo "-- deploying Eigen source..."
ARC=`basename ${EIGEN_URL}`
wget ${EIGEN_URL} --no-check-certificate && ./scripts/update_eigen.sh ${ARC} && rm ${ARC}
# patch for non-portable includes in Eigen 3.3.5
# apparently already fixed in Eigen HEAD so it should not be
# a problem in the future (A.P.)
patch Eigen/unsupported/Eigen/CXX11/Tensor scripts/eigen-3.3.5.Tensor.patch
2016-08-06 00:28:28 +01:00
echo '-- generating Make.inc files...'
./scripts/filelist
echo '-- generating configure script...'
2016-08-01 09:51:06 +01:00
autoreconf -fvi