Skip to content

Commit

Permalink
add --all to testme.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaeckel committed Dec 5, 2015
1 parent 2e3ed19 commit c40eed5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions testme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ _help()
echo " e.g. --make-option=\"-f makefile.shared\""
echo " This is an option that will always be passed as parameter to make."
echo
echo "Godmode:"
echo
echo " --all Choose all architectures and gcc and clang as compilers"
echo
echo " --help This message"
exit 0
}
Expand Down Expand Up @@ -105,6 +109,10 @@ do
--make-option=*)
MAKE_OPTIONS="$MAKE_OPTIONS ${1#*=}"
;;
--all)
COMPILERS="gcc clang"
ARCHFLAGS="-m64 -m32 -mx32"
;;
--help)
_help
;;
Expand Down

0 comments on commit c40eed5

Please sign in to comment.