summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-04-01 07:59:05 +0000
committerMike Frysinger <vapier@gentoo.org>2013-04-01 07:59:05 +0000
commit3b64d2ec19db4dd97088ad3587e8d76ed82b9a86 (patch)
tree68dbcdb6940dce11b31ee721e9e71e83f2ed8926 /eclass
parentVersion bump, add python-3.3 support since tests are now fixed with it. (diff)
downloadgentoo-2-3b64d2ec19db4dd97088ad3587e8d76ed82b9a86.tar.gz
gentoo-2-3b64d2ec19db4dd97088ad3587e8d76ed82b9a86.tar.bz2
gentoo-2-3b64d2ec19db4dd97088ad3587e8d76ed82b9a86.zip
drop --enable-target-optspace for uClibc targets ... there is no real need for this, and if people want to build with -Os, they can. this also avoids build failures on ppc (PR43810).
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 517798e4a246..1f1463da3c93 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.570 2013/03/16 05:44:49 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.571 2013/04/01 07:59:05 vapier Exp $
#
# Maintainer: Toolchain Ninjas <toolchain@gentoo.org>
@@ -1192,7 +1192,7 @@ gcc_do_configure() {
# destructors", but apparently requires glibc.
case ${CTARGET} in
*-uclibc*)
- confgcc+=" --disable-__cxa_atexit --enable-target-optspace $(use_enable nptl tls)"
+ confgcc+=" --disable-__cxa_atexit $(use_enable nptl tls)"
[[ ${GCCMAJOR}.${GCCMINOR} == 3.3 ]] && confgcc+=" --enable-sjlj-exceptions"
if tc_version_is_at_least 3.4 && ! tc_version_is_at_least 4.3 ; then
confgcc+=" --enable-clocale=uclibc"