Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog multilib-build.eclass
Date: Fri, 23 May 2014 07:53:26
Message-Id: 20140523075322.EF1F22004C@flycatcher.gentoo.org
1 mgorny 14/05/23 07:53:22
2
3 Modified: ChangeLog multilib-build.eclass
4 Log:
5 Add remaining potential multilib arches to header wrapping template.
6
7 Revision Changes Path
8 1.1270 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1270&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1270&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1269&r2=1.1270
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1269
18 retrieving revision 1.1270
19 diff -u -r1.1269 -r1.1270
20 --- ChangeLog 23 May 2014 07:47:39 -0000 1.1269
21 +++ ChangeLog 23 May 2014 07:53:22 -0000 1.1270
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1269 2014/05/23 07:47:39 mgorny Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1270 2014/05/23 07:53:22 mgorny Exp $
27 +
28 + 23 May 2014; Michał Górny <mgorny@g.o> multilib-build.eclass:
29 + Add remaining potential multilib arches to header wrapping template.
30
31 23 May 2014; Michał Górny <mgorny@g.o> multilib-build.eclass:
32 Use MULTILIB_ABI_FLAG for header wrapping. Also, use explicit error when ABI
33
34
35
36 1.53 eclass/multilib-build.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.53&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.53&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.52&r2=1.53
41
42 Index: multilib-build.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
45 retrieving revision 1.52
46 retrieving revision 1.53
47 diff -u -r1.52 -r1.53
48 --- multilib-build.eclass 23 May 2014 07:47:39 -0000 1.52
49 +++ multilib-build.eclass 23 May 2014 07:53:22 -0000 1.53
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.52 2014/05/23 07:47:39 mgorny Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.53 2014/05/23 07:53:22 mgorny Exp $
55
56 # @ECLASS: multilib-build.eclass
57 # @MAINTAINER:
58 @@ -458,6 +458,24 @@
59 # elif(_MIPS_SIM == _ABIO32) /* o32 */
60 # error "abi_mips_o32 not supported by the package."
61 # endif
62 +#elif defined(__sparc__)
63 +# if defined(__arch64__)
64 +# error "abi_sparc_64 not supported by the package."
65 +# else
66 +# error "abi_sparc_32 not supported by the package."
67 +# endif
68 +#elif defined(__s390__)
69 +# if defined(__s390x__)
70 +# error "abi_s390_64 not supported by the package."
71 +# else
72 +# error "abi_s390_32 not supported by the package."
73 +# endif
74 +#elif defined(__powerpc__)
75 +# if defined(__powerpc64__)
76 +# error "abi_ppc_64 not supported by the package."
77 +# else
78 +# error "abi_ppc_32 not supported by the package."
79 +# endif
80 #else
81 # error "No ABI matched, please report a bug to bugs.gentoo.org"
82 #endif