public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] boost: Fix RPATH issue on i686.
@ 2016-11-28 12:18 Stefan Schantl
  2016-11-28 15:57 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2016-11-28 12:18 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2625 bytes --]

Fixes #11018.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 boost/boost.nm                             |  2 +-
 boost/patches/boost-1.60.0-no-rpath.patch0 | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+), 1 deletion(-)
 create mode 100644 boost/patches/boost-1.60.0-no-rpath.patch0

diff --git a/boost/boost.nm b/boost/boost.nm
index 0a6af33..1e6038c 100644
--- a/boost/boost.nm
+++ b/boost/boost.nm
@@ -8,7 +8,7 @@ ver_major  = 1
 ver_minor  = 60
 ver_plevel = 0
 version    = %{ver_major}.%{ver_minor}.%{ver_plevel}
-release    = 1
+release    = 2
 
 groups     = System/Libraries
 url        = http://www.boost.org/
diff --git a/boost/patches/boost-1.60.0-no-rpath.patch0 b/boost/patches/boost-1.60.0-no-rpath.patch0
new file mode 100644
index 0000000..eed65c2
--- /dev/null
+++ b/boost/patches/boost-1.60.0-no-rpath.patch0
@@ -0,0 +1,21 @@
+diff -up tools/build/src/tools/gcc.jam.rpath tools/build/src/tools/gcc.jam
+--- tools/build/src/tools/gcc.jam.rpath	2016-05-27 13:30:01.092192721 -0500
++++ tools/build/src/tools/gcc.jam	2016-05-27 13:30:46.686987585 -0500
+@@ -952,7 +952,7 @@ rule link ( targets * : sources * : prop
+ 
+ actions link bind LIBRARIES
+ {
+-    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" -Wl,$(RPATH_OPTION:E=-R)$(SPACE)-Wl,$(RPATH) -Wl,-rpath-link$(SPACE)-Wl,"$(RPATH_LINK)" -o "$(<)" $(START-GROUP) "$(>)" "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-SA-PFX) -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
++    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" -o "$(<)" $(START-GROUP) "$(>)" "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-SA-PFX) -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
+ }
+ 
+ 
+@@ -1018,7 +1018,7 @@ rule link.dll ( targets * : sources * :
+ # Differs from 'link' above only by -shared.
+ actions link.dll bind LIBRARIES
+ {
+-    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" -Wl,$(RPATH_OPTION:E=-R)$(SPACE)-Wl,$(RPATH) "$(.IMPLIB-COMMAND)$(<[1])" -o "$(<[-1])" $(HAVE_SONAME)-Wl,$(SONAME_OPTION)$(SPACE)-Wl,$(<[-1]:D=) -shared $(START-GROUP) "$(>)" "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-SA-PFX) -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
++    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" "$(.IMPLIB-COMMAND)$(<[1])" -o "$(<[-1])" $(HAVE_SONAME)-Wl,$(SONAME_OPTION)$(SPACE)-Wl,$(<[-1]:D=) -shared $(START-GROUP) "$(>)" "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-SA-PFX) -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
+ }
+ 
+ rule setup-threading ( targets * : sources * : properties * )
-- 
2.7.4


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] boost: Fix RPATH issue on i686.
  2016-11-28 12:18 [PATCH] boost: Fix RPATH issue on i686 Stefan Schantl
@ 2016-11-28 15:57 ` Michael Tremer
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2016-11-28 15:57 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2892 bytes --]

I suppose this was sent with an incorrect bug id.

On Mon, 2016-11-28 at 13:18 +0100, Stefan Schantl wrote:
> Fixes #11018.
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>  boost/boost.nm                             |  2 +-
>  boost/patches/boost-1.60.0-no-rpath.patch0 | 21 +++++++++++++++++++++
>  2 files changed, 22 insertions(+), 1 deletion(-)
>  create mode 100644 boost/patches/boost-1.60.0-no-rpath.patch0
> 
> diff --git a/boost/boost.nm b/boost/boost.nm
> index 0a6af33..1e6038c 100644
> --- a/boost/boost.nm
> +++ b/boost/boost.nm
> @@ -8,7 +8,7 @@ ver_major  = 1
>  ver_minor  = 60
>  ver_plevel = 0
>  version    = %{ver_major}.%{ver_minor}.%{ver_plevel}
> -release    = 1
> +release    = 2
>  
>  groups     = System/Libraries
>  url        = http://www.boost.org/
> diff --git a/boost/patches/boost-1.60.0-no-rpath.patch0 b/boost/patches/boost-
> 1.60.0-no-rpath.patch0
> new file mode 100644
> index 0000000..eed65c2
> --- /dev/null
> +++ b/boost/patches/boost-1.60.0-no-rpath.patch0
> @@ -0,0 +1,21 @@
> +diff -up tools/build/src/tools/gcc.jam.rpath tools/build/src/tools/gcc.jam
> +--- tools/build/src/tools/gcc.jam.rpath	2016-05-27 13:30:01.092192721
> -0500
> ++++ tools/build/src/tools/gcc.jam	2016-05-27 13:30:46.686987585 -0500
> +@@ -952,7 +952,7 @@ rule link ( targets * : sources * : prop
> + 
> + actions link bind LIBRARIES
> + {
> +-    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" -Wl,$(RPATH_OPTION:E=-R)$(SPACE)-
> Wl,$(RPATH) -Wl,-rpath-link$(SPACE)-Wl,"$(RPATH_LINK)" -o "$(<)" $(START-
> GROUP) "$(>)" "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-
> SA-PFX) -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
> ++    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" -o "$(<)" $(START-GROUP) "$(>)"
> "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-SA-PFX)
> -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
> + }
> + 
> + 
> +@@ -1018,7 +1018,7 @@ rule link.dll ( targets * : sources * :
> + # Differs from 'link' above only by -shared.
> + actions link.dll bind LIBRARIES
> + {
> +-    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" -Wl,$(RPATH_OPTION:E=-R)$(SPACE)-
> Wl,$(RPATH) "$(.IMPLIB-COMMAND)$(<[1])" -o "$(<[-1])" $(HAVE_SONAME)-
> Wl,$(SONAME_OPTION)$(SPACE)-Wl,$(<[-1]:D=) -shared $(START-GROUP) "$(>)"
> "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST) $(FINDLIBS-SA-PFX)
> -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
> ++    "$(CONFIG_COMMAND)" -L"$(LINKPATH)" "$(.IMPLIB-COMMAND)$(<[1])" -o
> "$(<[-1])" $(HAVE_SONAME)-Wl,$(SONAME_OPTION)$(SPACE)-Wl,$(<[-1]:D=) -shared
> $(START-GROUP) "$(>)" "$(LIBRARIES)" $(FINDLIBS-ST-PFX) -l$(FINDLIBS-ST)
> $(FINDLIBS-SA-PFX) -l$(FINDLIBS-SA) $(END-GROUP) $(OPTIONS) $(USER_OPTIONS)
> + }
> + 
> + rule setup-threading ( targets * : sources * : properties * )

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-11-28 15:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-28 12:18 [PATCH] boost: Fix RPATH issue on i686 Stefan Schantl
2016-11-28 15:57 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox