mk: fix link examples to combined library
RTE_LIBNAME was defined only if BUILDING_RTE_SDK. So external applications like examples were trying to link with -l without any library name. This bug appeared after fixing link to combined library (removing link to separate libraries). Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
0731b5e07c
commit
f113d41051
@ -71,10 +71,11 @@ ifneq ($(BUILDING_RTE_SDK),)
|
||||
ifeq ($(RTE_BUILD_COMBINE_LIBS),)
|
||||
RTE_BUILD_COMBINE_LIBS := n
|
||||
endif
|
||||
RTE_LIBNAME := $(CONFIG_RTE_LIBNAME:"%"=%)
|
||||
ifeq ($(RTE_LIBNAME),)
|
||||
RTE_LIBNAME := intel_dpdk
|
||||
endif
|
||||
endif
|
||||
|
||||
RTE_LIBNAME := $(CONFIG_RTE_LIBNAME:"%"=%)
|
||||
ifeq ($(RTE_LIBNAME),)
|
||||
RTE_LIBNAME := intel_dpdk
|
||||
endif
|
||||
|
||||
# RTE_TARGET is deducted from config when we are building the SDK.
|
||||
|
Loading…
Reference in New Issue
Block a user