mk: fix bsd module build
authorSergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
Thu, 30 Oct 2014 16:58:54 +0000 (16:58 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 5 Nov 2014 21:18:31 +0000 (22:18 +0100)
When building shared libs (for both GCC and CLANG targets), -fPIC flag
has been added to CFLAGS and leaks to BSD module build system causing
the following error:

fatal error: error in backend: Cannot select: 0x802ad8010: i64 = X86ISD::WrapperRIP 0x802ade110
      [ID=13]
  0x802ade110: i64 = TargetGlobalAddress<i8** @__stack_chk_guard> 0 [TF=5] [ID=10]

Reset CFLAGS to MODULE_CFLAGS before building BSD module.

Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
mk/rte.bsdmodule.mk

index 247ea2c..86b92ff 100644 (file)
@@ -47,6 +47,7 @@ include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
 
 # DPDK uses a more up-to-date gcc, so clear the override here.
 unexport CC
+override CFLAGS = $(MODULE_CFLAGS)
 
 # VPATH contains at least SRCDIR
 VPATH += $(SRCDIR)