From mboxrd@z Thu Jan 1 00:00:00 1970 From: Markos Chandras Date: Wed, 5 Jun 2013 15:02:36 +0100 Subject: [Buildroot] [PATCH] wvstreams: Build bundled argp library with -fPIC Message-ID: <1370440956-8000-1-git-send-email-markos.chandras@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net From: Markos Chandras Fixes linking problems on MIPS. Signed-off-by: Markos Chandras --- package/wvstreams/wvstreams-0006-argp-fpic.patch | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 package/wvstreams/wvstreams-0006-argp-fpic.patch diff --git a/package/wvstreams/wvstreams-0006-argp-fpic.patch b/package/wvstreams/wvstreams-0006-argp-fpic.patch new file mode 100644 index 0000000..b4cf1d2 --- /dev/null +++ b/package/wvstreams/wvstreams-0006-argp-fpic.patch @@ -0,0 +1,28 @@ +Build argp object files with -fPIC. + +The argp bundled dependency is linked to the libwvutils.so shared library. +MIPS will refuce to link a non-PIC library with a shared one. + +We fix this problem by building the argp source files using -fPIC since +the libargp static library will only be used to link to libwvutils.so +as instructed by the following rule in the root Makefile: + +ifeq ($(USE_WVSTREAMS_ARGP),1) + utils/wvargs.o-CPPFLAGS += -Iargp + libwvutils.so-LIBS += -Largp -largp + +Signed-off-by: Markos Chandras + +Index: wvstreams-4.6.1/argp/Makefile.in +=================================================================== +--- wvstreams-4.6.1.orig/argp/Makefile.in ++++ wvstreams-4.6.1/argp/Makefile.in +@@ -137,7 +137,7 @@ AUTOMAKE = @AUTOMAKE@ + AWK = @AWK@ + CC = @CC@ + CCDEPMODE = @CCDEPMODE@ +-CFLAGS = @CFLAGS@ ++CFLAGS = @CFLAGS@ -fPIC + CPP = @CPP@ + CPPFLAGS = @CPPFLAGS@ + CYGPATH_W = @CYGPATH_W@ -- 1.8.2.1