Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: toolchain.eclass
Date: Mon, 01 Apr 2013 07:59:08
Message-Id: 20130401075905.8C62B2171C@flycatcher.gentoo.org
1 vapier 13/04/01 07:59:05
2
3 Modified: toolchain.eclass
4 Log:
5 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).
6
7 Revision Changes Path
8 1.571 eclass/toolchain.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.571&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.571&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.570&r2=1.571
13
14 Index: toolchain.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
17 retrieving revision 1.570
18 retrieving revision 1.571
19 diff -u -r1.570 -r1.571
20 --- toolchain.eclass 16 Mar 2013 05:44:49 -0000 1.570
21 +++ toolchain.eclass 1 Apr 2013 07:59:05 -0000 1.571
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2013 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.570 2013/03/16 05:44:49 dirtyepic Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.571 2013/04/01 07:59:05 vapier Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29
30 @@ -1192,7 +1192,7 @@
31 # destructors", but apparently requires glibc.
32 case ${CTARGET} in
33 *-uclibc*)
34 - confgcc+=" --disable-__cxa_atexit --enable-target-optspace $(use_enable nptl tls)"
35 + confgcc+=" --disable-__cxa_atexit $(use_enable nptl tls)"
36 [[ ${GCCMAJOR}.${GCCMINOR} == 3.3 ]] && confgcc+=" --enable-sjlj-exceptions"
37 if tc_version_is_at_least 3.4 && ! tc_version_is_at_least 4.3 ; then
38 confgcc+=" --enable-clocale=uclibc"