diff options
author | Travis Tilley <lv@gentoo.org> | 2004-07-13 14:02:20 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-07-13 14:02:20 +0000 |
commit | 7c8dfccbc1712de95553e4664ea96a735b454dde (patch) | |
tree | fc9f499c4dd078e5e8e5433eb78bc83fec2f0fd3 /sys-libs/libstdc++-v3 | |
parent | initial import from sf.net (Manifest recommit) (diff) | |
download | gentoo-2-7c8dfccbc1712de95553e4664ea96a735b454dde.tar.gz gentoo-2-7c8dfccbc1712de95553e4664ea96a735b454dde.tar.bz2 gentoo-2-7c8dfccbc1712de95553e4664ea96a735b454dde.zip |
filter some gcc 3.4 flags that the gcc 3.3.3 xgcc will fail on
Diffstat (limited to 'sys-libs/libstdc++-v3')
-rw-r--r-- | sys-libs/libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/sys-libs/libstdc++-v3/ChangeLog b/sys-libs/libstdc++-v3/ChangeLog index e0ab8df95363..2f5dc9d1e3ec 100644 --- a/sys-libs/libstdc++-v3/ChangeLog +++ b/sys-libs/libstdc++-v3/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/libstdc++-v3 # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/ChangeLog,v 1.9 2004/07/11 19:49:36 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/ChangeLog,v 1.10 2004/07/13 14:02:20 lv Exp $ + + 13 Jul 2004; Travis Tilley <lv@gentoo.org> libstdc++-v3-3.3.3-r1.ebuild: + filter some gcc 3.4 flags that the gcc 3.3.3 xgcc will fail on 11 Jul 2004; Travis Tilley <lv@gentoo.org> libstdc++-v3-3.3.3-r1.ebuild: gcc 3.3 doesnt support -mtune on numerous archs, so xgcc will fail if we have diff --git a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild index 91b169f14e9a..313f543820f3 100644 --- a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild +++ b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild,v 1.9 2004/07/12 04:19:21 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild,v 1.10 2004/07/13 14:02:20 lv Exp $ IUSE="nls" @@ -47,6 +47,12 @@ do_filter_flags() { mtsetting="`get-flag mtune`" [ ! -z "${mtsetting}" ] && filter-flags -mtune="${mtsetting}" + # xgcc wont understand gcc 3.4 flags... + filter-flags -fno-unit-at-a-time + filter-flags -funit-at-a-time + filter-flags -fweb + filter-flags -fno-web + # ...sure, why not? strip-unsupported-flags } |