From: Gage Eads Date: Mon, 31 Jul 2017 21:49:51 +0000 (-0500) Subject: mk: use extra cflags when linking libs with compiler X-Git-Tag: spdx-start~2270 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=ec57ed08c992bf61d7a90fedf807dc38a511383d;p=dpdk.git mk: use extra cflags when linking libs with compiler When using the compiler to link libraries, include EXTRA_CFLAGS. This is needed when cross-compiling to pass --sysroot, for example. GCC cross-compilers built with Yocto don't use the --with-sysroot option, making it necessary to pass the --sysroot command-line option. This is the same solution as in commit e8fbb6d9cfd9 ("mk: use extra cflags when linking with compiler"), but applied to libs instead of apps. Signed-off-by: Gage Eads --- diff --git a/mk/rte.lib.mk b/mk/rte.lib.mk index bc2f2fbeb0..13115d146e 100644 --- a/mk/rte.lib.mk +++ b/mk/rte.lib.mk @@ -77,7 +77,7 @@ exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1)))) ifeq ($(LINK_USING_CC),1) # Override the definition of LD here, since we're linking with CC -LD := $(CC) $(CPU_CFLAGS) +LD := $(CC) $(CPU_CFLAGS) $(EXTRA_CFLAGS) _CPU_LDFLAGS := $(call linkerprefix,$(CPU_LDFLAGS)) override EXTRA_LDFLAGS := $(call linkerprefix,$(EXTRA_LDFLAGS)) else