Skip to content

Commit

Permalink
Fixed build.sh for C11
Browse files Browse the repository at this point in the history
  • Loading branch information
Mk-Chan committed Jul 3, 2017
1 parent 9e98b05 commit 322b028
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ for T in "${TARGETS[@]}"
do
if [ "$T" = "win64" ]
then
CXX=x86_64-w64-mingw32-g++
CC=x86_64-w64-mingw32-gcc
else
CXX=g++
CC=gcc
fi
make clean
make CXX="$CXX" RELEASE=$1 TARGET="$T" $2
make CC="$CC" RELEASE=$1 TARGET="$T" $2
make clean
make popcnt CXX="$CXX" RELEASE=$1 TARGET="$T" $2
make popcnt CC="$CC" RELEASE=$1 TARGET="$T" $2
make clean
make bmi CXX="$CXX" RELEASE=$1 TARGET="$T" $2
make bmi CC="$CC" RELEASE=$1 TARGET="$T" $2
done

make clean
Expand Down

0 comments on commit 322b028

Please sign in to comment.