From: Bruce Richardson Date: Fri, 8 Jun 2018 10:35:12 +0000 (+0100) Subject: devtools: fix ARM builds test with meson X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=03843d4df3e8007879633892f7ec1c84339ae478;p=dpdk.git devtools: fix ARM builds test with meson For cross-builds the CC environmental variable only applies for compiling native binaries i.e. pmdinfogen, so setting it to a cross-build compiler will only cause problems. Leave the value unset in the script to use the platform-default compiler. Fixes: a55277a788df ("devtools: add test script for meson builds") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson Acked-by: Thomas Monjalon --- diff --git a/devtools/test-meson-builds.sh b/devtools/test-meson-builds.sh index 9868c325b0..f2ad05f32c 100755 --- a/devtools/test-meson-builds.sh +++ b/devtools/test-meson-builds.sh @@ -41,6 +41,5 @@ for f in config/arm/arm*gcc ; do if ! command -v $c >/dev/null 2>&1 ; then continue fi - export CC="ccache $c" build build-$(basename $f | tr '_' '-' | cut -d'-' -f-2) --cross-file $f done