From 45fde8d328a100e70c1532942053859fdc2b21ef Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Thu, 28 Apr 2016 10:28:29 -0500 Subject: dev-lang/go: ppc64le updates for #581278 Add proper support for ppc64 to go_arch and display GOROOT_BOOTSTRAP to allow debugging this for new architectures in the future. Package-Manager: portage-2.2.26 --- dev-lang/go/go-1.6.2.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-lang/go/go-1.6.2.ebuild b/dev-lang/go/go-1.6.2.ebuild index 57ca2c79324b..07d84b0ecdf0 100644 --- a/dev-lang/go/go-1.6.2.ebuild +++ b/dev-lang/go/go-1.6.2.ebuild @@ -88,6 +88,8 @@ go_arch() case "${portage_arch}" in x86) echo 386;; x64-*) echo amd64;; + ppc64) + [[ "$(tc-endian)" = big ]] && echo ppc64 || echo ppc64le ;; *) echo "${portage_arch}";; esac } @@ -175,6 +177,7 @@ src_compile() if [[ ${ARCH} == arm ]]; then export GOARM=$(go_arm) fi + elog "GOROOT_BOOTSTRAP is ${GOROOT_BOOTSTRAP}" cd src ./make.bash || die "build failed" -- cgit v1.2.3-65-gdbad