public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.37.0-r1.ebuild ChangeLog boost-1.36.0-r1.ebuild boost-1.35.0-r5.ebuild
@ 2009-07-02  4:13 99% Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 1+ results
From: Ryan Hill (dirtyepic) @ 2009-07-02  4:13 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    09/07/02 04:13:12

  Modified:             boost-1.37.0-r1.ebuild ChangeLog
                        boost-1.36.0-r1.ebuild boost-1.35.0-r5.ebuild
  Log:
  Replace -fno-strict-aliasing workaround with -Wno-strict-aliasing, which
  does the job and avoids the performance hit. Also apply to 1.35 and 1.36.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  dev-libs/boost/boost-1.37.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.37.0-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.37.0-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.37.0-r1.ebuild?r1=1.8&r2=1.9

Index: boost-1.37.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.37.0-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- boost-1.37.0-r1.ebuild	15 Jun 2009 18:31:33 -0000	1.8
+++ boost-1.37.0-r1.ebuild	2 Jul 2009 04:13:11 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.37.0-r1.ebuild,v 1.8 2009/06/15 18:31:33 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.37.0-r1.ebuild,v 1.9 2009/07/02 04:13:11 dirtyepic Exp $
 
 EAPI="2"
 
@@ -117,8 +117,8 @@
 		compilerExecutable=$(tc-getCXX)
 	fi
 
-	# Temporary workaround for bug #252287
-	[[ $(gcc-version) == "4.4" ]] && append-flags -fno-strict-aliasing
+	# Huge number of strict-aliasing warnings cause a build failure w/ >= GCC 4.4 bug #252287
+	[[ $(gcc-version) > 4.3 ]] && append-flags -Wno-strict-aliasing
 
 	use mpi && mpi="using mpi ;"
 



1.163                dev-libs/boost/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.163&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.163&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.162&r2=1.163

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog	15 Jun 2009 18:31:33 -0000	1.162
+++ ChangeLog	2 Jul 2009 04:13:11 -0000	1.163
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/boost
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.162 2009/06/15 18:31:33 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.163 2009/07/02 04:13:11 dirtyepic Exp $
+
+  02 Jul 2009; Ryan Hill <dirtyepic@gentoo.org> boost-1.35.0-r5.ebuild,
+  boost-1.36.0-r1.ebuild, boost-1.37.0-r1.ebuild:
+  Replace -fno-strict-aliasing workaround with -Wno-strict-aliasing, which
+  does the job and avoids the performance hit. Also apply to 1.35 and 1.36.
 
   15 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org>
   boost-1.37.0-r1.ebuild:



1.6                  dev-libs/boost/boost-1.36.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.36.0-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.36.0-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.36.0-r1.ebuild?r1=1.5&r2=1.6

Index: boost-1.36.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.36.0-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- boost-1.36.0-r1.ebuild	24 May 2009 05:42:24 -0000	1.5
+++ boost-1.36.0-r1.ebuild	2 Jul 2009 04:13:11 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.36.0-r1.ebuild,v 1.5 2009/05/24 05:42:24 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.36.0-r1.ebuild,v 1.6 2009/07/02 04:13:11 dirtyepic Exp $
 
 EAPI="2"
 
@@ -101,6 +101,9 @@
 		compilerExecutable=$(tc-getCXX)
 	fi
 
+	# Huge number of strict-aliasing warnings cause a build failure w/ >= GCC4.4 bug #252287
+	[[ $(gcc-version) > 4.3 ]] && append-flags -Wno-strict-aliasing
+
 	use mpi && mpi="using mpi ;"
 
 	if use python ; then



1.5                  dev-libs/boost/boost-1.35.0-r5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/boost/boost-1.35.0-r5.ebuild?r1=1.4&r2=1.5

Index: boost-1.35.0-r5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- boost-1.35.0-r5.ebuild	15 May 2009 10:42:27 -0000	1.4
+++ boost-1.35.0-r5.ebuild	2 Jul 2009 04:13:11 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r5.ebuild,v 1.4 2009/05/15 10:42:27 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.35.0-r5.ebuild,v 1.5 2009/07/02 04:13:11 dirtyepic Exp $
 
 EAPI="2"
 
@@ -103,6 +103,9 @@
 		compilerExecutable=$(tc-getCXX)
 	fi
 
+	# Huge number of strict-aliasing warnings cause a build failure w/ >= GCC 4.4 bug #252287
+	[[ $(gcc-version) > 4.3 ]] && append-flags -Wno-strict-aliasing
+
 	use mpi && mpi="using mpi ;"
 
 	if use python ; then






^ permalink raw reply	[relevance 99%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2009-07-02  4:13 99% [gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.37.0-r1.ebuild ChangeLog boost-1.36.0-r1.ebuild boost-1.35.0-r5.ebuild Ryan Hill (dirtyepic)

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