Skip to content

Commit

Permalink
Merge pull request #45258 from tchaikov/wip-cmake-disable-dpdk-warnings
Browse files Browse the repository at this point in the history
cmake: pass RTE_DEVEL_BUILD=n when building dpdk

Reviewed-by: Ilya Dryomov <idryomov@redhat.com>
  • Loading branch information
tchaikov committed Mar 5, 2022
2 parents 361dca2 + 91a616b commit 6fe8e68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/modules/BuildDPDK.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function(do_build_dpdk dpdk_dir)
ExternalProject_Add(dpdk-ext
SOURCE_DIR ${dpdk_source_dir}
CONFIGURE_COMMAND ${make_cmd} config O=${dpdk_dir} T=${target}
BUILD_COMMAND ${make_cmd} O=${dpdk_dir} CC=${CMAKE_C_COMPILER} EXTRA_CFLAGS=${extra_cflags}
BUILD_COMMAND ${make_cmd} O=${dpdk_dir} CC=${CMAKE_C_COMPILER} EXTRA_CFLAGS=${extra_cflags} RTE_DEVEL_BUILD=n
BUILD_IN_SOURCE 1
INSTALL_COMMAND ""
LOG_CONFIGURE ON
Expand Down

0 comments on commit 6fe8e68

Please sign in to comment.