Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/crossdev/files: crossdev
Date: Sun, 26 Oct 2008 11:22:37
Message-Id: E1Ku3hb-0006Io-77@stork.gentoo.org
1 vapier 08/10/26 11:22:35
2
3 Modified: crossdev
4 Log:
5 document --with-headers
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
7
8 Revision Changes Path
9 1.105 sys-devel/crossdev/files/crossdev
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/crossdev/files/crossdev?rev=1.105&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/crossdev/files/crossdev?rev=1.105&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/crossdev/files/crossdev?r1=1.104&r2=1.105
14
15 Index: crossdev
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v
18 retrieving revision 1.104
19 retrieving revision 1.105
20 diff -u -r1.104 -r1.105
21 --- crossdev 23 Jun 2008 01:46:04 -0000 1.104
22 +++ crossdev 26 Oct 2008 11:22:35 -0000 1.105
23 @@ -1,7 +1,7 @@
24 #!/bin/bash
25 # Copyright 1999-2007 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.104 2008/06/23 01:46:04 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.105 2008/10/26 11:22:35 vapier Exp $
29
30 cd /
31 umask 0022 #159111
32 @@ -36,6 +36,7 @@
33 ${GOOD}-S, --stable${NORMAL} Use latest stable versions as default
34 ${GOOD}-C, --clean${NORMAL} target Uninstall specified target
35 ${GOOD}-P, --portage${NORMAL} opts Options to pass to emerge (see emerge(1))
36 + ${GOOD}--with[out]-headers${NORMAL} Build C library headers before C compiler?
37 Stage Options:
38 ${GOOD}-s0, --stage0${NORMAL} Build just binutils
39 ${GOOD}-s1, --stage1${NORMAL} Also build a C compiler (no libc/C++)
40 @@ -47,7 +48,6 @@
41 ${GOOD}--ex-gcc${NORMAL} Build extra gcc targets (gcj/ada/etc...)
42 ${GOOD}--ex-gdb${NORMAL} Build a cross gdb
43 ${GOOD}--ex-insight${NORMAL} Build a cross insight
44 -
45 ${BRACKET}Target (-t)${NORMAL} takes a tuple ${BRACKET}ARCH-VENDOR-OS-LIBC${NORMAL}; see 'crossdev -t help'
46 EOF
47 [[ -n $* ]] && echo && eerror "Error: $*"
48 @@ -112,7 +112,7 @@
49 case ${CTARGET} in
50 i?86|x86_64)
51 CTARGET="${CTARGET}-pc-linux-gnu";;
52 - s390*)
53 + s390*)
54 CTARGET="${CTARGET}-ibm-linux-gnu";;
55 alpha*|arm*|cris*|hppa*|ia64*|m68*|mips*|powerpc*|sparc*|sh*)
56 CTARGET="${CTARGET}-unknown-linux-gnu";;