1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-15 14:17:04 +01:00

3 Commits
3.1.1 ... 3.1.2

Author SHA1 Message Date
f3959e14cc Readme update 2016-06-06 18:37:56 +01:00
558fe80bf9 Merge branch 'hotfix/3.1.2' 2016-06-06 18:36:17 +01:00
6f70c44d12 Build scripts: HDF5 link update 2016-06-06 18:22:30 +01:00
2 changed files with 5 additions and 1 deletions

View File

@ -55,6 +55,10 @@ in the `ci-scripts` directory where `<prefix>` is where you want LatAnalyze (and
For a more customised installation, one first needs to generate the build system by running `./bootstrap.sh` in the root directory. Then the library can be built and installed through the usual GNU mantra `./configure <options> && make && make install`. Use `./configure --help` to obtain a list of possible options for `./configure`. Because Eigen expressions rely a lot on inlining and compiler optimisations it is strongly recommended to set the `CXXFLAGS` variable to `-O3 -march=native -mtune=native`.
## History
#### v3.1.2
Fixes:
* HDF5 archive URL update in build scripts
#### v3.1.1
Fixes:
* Minuit precision fixed

View File

@ -11,7 +11,7 @@ PREFIX=$1
set -ex
INITDIR=`pwd`
cd local/build
wget http://www.hdfgroup.org/ftp/HDF5/current/src/${NAME}.tar.gz
wget http://www.hdfgroup.org/ftp/HDF5/releases/${NAME}/src/${NAME}.tar.gz
tar -xzvf ${NAME}.tar.gz
mkdir ${NAME}/build
cd ${NAME}/build