diff options
author | Fabian Groffen <grobian@gentoo.org> | 2009-04-05 08:22:29 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2009-04-05 08:22:29 +0000 |
commit | 38a3cf852db73f2e099aba8c295f7abc5741496f (patch) | |
tree | 22cce8a09d7c18485499dc5666a97c0e994213fc /eclass | |
parent | Revert 1.89 of toolchain-funcs.eclass, I should have reviewed it much better,... (diff) | |
download | gentoo-2-38a3cf852db73f2e099aba8c295f7abc5741496f.tar.gz gentoo-2-38a3cf852db73f2e099aba8c295f7abc5741496f.tar.bz2 gentoo-2-38a3cf852db73f2e099aba8c295f7abc5741496f.zip |
remove the Darwin hook, it seemingly has been obsoleted
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 5f284e1f44dd..46cf21fabef9 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.133 2009/04/04 17:57:54 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.134 2009/04/05 08:22:29 grobian Exp $ # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -53,12 +53,6 @@ setup-allowed-flags() { -mlive-g0 -mcmodel -mstack-bias -mno-stack-bias \ -msecure-plt -m*-toc -D* -U*" - # killing these two on OSX/Intel will disable SSE, resulting in failing - # compilations, as the headers expect SSE to be enabled (Apple knows what - # hardware they run on afterall, don't they?) - [[ ${CHOST} == i?86-apple-darwin* ]] \ - && ALLOWED_FLAGS="${ALLOWED_FLAGS} -march=prescott -march=nocona" - # {C,CXX,F,FC}FLAGS that we are think is ok, but needs testing # NOTE: currently -Os have issues with gcc3 and K6* arch's export UNSTABLE_FLAGS="-Os -O3 -freorder-blocks" |