diff options
author | Ryan Hill <rhill@gentoo.org> | 2010-08-01 03:00:36 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2010-08-01 03:00:36 +0000 |
commit | 596be80edff33302dbd00f8827c1ccaeb795408f (patch) | |
tree | 92801d66e0710ca0724a1cf25f753fde68c0e3a4 | |
parent | Version bumped. (diff) | |
download | historical-596be80edff33302dbd00f8827c1ccaeb795408f.tar.gz historical-596be80edff33302dbd00f8827c1ccaeb795408f.tar.bz2 historical-596be80edff33302dbd00f8827c1ccaeb795408f.zip |
Stop setting STAGE1_CFLAGS in most cases. Fixes bug #283041, bug #326539, and maybe bug #265113.
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 06664484aae0..1a2324f1f3a1 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.436 2010/07/22 01:26:33 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.437 2010/08/01 03:00:36 dirtyepic Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1488,8 +1488,6 @@ gcc_do_make() { elif [[ $(gcc-version) == "3.4" && ${GCC_BRANCH_VER} == "3.4" ]] && gcc-specs-ssp ; then # See bug #79852 STAGE1_CFLAGS=${STAGE1_CFLAGS-"-O2"} - else - STAGE1_CFLAGS=${STAGE1_CFLAGS-"-O"} fi if is_crosscompile; then |