diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-11-11 21:35:29 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-11-11 21:35:29 +0100 |
commit | b1a2f09e6956f880c9f56d8be27e38adaca3179f (patch) | |
tree | f66bc263d986d5da215344c5cf351cbc57f60f4a /package/go | |
parent | 1595020670aec5185dcc01df0d42c0905f930928 (diff) | |
download | buildroot-b1a2f09e6956f880c9f56d8be27e38adaca3179f.tar.gz buildroot-b1a2f09e6956f880c9f56d8be27e38adaca3179f.zip |
go: remove powerpc64 big-endian from supported architectures
cgo currently doesn't properly support powerpc64 big-endian, as noted
in https://github.com/golang/go/issues/13192, and indeed, we have a
large number of build failures of Go packages on this
architecture. This commit therefore disables Go on PowerPC64
big-endian (PowerPC64 little-endian is fine).
Fixes:
http://autobuild.buildroot.net/results/a6e9bac0a735f48d0ba0af081aeac4ed9fdfaca7/
(flannel)
http://autobuild.buildroot.net/results/230f52bc35f437836c7a76d4b58ef454635ee0d3/
(docker-containerd)
http://autobuild.buildroot.net/results/77c31d6e8f5efe3e024e27a160cf5d1d1952719e/
(runc)
http://autobuild.buildroot.net/results/a87b07417ea8bd81ffe27e5661b4359ddc0149ab/
(docker-engine)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/go')
-rw-r--r-- | package/go/Config.in.host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/go/Config.in.host b/package/go/Config.in.host index 8d4d346bf3..a210033efd 100644 --- a/package/go/Config.in.host +++ b/package/go/Config.in.host @@ -2,7 +2,7 @@ config BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS bool default y depends on (BR2_arm && BR2_TOOLCHAIN_SUPPORTS_PIE) || BR2_aarch64 \ - || BR2_i386 || BR2_x86_64 || BR2_powerpc64 || BR2_powerpc64le \ + || BR2_i386 || BR2_x86_64 || BR2_powerpc64le \ || BR2_mips64 || BR2_mips64el depends on !BR2_ARM_CPU_ARMV4 # MIPS R6 support in Go has not yet been developed. |