From 761b3788546b141f818706210a9ce5f6042f5414 Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 17 Jan 2021 15:46:26 +0100 Subject: [PATCH] build-style/go: drop 32-bit ppc from gccgo this will always give us trouble, and probably is not worth supporting --- common/environment/build-style/go.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/environment/build-style/go.sh b/common/environment/build-style/go.sh index f3b4514d457..337b5279d0e 100644 --- a/common/environment/build-style/go.sh +++ b/common/environment/build-style/go.sh @@ -9,8 +9,7 @@ else # gccgo compiler if [ -z "$archs" ]; then # we have support for these in our gcc - # ppcle is missing, and mips doesn't have go in cross yet - archs="aarch64* armv[567]* i686* x86_64* ppc64* ppc ppc-musl" + archs="aarch64* armv[567]* i686* x86_64* ppc64*" fi if [ "$CROSS_BUILD" ]; then # target compiler to use; otherwise it'll just call gccgo