diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-22 22:25:21 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-22 22:25:21 +0000 |
commit | df9b42f5fb953772751638d78f909225e9d799cb (patch) | |
tree | c1615c827f6d560a447a55a229fb76e975dfeb05 /eclass/toolchain.eclass | |
parent | Stable on ia64. (diff) | |
download | historical-df9b42f5fb953772751638d78f909225e9d799cb.tar.gz historical-df9b42f5fb953772751638d78f909225e9d799cb.tar.bz2 historical-df9b42f5fb953772751638d78f909225e9d799cb.zip |
deprecate sjlj for gcc-3.4 uclibc toolchains
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 85be670d0532..554233360014 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.187 2005/08/20 03:06:29 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.188 2005/08/22 22:25:21 vapier Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -1097,7 +1097,7 @@ gcc_do_configure() { # for statically linked apps but not dynamic # so use setjmp/longjmp exceptions by default if is_uclibc ; then - confgcc="${confgcc} --disable-__cxa_atexit --enable-sjlj-exceptions --enable-target-optspace" + confgcc="${confgcc} --disable-__cxa_atexit --enable-target-optspace" [[ ${GCCMAJOR}.${GCCMINOR} == 3.3 ]] && \ confgcc="${confgcc} --enable-sjlj-exceptions" else |