r37346 - in /packages/gmp/branches/5.0.0-experimental/debian: changelog rules
smr at users.alioth.debian.org
smr at users.alioth.debian.org
Tue Feb 15 03:41:40 UTC 2011
Author: smr
Date: Tue Feb 15 03:41:28 2011
New Revision: 37346
URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=37346
Log:
Build with reduced optimization on ia64, trying to work around gcc bug.
Modified:
packages/gmp/branches/5.0.0-experimental/debian/changelog
packages/gmp/branches/5.0.0-experimental/debian/rules
Modified: packages/gmp/branches/5.0.0-experimental/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/gmp/branches/5.0.0-experimental/debian/changelog?rev=37346&op=diff
==============================================================================
--- packages/gmp/branches/5.0.0-experimental/debian/changelog (original)
+++ packages/gmp/branches/5.0.0-experimental/debian/changelog Tue Feb 15 03:41:28 2011
@@ -1,3 +1,10 @@
+gmp (2:5.0.1+dfsg-4) experimental; urgency=low
+
+ * rules: Build with -O2 on ia64, to work around ICE
+ (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43603).
+
+ -- Steve M. Robbins <smr at debian.org> Mon, 14 Feb 2011 21:39:01 -0600
+
gmp (2:5.0.1+dfsg-3) experimental; urgency=low
[ Sylvestre Ledru ]
Modified: packages/gmp/branches/5.0.0-experimental/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/gmp/branches/5.0.0-experimental/debian/rules?rev=37346&op=diff
==============================================================================
--- packages/gmp/branches/5.0.0-experimental/debian/rules (original)
+++ packages/gmp/branches/5.0.0-experimental/debian/rules Tue Feb 15 03:41:28 2011
@@ -32,7 +32,11 @@
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
- CFLAGS += -O3
+ ifneq (,$(findstring $(DEB_HOST_ARCH), ia64))
+ CFLAGS += -O2
+ else
+ CFLAGS += -O3
+ endif
endif
lib32dir = usr/lib32
More information about the debian-science-commits
mailing list