diff options
author | 2014-05-23 07:53:22 +0000 | |
---|---|---|
committer | 2014-05-23 07:53:22 +0000 | |
commit | 13df8ffd13e75c577170bbde305066246a87a107 (patch) | |
tree | d02bb8fa4fcaf15a26c0fa380105387087d59805 | |
parent | Version bump. Removed old (diff) | |
download | historical-13df8ffd13e75c577170bbde305066246a87a107.tar.gz historical-13df8ffd13e75c577170bbde305066246a87a107.tar.bz2 historical-13df8ffd13e75c577170bbde305066246a87a107.zip |
Add remaining potential multilib arches to header wrapping template.
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/multilib-build.eclass | 20 |
2 files changed, 23 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 623d638846a0..ba372373abc7 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1269 2014/05/23 07:47:39 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1270 2014/05/23 07:53:22 mgorny Exp $ + + 23 May 2014; Michał Górny <mgorny@gentoo.org> multilib-build.eclass: + Add remaining potential multilib arches to header wrapping template. 23 May 2014; Michał Górny <mgorny@gentoo.org> multilib-build.eclass: Use MULTILIB_ABI_FLAG for header wrapping. Also, use explicit error when ABI diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index c3e48bcfdc65..c45cc9de0235 100644 --- a/eclass/multilib-build.eclass +++ b/eclass/multilib-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.52 2014/05/23 07:47:39 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.53 2014/05/23 07:53:22 mgorny Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -458,6 +458,24 @@ multilib_prepare_wrappers() { # elif(_MIPS_SIM == _ABIO32) /* o32 */ # error "abi_mips_o32 not supported by the package." # endif +#elif defined(__sparc__) +# if defined(__arch64__) +# error "abi_sparc_64 not supported by the package." +# else +# error "abi_sparc_32 not supported by the package." +# endif +#elif defined(__s390__) +# if defined(__s390x__) +# error "abi_s390_64 not supported by the package." +# else +# error "abi_s390_32 not supported by the package." +# endif +#elif defined(__powerpc__) +# if defined(__powerpc64__) +# error "abi_ppc_64 not supported by the package." +# else +# error "abi_ppc_32 not supported by the package." +# endif #else # error "No ABI matched, please report a bug to bugs.gentoo.org" #endif |