summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-03-21 06:01:26 +0000
committerMike Frysinger <vapier@gentoo.org>2005-03-21 06:01:26 +0000
commit53310ea963ca156ad0c029eb7dc338b9f447568e (patch)
tree78e2051a1b0cf7530d92d7919a3c4bbe964b7c1d /eclass
parentStable ppc-macos (diff)
downloadgentoo-2-53310ea963ca156ad0c029eb7dc338b9f447568e.tar.gz
gentoo-2-53310ea963ca156ad0c029eb7dc338b9f447568e.tar.bz2
gentoo-2-53310ea963ca156ad0c029eb7dc338b9f447568e.zip
dont mess with sjlj
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index d055cd3d159a..c712e583895a 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.132 2005/03/21 05:48:04 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.133 2005/03/21 06:01:26 vapier Exp $
HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html"
LICENSE="GPL-2 LGPL-2.1"
@@ -1040,9 +1040,9 @@ gcc_do_configure() {
# When building a stage1 cross-compiler (just C compiler), we have to
# disable a bunch of features or gcc goes boom
if is_crosscompile && [[ ${GCC_LANG} == "c" ]] ; then
- confgcc="${confgcc} --disable-shared --disable-threads --without-headers --enable-sjlj-exceptions"
+ confgcc="${confgcc} --disable-shared --disable-threads --without-headers"
else
- confgcc="${confgcc} $(use_enable !static shared) --enable-threads=posix --disable-sjlj-exceptions"
+ confgcc="${confgcc} $(use_enable !static shared) --enable-threads=posix"
fi
# __cxa_atexit is "essential for fully standards-compliant handling of
# destructors", but apparently requires glibc.