4th: build with -fPIC when shared library build is enabled
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thu, 7 Jul 2016 08:03:34 +0000 (10:03 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thu, 7 Jul 2016 08:03:34 +0000 (10:03 +0200)
Fixes:

  http://autobuild.buildroot.net/results/1e288dabbdd0c5131c18e1426ed6ceedce046b9c/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/4th/4th.mk

index d920eb0fa2ea5fea0ffcaf17dcf1cf6387f0fb91..071c2d4df25750a6c6abafbe8c070baf21c82323 100644 (file)
 4TH_DEPENDENCIES = host-4th
 4TH_INSTALL_STAGING = YES
 
+4TH_CFLAGS = $(TARGET_CFLAGS) -DUNIX -fsigned-char
+
 ifeq ($(BR2_STATIC_LIBS),y)
 4TH_MAKE_ENV = STATIC=1
 else
 4TH_MAKE_ENV = SHARED=1
+4TH_CFLAGS += -fPIC
 endif
 
 define 4TH_BUILD_CMDS
        $(4TH_MAKE_ENV) $(MAKE) -C $(@D)/sources all \
                CROSS="$(TARGET_CROSS)" \
-               CFLAGS="$(TARGET_CFLAGS) -DUNIX -fsigned-char" \
+               CFLAGS="$(4TH_CFLAGS)" \
                FOURTH=$(HOST_DIR)/usr/bin/4th
 endef