diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-01-01 22:55:35 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-01-01 22:55:35 +0000 |
commit | 29be01e9c8326ca58bc6bc7df82274d7c99bd9f3 (patch) | |
tree | ffcd94963ebc5fe4ecfbcc1ddec04ae8f325f6fc /eclass | |
parent | Version Bump thanks to John Dangler <jdangler@atlantic.net> for reporting in ... (diff) | |
download | gentoo-2-29be01e9c8326ca58bc6bc7df82274d7c99bd9f3.tar.gz gentoo-2-29be01e9c8326ca58bc6bc7df82274d7c99bd9f3.tar.bz2 gentoo-2-29be01e9c8326ca58bc6bc7df82274d7c99bd9f3.zip |
-O3 is bad, bug 76331
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 8e02241c3a36..7971e393d2ee 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -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/eclass/vim.eclass,v 1.86 2004/12/18 22:55:53 spb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.87 2005/01/01 22:55:35 ciaranm Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -264,6 +264,11 @@ src_compile() { # Bug 57859 suggests that we want to do this for all archs filter-flags -funroll-all-loops + # Fix bug 76331: -O3 causes problems, use -O2 instead. We'll do this for + # everyone since previous flag filtering bugs have turned out to affect + # multiple archs... + replace-flags -O3 -O2 + # Fix bug 18245: Prevent "make" from the following chain: # (1) Notice configure.in is newer than auto/configure # (2) Rebuild auto/configure |