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
commitba2a5e9761e49abead43cad7525576b9868e0964 (patch)
treee3d51b9c72c46c9b24e5d62f861f2d89ff469f91 /eclass
parentVersion bump, add python-3.3 support since tests are now fixed with it. (diff)
downloadhistorical-ba2a5e9761e49abead43cad7525576b9868e0964.tar.gz
historical-ba2a5e9761e49abead43cad7525576b9868e0964.tar.bz2
historical-ba2a5e9761e49abead43cad7525576b9868e0964.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"