From fc319cdad90d24caa3b402cb91f03e0217731eef Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Fri, 30 Jun 2023 15:08:52 +0200 Subject: [PATCH] build: Update cross instruction and drop verbose test flag Signed-off-by: Daniel Wagner --- scripts/build.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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}" } -- 2.50.1