add --all to testme.sh

This commit is contained in:
Steffen Jaeckel 2015-12-05 13:09:43 +01:00
parent 2e3ed19c3d
commit c40eed57d9
1 changed files with 8 additions and 0 deletions

View File

@ -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
}
@ -105,6 +109,10 @@ do
--make-option=*)
MAKE_OPTIONS="$MAKE_OPTIONS ${1#*=}"
;;
--all)
COMPILERS="gcc clang"
ARCHFLAGS="-m64 -m32 -mx32"
;;
--help)
_help
;;