r36226 - in /packages/blas/trunk/debian: changelog rules

sylvestre at users.alioth.debian.org sylvestre at users.alioth.debian.org
Thu Feb 25 22:22:13 UTC 2010


Author: sylvestre
Date: Thu Feb 25 22:22:12 2010
New Revision: 36226

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=36226
Log:
  * -O3 => -O2 under amd64 until we find a real fix for #569436
  * Disable also the need of gcc-4.3 for alpha (Closes: #570668)

Modified:
    packages/blas/trunk/debian/changelog
    packages/blas/trunk/debian/rules

Modified: packages/blas/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/blas/trunk/debian/changelog?rev=36226&op=diff
==============================================================================
--- packages/blas/trunk/debian/changelog (original)
+++ packages/blas/trunk/debian/changelog Thu Feb 25 22:22:12 2010
@@ -1,3 +1,10 @@
+blas (1.2-4) unstable; urgency=low
+
+  * -O3 => -O2 under amd64 until we find a real fix for #569436
+  * Disable also the need of gcc-4.3 for alpha (Closes: #570668)
+
+ -- Sylvestre Ledru <sylvestre at debian.org>  Thu, 25 Feb 2010 23:01:32 +0100
+
 blas (1.2-3) unstable; urgency=low
 
   * Update to Standards-version 3.8.4

Modified: packages/blas/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/blas/trunk/debian/rules?rev=36226&op=diff
==============================================================================
--- packages/blas/trunk/debian/rules (original)
+++ packages/blas/trunk/debian/rules Thu Feb 25 22:22:12 2010
@@ -4,11 +4,14 @@
 
 F77:=gfortran
 GCC:=gcc
-ifneq (,$(filter $(ARCH),alpha))
-  F77:=gfortran-4.3
-  GCC:=gcc-4.3
+F77FLAGS:= -pipe -g  -fomit-frame-pointer
+
+ifneq (,$(filter $(ARCH),amd64))
+F77FLAGS:=$(F77FLAGS) -O2
+else
+F77FLAGS:=$(F77FLAGS) -O3
 endif
-F77FLAGS:= -pipe -g -O3 -fomit-frame-pointer
+
 ifneq (,$(filter $(ARCH),i386 lpia hurd-i386 kfreebsd-i386 m68k))
   F77_EXTRA_FLAGS = -ffloat-store
 endif




More information about the debian-science-commits mailing list