diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-12-16 20:52:25 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-12-16 20:52:25 +0000 |
commit | 446f5130d78749e355968fab68422e92f19ceb9b (patch) | |
tree | 43ed26e8181032e627af81ab8df397582b3dd6ba /sys-libs | |
parent | alpha updates (diff) | |
download | historical-446f5130d78749e355968fab68422e92f19ceb9b.tar.gz historical-446f5130d78749e355968fab68422e92f19ceb9b.tar.bz2 historical-446f5130d78749e355968fab68422e92f19ceb9b.zip |
sparc changes
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/glibc/glibc-2.3.1-r2.ebuild | 9 |
2 files changed, 14 insertions, 2 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index d7b40e04de66..6ccfd1501a71 100644 --- a/sys-libs/glibc/ChangeLog +++ b/sys-libs/glibc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/glibc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.34 2002/12/13 18:32:01 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.35 2002/12/16 20:52:25 azarah Exp $ + + 16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> glibc-2.3.1-r2.ebuild : + + Add -freorder-blocks for x86 (commented). Add Method's replace-flags for + sparc support. 13 Dec 2002; Mark Guertin <gerk@gentoo.org> glibc-2.3.1-r2.ebuild : diff --git a/sys-libs/glibc/glibc-2.3.1-r2.ebuild b/sys-libs/glibc/glibc-2.3.1-r2.ebuild index e1886b16e715..3c63720f0d92 100644 --- a/sys-libs/glibc/glibc-2.3.1-r2.ebuild +++ b/sys-libs/glibc/glibc-2.3.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.1-r2.ebuild,v 1.11 2002/12/15 12:43:46 bjb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.1-r2.ebuild,v 1.12 2002/12/16 20:52:25 azarah Exp $ IUSE="nls pic build" @@ -8,6 +8,10 @@ inherit eutils flag-o-matic gcc filter-flags "-fomit-frame-pointer -malign-double" +# Sparc support ... +replace-flags "-mcpu=ultrasparc" "-mcpu=v8" +replace-flags "-mcpu=v9" "-mcpu=v8" + # Recently there has been a lot of stability problem in Gentoo-land. Many # things can be the cause to this, but I believe that it is due to gcc3 # still having issues with optimizations, or with it not filtering bad @@ -136,6 +140,9 @@ src_compile() { then myconf="${myconf} --enable-kernel=2.4.0" fi + + # This should not be done for: ia64 s390 s390x +# use x86 && CFLAGS="${CFLAGS} -freorder-blocks" einfo "Configuring GLIBC..." rm -rf buildhere |