edfa2fddf8
vpp_uses_dpdk is set to "no" in build-data/platforms/vpp.mk causing the build to fail. This patch addresses that issue. Change-Id: Icc1aaa508e730c9b8715119e1259e4c82f974048 Signed-off-by: Marco Varlese <marco.varlese@suse.com>
36 lines
852 B
Makefile
36 lines
852 B
Makefile
vpp_source = src
|
|
|
|
ifeq ($($(PLATFORM)_dpdk_shared_lib),yes)
|
|
vpp_configure_args = --enable-dpdk-shared
|
|
else
|
|
vpp_configure_args =
|
|
endif
|
|
|
|
# Platform dependent configure flags
|
|
vpp_configure_args += $(vpp_configure_args_$(PLATFORM))
|
|
|
|
|
|
vpp_CPPFLAGS =
|
|
vpp_LDFLAGS =
|
|
|
|
ifneq ($($(PLATFORM)_uses_dpdk),no)
|
|
ifeq ($($(PLATFORM)_uses_external_dpdk),yes)
|
|
vpp_CPPFLAGS += -I$($(PLATFORM)_dpdk_inc_dir)
|
|
vpp_LDFLAGS += -L$($(PLATFORM)_dpdk_lib_dir)
|
|
else
|
|
vpp_configure_depend += dpdk-install
|
|
vpp_CPPFLAGS += $(call installed_includes_fn, dpdk)/dpdk
|
|
vpp_LDFLAGS += $(call installed_libs_fn, dpdk)
|
|
vpp_CPPFLAGS += -I/usr/include/dpdk
|
|
endif
|
|
ifeq ($($(PLATFORM)_uses_dpdk_mlx5_pmd),yes)
|
|
vpp_configure_args += --with-dpdk-mlx5-pmd
|
|
endif
|
|
else
|
|
vpp_configure_args += --disable-dpdk-plugin
|
|
endif
|
|
|
|
ifeq ($($(PLATFORM)_enable_tests),yes)
|
|
vpp_configure_args += --enable-tests
|
|
endif
|