]> git.droids-corp.org - dpdk.git/blobdiff - devtools/test-meson-builds.sh
devtools: support older compilers with meson test
[dpdk.git] / devtools / test-meson-builds.sh
index 9a67cfa64383bc76c95d9428d9e89a6af7979349..c7bde2fb79679591438a42590870755edcb47e09 100755 (executable)
@@ -62,7 +62,12 @@ for c in gcc clang ; do
 done
 
 # test compilation with minimal x86 instruction set
-build build-x86-default -Dmachine=nehalem $use_shared
+default_machine='nehalem'
+ok=$(cc -march=$default_machine -E - < /dev/null > /dev/null 2>&1 || echo false)
+if [ "$ok" = "false" ] ; then
+       default_machine='corei7'
+fi
+build build-x86-default -Dmachine=$default_machine $use_shared
 
 # enable cross compilation if gcc cross-compiler is found
 c=aarch64-linux-gnu-gcc