summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Brown2007-10-30 04:13:28 +0000
committerDavid Brown2007-10-30 04:13:28 +0000
commite842c612457a21589316a4be2cda39c14bf5f649 (patch)
treebcdcb598cd33b8347c485a34e783c17c34ce7083
parent0833a50c14ea9aa982b1c69a62c915c67a47732c (diff)
glibc updated to 2.7
-rwxr-xr-xlibs/glibc/BUILD12
-rwxr-xr-xlibs/glibc/DETAILS2
-rw-r--r--libs/glibc/HISTORY4
3 files changed, 13 insertions, 5 deletions
diff --git a/libs/glibc/BUILD b/libs/glibc/BUILD
index 6a02339f6d..42aa7a9da9 100755
--- a/libs/glibc/BUILD
+++ b/libs/glibc/BUILD
@@ -45,10 +45,14 @@ fi &&
OPTS="$OPTS --enable-add-ons=${ADDONS/ /,}" &&
-#
-# Fixes Bug #8595
-#
-CFLAGS="-Os $CFLAGS" &&
+if [ "$GLIBC_NPTL" = "y" ] ; then
+ CFLAGS="${CFLAGS//-Os/} -O2"
+else
+ #
+ # Fixes Bug #8595
+ #
+ CFLAGS="-Os $CFLAGS"
+fi
export CFLAGS="${CFLAGS/-ffast-math/}" &&
export CC=gcc &&
diff --git a/libs/glibc/DETAILS b/libs/glibc/DETAILS
index aa045d6d14..42750394d6 100755
--- a/libs/glibc/DETAILS
+++ b/libs/glibc/DETAILS
@@ -1,6 +1,6 @@
SPELL=glibc
if [ "$GLIBC_NPTL" = "y" ]; then
- VERSION=2.6.1
+ VERSION=2.7
HEADERS_VERSION=2.6.23.1
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.sig
diff --git a/libs/glibc/HISTORY b/libs/glibc/HISTORY
index 9659ad2a0f..ed763c19ea 100644
--- a/libs/glibc/HISTORY
+++ b/libs/glibc/HISTORY
@@ -1,3 +1,7 @@
+2007-10-30 David Brown <dmlb2000@gmail.com>
+ * BUILD: removed -Os for -O2 doesn't do inline quite the same
+ * DETAILS: updated to 2.7
+
2007-10-21 Arwed v. Merkatz <v.merkatz@gmx.net>
* PRE_INSTALL: remove each of /usr/include/{asm,asm-generic,linux} if
it is a symlink, seems like some installations still have those,