ci: update Meson option for generic build

The way we're building DPDK in CI, with -Dmachine=default, has not been
updated when the option got replaced to preserve a backwards-complatible
build call to facilitate ABI verification between DPDK versions. Update
the call to use -Dplatform=generic, which is the most up to date way to
execute the same build which is now present in all DPDK versions the ABI
check verifies.

Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
Acked-by: Aaron Conole <aconole@redhat.com>
This commit is contained in:
Juraj Linkeš 2021-10-11 15:40:41 +02:00 committed by Thomas Monjalon
parent 6de430b707
commit 59e5e8abab

View File

@ -77,7 +77,7 @@ else
OPTS="$OPTS -Dexamples=all"
fi
OPTS="$OPTS -Dmachine=default"
OPTS="$OPTS -Dplatform=generic"
OPTS="$OPTS --default-library=$DEF_LIB"
OPTS="$OPTS --buildtype=debugoptimized"
OPTS="$OPTS -Dcheck_includes=true"