diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-03-29 03:00:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-03-29 03:00:44 +0000 |
commit | 1294b58a555f709b367d4bf4b51dffe861720fd1 (patch) | |
tree | 661b52463c42b2b1df10be974eab5d470e38610e /eclass/multilib-build.eclass | |
parent | Version bump. (diff) | |
download | gentoo-2-1294b58a555f709b367d4bf4b51dffe861720fd1.tar.gz gentoo-2-1294b58a555f709b367d4bf4b51dffe861720fd1.tar.bz2 gentoo-2-1294b58a555f709b367d4bf4b51dffe861720fd1.zip |
add ABI_PPC support
Diffstat (limited to 'eclass/multilib-build.eclass')
-rw-r--r-- | eclass/multilib-build.eclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass index 1979c39555dc..59d452c9e396 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.27 2014/01/16 20:05:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.28 2014/03/29 03:00:44 vapier Exp $ # @ECLASS: multilib-build.eclass # @MAINTAINER: @@ -38,6 +38,8 @@ _MULTILIB_FLAGS=( abi_mips_n32:n32 abi_mips_n64:n64 abi_mips_o32:o32 + abi_ppc_32:ppc + abi_ppc_64:ppc64 ) # @ECLASS-VARIABLE: MULTILIB_USEDEP @@ -351,6 +353,10 @@ _EOF_ abi_flag=abi_mips_n64;; o32) abi_flag=abi_mips_o32;; + ppc) + abi_flag=abi_ppc_32;; + ppc64) + abi_flag=abi_ppc_64;; *) die "Header wrapping for ${ABI} not supported yet";; esac |