This new option [1] has been added to remove checks [2][3] that only a DPDK developer cares about.
1: https://git.dpdk.org/dpdk/commit/?id=bc4617433845 2: https://git.dpdk.org/dpdk/commit/?id=d317f7ebd484 3: https://git.dpdk.org/dpdk/commit/?id=720dfda4551e Signed-off-by: David Marchand <[email protected]> --- .ci/linux-build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index c8621201ab..db06b2cf99 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -147,6 +147,10 @@ function install_dpdk() # Disable building DPDK unit tests. Not needed for OVS build or tests. DPDK_OPTS="$DPDK_OPTS -Dtests=false" + # Disable DPDK developer mode, this results in less build checks and less + # meson verbose outputs. + DPDK_OPTS="$DPDK_OPTS -Ddeveloper_mode=disabled" + # Install DPDK using prefix. DPDK_OPTS="$DPDK_OPTS --prefix=$(pwd)/build" -- 2.23.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
