bugfixes, to build benchmarks with mingw on Windows OS

This commit is contained in:
Werner Saar
2015-05-29 12:56:22 +02:00
parent f38cb67ca8
commit 02c7766f68
4 changed files with 136 additions and 1 deletions

9
benchmark/Make_exe.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
for f in *.goto *.acml *.mkl *.atlas
do
if [ -f "$f" ]; then
mv $f `echo $f|tr '.' '_'`.exe
fi
done