From: Francois Perrad Date: Fri, 29 Sep 2017 16:59:06 +0000 (+0200) Subject: lbase64: compile with -fPIC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=28be052f6dc280ab8469d543af23e76016afc6bd;p=buildroot.git lbase64: compile with -fPIC Some architectures (e.g. x86_64, MIPS, microblaze, or1k) require to build with -fPIC to build a shared library, but the lbase64 build system doesn't add it. Therefore, we add it in CFLAGS. Fixes: http://autobuild.buildroot.net/results/b56/b567096cbfdb89b1895924051265c56204ffb512/ Signed-off-by: Francois Perrad [Arnout: write commit log] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/package/lbase64/lbase64.mk b/package/lbase64/lbase64.mk index fd78a6ccd4..0225fc67c7 100644 --- a/package/lbase64/lbase64.mk +++ b/package/lbase64/lbase64.mk @@ -12,7 +12,8 @@ LBASE64_LICENSE_FILES = README LBASE64_DEPENDENCIES = luainterpreter define LBASE64_BUILD_CMDS - $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) so + $(MAKE1) $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -fPIC" -C $(@D) so endef define LBASE64_INSTALL_TARGET_CMDS