Signed-off-by: Daniel Wagner <dwagner@suse.de>
echo " -b [release]|debug build type"
echo " -c [gcc]|clang compiler to use"
echo " -m [meson]|muon use meson or muon"
- echo " -t [arm]|ppc64le|s390x cross compile target"
+ echo " -t [armhf]|ppc64le|s390x cross compile target"
echo ""
echo "configs with meson:"
echo " [default] default settings"
BUILDTOOL=meson
MESON=meson
BUILDTYPE=release
-CROSS_TARGET=arm
+CROSS_TARGET=armhf
CC=${CC:-"gcc"}
while getopts "b:c:m:t:" o; do
test_meson() {
"${MESON}" test \
- --verbose \
-C "${BUILDDIR}"
}