1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-12 20:27:06 +01:00

Convenience multi-compiler build with out of source compile

This commit is contained in:
Peter Boyle
2015-05-15 12:21:10 +01:00
parent 0b4d3544b9
commit 022c12b8e4
4 changed files with 58 additions and 8 deletions

11
build-all Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
DIRS="build-clang-avx build-clang-avx-openmp build-clang-avx-openmp-mpi build-clang-avx-mpi build-icpc-avx512 build-icpc-avx "
for D in $DIRS
do
echo $D
mkdir -p $D
cd $D
make clean all -j 8
cd ..
done