From: Daniel Wagner Date: Fri, 30 Jun 2023 13:08:52 +0000 (+0200) Subject: build: Update cross instruction and drop verbose test flag X-Git-Tag: v1.5~2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fc319cdad90d24caa3b402cb91f03e0217731eef;p=users%2Fsagi%2Flibnvme.git build: Update cross instruction and drop verbose test flag Signed-off-by: Daniel Wagner --- diff --git a/scripts/build.sh b/scripts/build.sh index 851fcbdf..82d271bf 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -11,7 +11,7 @@ usage() { 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" @@ -27,7 +27,7 @@ usage() { BUILDTOOL=meson MESON=meson BUILDTYPE=release -CROSS_TARGET=arm +CROSS_TARGET=armhf CC=${CC:-"gcc"} while getopts "b:c:m:t:" o; do @@ -102,7 +102,6 @@ build_meson() { test_meson() { "${MESON}" test \ - --verbose \ -C "${BUILDDIR}" }