mirror of
				https://github.com/aportelli/LatAnalyze.git
				synced 2025-10-31 14:54:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			474 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			474 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| if (( $# != 1 )); then
 | |
|   echo "usage: `basename $0` <prefix>" 1>&2
 | |
|   exit 1
 | |
| fi
 | |
| PREFIX=$1
 | |
| 
 | |
| set -ex
 | |
| INITDIR=$(pwd -P)
 | |
| mkdir -p ${PREFIX}
 | |
| cd ${PREFIX}
 | |
| PREFIX=$(pwd -P)
 | |
| cd ${INITDIR}
 | |
| ./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
 |