summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Brown2007-10-31 04:17:33 +0000
committerDavid Brown2007-10-31 04:17:33 +0000
commit2157d4d00b777f7a82cde9eebf685cd8eca3cb77 (patch)
treebe5fbc7dfa0bb06bbac9e12e77f32f32dda909cb
parent7867834b3ce96848242b6e09fc6730a87c72cec6 (diff)
glibc updated to 2.7
-rwxr-xr-xlibs/glibc/BUILD13
-rwxr-xr-xlibs/glibc/DETAILS2
-rw-r--r--libs/glibc/HISTORY4
3 files changed, 14 insertions, 5 deletions
diff --git a/libs/glibc/BUILD b/libs/glibc/BUILD
index 6a02339f6d..667f72c6b2 100755
--- a/libs/glibc/BUILD
+++ b/libs/glibc/BUILD
@@ -45,10 +45,15 @@ fi &&
OPTS="$OPTS --enable-add-ons=${ADDONS/ /,}" &&
-#
-# Fixes Bug #8595
-#
-CFLAGS="-Os $CFLAGS" &&
+if [ "$GLIBC_NPTL" = "y" ]
+then
+ CFLAGS="-O2 ${CFLAGS//-Os/}"
+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 c1061ce707..e525c400f4 100644
--- a/libs/glibc/HISTORY
+++ b/libs/glibc/HISTORY
@@ -1,3 +1,7 @@
+2007-10-31 David Brown <dmlb2000@gmail.com>
+ * BUILD: updated new cflags for 2.7
+ * DETAILS: updated glibc 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,