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 " e.g. --make-option=\"-f makefile.shared\""
|
||||||
echo " This is an option that will always be passed as parameter to make."
|
echo " This is an option that will always be passed as parameter to make."
|
||||||
echo
|
echo
|
||||||
|
echo "Godmode:"
|
||||||
|
echo
|
||||||
|
echo " --all Choose all architectures and gcc and clang as compilers"
|
||||||
|
echo
|
||||||
echo " --help This message"
|
echo " --help This message"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
@ -105,6 +109,10 @@ do
|
|||||||
--make-option=*)
|
--make-option=*)
|
||||||
MAKE_OPTIONS="$MAKE_OPTIONS ${1#*=}"
|
MAKE_OPTIONS="$MAKE_OPTIONS ${1#*=}"
|
||||||
;;
|
;;
|
||||||
|
--all)
|
||||||
|
COMPILERS="gcc clang"
|
||||||
|
ARCHFLAGS="-m64 -m32 -mx32"
|
||||||
|
;;
|
||||||
--help)
|
--help)
|
||||||
_help
|
_help
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user