[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r3244 - glibc-package/branches/glibc-2.9/debian



Author: aurel32
Date: 2009-01-19 19:07:15 +0000 (Mon, 19 Jan 2009)
New Revision: 3244

Modified:
   glibc-package/branches/glibc-2.9/debian/changelog
   glibc-package/branches/glibc-2.9/debian/rules
Log:
  * debian/rules: set BUILD_CC (host compiler) to gcc, and set CC (target
    compiler) to gcc-4.3. The later can be override on a per target basis.



Modified: glibc-package/branches/glibc-2.9/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.9/debian/changelog	2009-01-19 19:04:27 UTC (rev 3243)
+++ glibc-package/branches/glibc-2.9/debian/changelog	2009-01-19 19:07:15 UTC (rev 3244)
@@ -55,6 +55,8 @@
   * any/submitted-popen.diff: new patch from Gentoo to fix popen() on >= 2.6.27
     kernels.  Closes: bug#512238.
   * arm/submitted-setjmp.diff: new patch to fix build on arm.
+  * debian/rules: set BUILD_CC (host compiler) to gcc, and set CC (target
+    compiler) to gcc-4.3. The later can be override on a per target basis.
 
   [ Clint Adams ]
   * patches/any/cvs-bz697-posix-regexec.diff: regex fix from Paolo Bonzini.
@@ -77,7 +79,7 @@
   * patches/hppa/submitted-tsd.diff: new patch from to fix build on hppa.
     Closes: bug#511430.
 
- -- Aurelien Jarno <aurel32@debian.org>  Sun, 18 Jan 2009 23:25:16 +0100
+ -- Aurelien Jarno <aurel32@debian.org>  Mon, 19 Jan 2009 20:05:52 +0100
 
 glibc (2.8+20080809-3) experimental; urgency=low
 

Modified: glibc-package/branches/glibc-2.9/debian/rules
===================================================================
--- glibc-package/branches/glibc-2.9/debian/rules	2009-01-19 19:04:27 UTC (rev 3243)
+++ glibc-package/branches/glibc-2.9/debian/rules	2009-01-19 19:07:15 UTC (rev 3244)
@@ -89,8 +89,8 @@
 mandir=$(prefix)/share/man
 sbindir=$(prefix)/sbin
 
-BUILD_CC = gcc-4.3
-BUILD_CXX = g++-4.3
+BUILD_CC = gcc
+BUILD_CXX = g++
 
 RUN_TESTSUITE = yes
 
@@ -99,8 +99,8 @@
 CC     = $(DEB_HOST_GNU_TYPE)-gcc
 CXX    = $(DEB_HOST_GNU_TYPE)-g++
 else
-CC     = $(BUILD_CC)
-CXX    = $(BUILD_CXX)
+CC     = gcc-4.3
+CXX    = gcc-4.3
 endif
 
 BUILD_CFLAGS = -O2 -g


Reply to: