public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo commit in src/patchsets/binutils/2.22: 40_all_binutils-2.22-s390x-PIC.patch README.history
@ 2011-12-05  6:07 Mike Frysinger (vapier)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2011-12-05  6:07 UTC (permalink / raw
  To: gentoo-commits

vapier      11/12/05 06:07:21

  Modified:             README.history
  Added:                40_all_binutils-2.22-s390x-PIC.patch
  Log:
  build libiberty with -fPIC for s390x systems #391431

Revision  Changes    Path
1.3                  src/patchsets/binutils/2.22/README.history

file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/README.history?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/README.history?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/README.history?r1=1.2&r2=1.3

Index: README.history
===================================================================
RCS file: /var/cvsroot/gentoo/src/patchsets/binutils/2.22/README.history,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.history	3 Dec 2011 01:45:08 -0000	1.2
+++ README.history	5 Dec 2011 06:07:21 -0000	1.3
@@ -1,5 +1,6 @@
 1.1		[pending]
 	+ 10_all_binutils-2.22-ppc-textrels.patch
+	+ 30_all_binutils-2.22-flexible-tests.patch
 
 1.0		21 Nov 2011
 	+ 03_all_binutils-2.15.92.0.2-ppc64-pie.patch



1.1                  src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch?rev=1.1&content-type=text/plain

Index: 40_all_binutils-2.22-s390x-PIC.patch
===================================================================
https://bugs.gentoo.org/391431
http://sourceware.org/ml/binutils/2011-07/msg00197.html

building libiberty on s390x results in truncation errors while linking

--- a/libiberty/configure
+++ b/libiberty/configure
@@ -4891,6 +4891,9 @@
     m68k-*-*)
 	PICFLAG=-fpic
 	;;
+    s390x*-*-*)
+	PICFLAG=-fpic
+	;;
     s390*-*-*)
 	PICFLAG=-fpic
 	;;






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

* [gentoo-commits] gentoo commit in src/patchsets/binutils/2.22: 40_all_binutils-2.22-s390x-PIC.patch README.history
@ 2012-08-10  4:27 Mike Frysinger (vapier)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2012-08-10  4:27 UTC (permalink / raw
  To: gentoo-commits

vapier      12/08/10 04:27:38

  Modified:             40_all_binutils-2.22-s390x-PIC.patch README.history
  Log:
  meant to use -fPIC, not -fpic, for s390x #430554 by Raúl Porcel

Revision  Changes    Path
1.2                  src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch?r1=1.1&r2=1.2

Index: 40_all_binutils-2.22-s390x-PIC.patch
===================================================================
RCS file: /var/cvsroot/gentoo/src/patchsets/binutils/2.22/40_all_binutils-2.22-s390x-PIC.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 40_all_binutils-2.22-s390x-PIC.patch	5 Dec 2011 06:07:21 -0000	1.1
+++ 40_all_binutils-2.22-s390x-PIC.patch	10 Aug 2012 04:27:38 -0000	1.2
@@ -10,7 +10,7 @@
  	PICFLAG=-fpic
  	;;
 +    s390x*-*-*)
-+	PICFLAG=-fpic
++	PICFLAG=-fPIC
 +	;;
      s390*-*-*)
  	PICFLAG=-fpic



1.8                  src/patchsets/binutils/2.22/README.history

file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/README.history?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/README.history?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.22/README.history?r1=1.7&r2=1.8

Index: README.history
===================================================================
RCS file: /var/cvsroot/gentoo/src/patchsets/binutils/2.22/README.history,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- README.history	15 Jun 2012 15:00:35 -0000	1.7
+++ README.history	10 Aug 2012 04:27:38 -0000	1.8
@@ -1,3 +1,6 @@
+1.5		10 Aug 2012
+	U 40_all_binutils-2.22-s390x-PIC.patch
+
 1.4		15 Jun 2012
 	- 95_all_binutils_2.22-fbsd.patch
 	+ 96_all_binutils_2.22-fbsd.patch





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

end of thread, other threads:[~2012-08-10  4:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-10  4:27 [gentoo-commits] gentoo commit in src/patchsets/binutils/2.22: 40_all_binutils-2.22-s390x-PIC.patch README.history Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-05  6:07 Mike Frysinger (vapier)

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