mk: fix static linkage of mlx dependency
When building a target application with static linking mode via makefiles and enable linking to ibverbs libs by setting "CONFIG_RTE_IBVERBS_LINK_STATIC=y". The libibverbs.pc will be chosen and all the libs listed in the file will be linked by default. Some static lib archives may contain the same files and common interfaces inside. The "--no-whole-archive" needs to be enabled for the linker to discard the useless symbols and resolve the symbols redefinition error. Fixes: 2c0dd7b69fb0 ("config: add static linkage of mlx dependency") Cc: stable@dpdk.org Signed-off-by: Bing Zhao <bingz@mellanox.com> Acked-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
parent
838d94399b
commit
c093e28f49
@ -209,7 +209,9 @@ ifeq ($(CONFIG_RTE_IBVERBS_LINK_DLOPEN),y)
|
||||
_LDLIBS-y += -ldl
|
||||
else ifeq ($(CONFIG_RTE_IBVERBS_LINK_STATIC),y)
|
||||
LIBS_IBVERBS_STATIC = $(shell $(RTE_SDK)/buildtools/options-ibverbs-static.sh)
|
||||
_LDLIBS-y += --no-whole-archive
|
||||
_LDLIBS-y += $(LIBS_IBVERBS_STATIC)
|
||||
_LDLIBS-y += --whole-archive
|
||||
else
|
||||
ifeq ($(findstring y,$(CONFIG_RTE_LIBRTE_MLX5_PMD)$(CONFIG_RTE_LIBRTE_MLX5_VDPA_PMD)),y)
|
||||
_LDLIBS-y += -libverbs -lmlx5
|
||||
|
Loading…
x
Reference in New Issue
Block a user