]> www.infradead.org Git - users/sagi/libnvme.git/commitdiff
build: Update cross instruction and drop verbose test flag
authorDaniel Wagner <dwagner@suse.de>
Fri, 30 Jun 2023 13:08:52 +0000 (15:08 +0200)
committerDaniel Wagner <wagi@monom.org>
Fri, 30 Jun 2023 13:15:33 +0000 (15:15 +0200)
Signed-off-by: Daniel Wagner <dwagner@suse.de>
scripts/build.sh

index 851fcbdf023315125a4aa334a0920e02811c1661..82d271bf927adea8199da6402d1f456626938c54 100755 (executable)
@@ -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}"
 }