From 5ff20e49dadf4c383501a1dcbb7bac1bbd0aa4af Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 13 Dec 2018 01:51:34 +0100 Subject: [PATCH] boost: add support for ppc64 platforms [ci skip] --- srcpkgs/boost/template | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template index d9bf2ffc66..f9db7a1dab 100644 --- a/srcpkgs/boost/template +++ b/srcpkgs/boost/template @@ -34,11 +34,13 @@ if [ -z "$CROSS_BUILD" ]; then fi case "$XBPS_TARGET_MACHINE" in - i686*) _arch=x86; _toolset="gcc-i386"; _abi=sysv ;; - x86_64*) _arch=x86; _toolset="gcc-x86_64"; _abi=sysv ;; - arm*) _arch=arm; _toolset="gcc-arm"; _abi=aapcs ;; - aarch64*) _arch=arm; _toolset="gcc-aarch64"; _abi=aapcs ;; - mips*) _arch=mips32r2; _toolset="gcc-mips"; _abi=o32 ;; + i686*) _arch=x86; _toolset="gcc-i386"; _abi=sysv ;; + x86_64*) _arch=x86; _toolset="gcc-x86_64"; _abi=sysv ;; + arm*) _arch=arm; _toolset="gcc-arm"; _abi=aapcs ;; + aarch64*) _arch=arm; _toolset="gcc-aarch64"; _abi=aapcs ;; + mips*) _arch=mips32r2; _toolset="gcc-mips"; _abi=o32 ;; + ppc64le*) _arch=power; _toolset="gcc-powerpc64le"; _abi=sysv ;; + ppc64*) _arch=power; _toolset="gcc-powerpc64"; _abi=sysv ;; esac do_build() {