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

r5067 - glibc-package/trunk/debian



Author: aurel32
Date: 2011-12-10 21:02:08 +0000 (Sat, 10 Dec 2011)
New Revision: 5067

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules
Log:
  * Add support for stage1 builds.  Closes: #644546.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2011-12-10 20:46:27 UTC (rev 5066)
+++ glibc-package/trunk/debian/changelog	2011-12-10 21:02:08 UTC (rev 5067)
@@ -1,4 +1,4 @@
-eglibc (2.13-22) UNRELEASED; urgency=low
+eglibc (2.13-22) unstable; urgency=low
 
   [ Adam Conrad ]
   * patches/arm/unsubmitted-ldconfig-cache-abi.diff: New patch from
@@ -103,8 +103,11 @@
   * Name our biarch compat ld.so.conf.d files on arm* consistently with the
     ones on other archs.
 
- -- Samuel Thibault <sthibault@debian.org>  Mon, 17 Oct 2011 01:23:52 +0200
+  [ Kyle Moffett ]
+  * Add support for stage1 builds.  Closes: #644546.
 
+ -- Aurelien Jarno <aurel32@debian.org>  Sat, 10 Dec 2011 21:49:03 +0100
+
 eglibc (2.13-21) unstable; urgency=low
 
   [ Samuel Thibault ]

Modified: glibc-package/trunk/debian/rules
===================================================================
--- glibc-package/trunk/debian/rules	2011-12-10 20:46:27 UTC (rev 5066)
+++ glibc-package/trunk/debian/rules	2011-12-10 21:02:08 UTC (rev 5067)
@@ -101,11 +101,12 @@
 
 # Set CC and CXX for cross-compiling
 ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH))
-CC     = $(DEB_HOST_GNU_TYPE)-gcc
-CXX    = $(DEB_HOST_GNU_TYPE)-g++
+CC     = $(DEB_HOST_GNU_TYPE)-gcc$(DEB_GCC_VERSION)
+CXX    = $(DEB_HOST_GNU_TYPE)-g++$(DEB_GCC_VERSION)
 else
-CC     = gcc-4.4
-CXX    = g++-4.4
+DEB_GCC_VERSION ?= -4.4
+CC     = gcc$(DEB_GCC_VERSION)
+CXX    = g++$(DEB_GCC_VERSION)
 endif
 
 BUILD_CFLAGS = -O2 -g


Reply to: