1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00
Grid/scripts/build-all

12 lines
224 B
Plaintext
Raw Normal View History

#!/bin/bash
2015-05-16 06:40:10 +01:00
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
2015-05-16 06:40:10 +01:00
cd builds/$D
make clean all -j 8
2015-05-16 06:40:10 +01:00
cd ../../
done