add --all to testme.sh
This commit is contained in:
parent
2e3ed19c3d
commit
c40eed57d9
@ -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
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user