mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
11 lines
180 B
Plaintext
11 lines
180 B
Plaintext
|
#!/bin/bash
|
||
|
DIRS="g++-avx-openmp g++-avx clang-xc30 clang-xc30-openmp"
|
||
|
|
||
|
for D in $DIRS
|
||
|
do
|
||
|
mkdir -p builds/$D
|
||
|
cd builds/$D
|
||
|
../../scripts/configure-commands $D
|
||
|
cd ../..
|
||
|
done
|