Skip to content

Commit

Permalink
pcre: pass -fPIC under host as well
Browse files Browse the repository at this point in the history
static libraries need them as they are not PIC by default.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
  • Loading branch information
neheb authored and hauke committed Apr 16, 2022
1 parent 56cd49b commit fc60b97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package/libs/pcre/Makefile
Expand Up @@ -67,9 +67,8 @@ HOST_CONFIGURE_ARGS += \
--enable-unicode-properties \
--enable-pcre16 \
--with-match-limit-recursion=16000 \
--enable-cpp

TARGET_CFLAGS += $(FPIC)
--enable-cpp \
--with-pic

CONFIGURE_ARGS += \
--enable-utf8 \
Expand All @@ -78,7 +77,8 @@ CONFIGURE_ARGS += \
--enable-pcre32 \
$(if $(CONFIG_PCRE_JIT_ENABLED),--enable-jit,--disable-jit) \
--with-match-limit-recursion=16000 \
--$(if $(CONFIG_PACKAGE_libpcrecpp),en,dis)able-cpp
--$(if $(CONFIG_PACKAGE_libpcrecpp),en,dis)able-cpp \
--with-pic

MAKE_FLAGS += \
CFLAGS="$(TARGET_CFLAGS)"
Expand Down

0 comments on commit fc60b97

Please sign in to comment.