mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/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
|