Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/crossdev:master commit in: /
Date: Fri, 18 Nov 2011 20:44:45
Message-Id: 77232e519f076f7e04d7d6323a564249a020bb2d.vapier@gentoo
1 commit: 77232e519f076f7e04d7d6323a564249a020bb2d
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 18 15:59:28 2011 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 18 19:25:21 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=77232e51
7
8 crossdev: migrate USE=nocxx to USE=-cxx
9
10 The toolchain.eclass has migrated to USE=cxx, so update crossdev as well.
11 We need to carry both until toolchain.eclass drops USE=nocxx completely.
12
13 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
14
15 ---
16 crossdev | 4 ++--
17 1 files changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/crossdev b/crossdev
20 index 6580dc8..685ad4a 100755
21 --- a/crossdev
22 +++ b/crossdev
23 @@ -177,7 +177,7 @@ parse_target() {
24
25 # due to upstream lameness, build C/C++ at first glance
26 *-cygwin)
27 - GUSE_DISABLE_STAGE_1=${GUSE_DISABLE_STAGE_1/nocxx};;
28 + GUSE_DISABLE_STAGE_1+=" -nocxx cxx";;
29
30 # these are the mingw64 targets that binutils seems to use
31 x86_64-*-mingw*|*-w64-mingw*)
32 @@ -453,7 +453,7 @@ CROSSDEV_OVERLAY=""
33 # not tested, or doesn't make sense, or no one simply cares about them
34 GUSE_DISABLE="-boundschecking -d -gtk -gcj -libffi -mudflap -objc -objc++ -objc-gc"
35 # These are disabled only for stage1 gcc
36 -GUSE_DISABLE_STAGE_1="${GUSE_DISABLE} -fortran nocxx -openmp"
37 +GUSE_DISABLE_STAGE_1="${GUSE_DISABLE} -fortran nocxx -cxx -openmp"
38 GUSE_DISABLE_STAGE_2="${GUSE_DISABLE}"
39 WITH_HEADERS="COW" WITH_DEF_HEADERS="yes" #227065 gcc-4.3+ is a pita w/out headers
40 EX_FAST="no"