From: Nelio Laranjeiro Date: Fri, 31 Jul 2015 13:14:17 +0000 (+0200) Subject: mk: set library dependencies in shared object file X-Git-Tag: spdx-start~8587 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=bef06a8a0655a2d5b2d0e30bb46b3a64b1f13881;p=dpdk.git mk: set library dependencies in shared object file Some .so libraries needs to be linked with external libraries. For that the LDLIBS and EXTRA_LDFLAGS variables should be present on the link line when those .so files are created. PMD Makefile is responsible for filling the LDLIBS variable with the link to the external library it needs. Signed-off-by: Nelio Laranjeiro Acked-by: Olivier Matz --- diff --git a/mk/rte.lib.mk b/mk/rte.lib.mk index 9ff5cce183..fcc8e20f85 100644 --- a/mk/rte.lib.mk +++ b/mk/rte.lib.mk @@ -81,7 +81,8 @@ O_TO_A_DO = @set -e; \ $(O_TO_A) && \ echo $(O_TO_A_CMD) > $(call exe2cmd,$(@)) -O_TO_S = $(LD) $(_CPU_LDFLAGS) -shared $(OBJS-y) -Wl,-soname,$(LIB) -o $(LIB) +O_TO_S = $(LD) $(_CPU_LDFLAGS) $(EXTRA_LDFLAGS) $(LDLIBS) -shared $(OBJS-y) \ + -Wl,-soname,$(LIB) -o $(LIB) O_TO_S_STR = $(subst ','\'',$(O_TO_S)) #'# fix syntax highlight O_TO_S_DISP = $(if $(V),"$(O_TO_S_STR)"," LD $(@)") O_TO_S_DO = @set -e; \