aboutsummaryrefslogtreecommitdiff
path: root/src/buildall.bash
diff options
context:
space:
mode:
authorDmitri Shuralyov <dmitshur@golang.org>2020-09-28 14:17:37 -0400
committerDmitri Shuralyov <dmitshur@golang.org>2020-10-05 21:08:03 +0000
commite7a7a403f92aef0eda8bf9f00091c8b21e2223a3 (patch)
tree6d8e51cbb04e72922232371084df33ffa7b65e61 /src/buildall.bash
parent56284f9d29d17869cd70847693c51319408710b3 (diff)
downloadgo-e7a7a403f92aef0eda8bf9f00091c8b21e2223a3.tar.gz
go-e7a7a403f92aef0eda8bf9f00091c8b21e2223a3.zip
src/buildall.bash: remove linux-386-387 target
Support for GO386=387 is being dropped in Go 1.16. There is no need for the target to be available for testing on the master branch (where Go 1.16 development is ongoing). For #40255. Change-Id: I4a4ee80b0c0a535b6b0b246fe991f26964eb07ca Reviewed-on: https://go-review.googlesource.com/c/go/+/257963 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Dmitri Shuralyov <dmitshur@golang.org>
Diffstat (limited to 'src/buildall.bash')
-rwxr-xr-xsrc/buildall.bash7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/buildall.bash b/src/buildall.bash
index 19ea172c5b..7b3751f42e 100755
--- a/src/buildall.bash
+++ b/src/buildall.bash
@@ -37,7 +37,6 @@ GOROOT="$(cd .. && pwd)"
gettargets() {
../bin/go tool dist list | sed -e 's|/|-|'
- echo linux-386-387
echo linux-arm-arm5
}
@@ -64,15 +63,11 @@ do
echo "### Building $target"
export GOOS=$(echo $target | sed 's/-.*//')
export GOARCH=$(echo $target | sed 's/.*-//')
- unset GO386 GOARM
+ unset GOARM
if [ "$GOARCH" = "arm5" ]; then
export GOARCH=arm
export GOARM=5
fi
- if [ "$GOARCH" = "387" ]; then
- export GOARCH=386
- export GO386=387
- fi
# Build and vet everything.
# cmd/go/internal/work/exec.go enables the same vet flags during go test of std cmd