Skip to content

Commit e7a7a40

Browse files
committed
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 <[email protected]> Trust: Dmitri Shuralyov <[email protected]>
1 parent 56284f9 commit e7a7a40

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/buildall.bash

+1-6
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ GOROOT="$(cd .. && pwd)"
3737

3838
gettargets() {
3939
../bin/go tool dist list | sed -e 's|/|-|'
40-
echo linux-386-387
4140
echo linux-arm-arm5
4241
}
4342

@@ -64,15 +63,11 @@ do
6463
echo "### Building $target"
6564
export GOOS=$(echo $target | sed 's/-.*//')
6665
export GOARCH=$(echo $target | sed 's/.*-//')
67-
unset GO386 GOARM
66+
unset GOARM
6867
if [ "$GOARCH" = "arm5" ]; then
6968
export GOARCH=arm
7069
export GOARM=5
7170
fi
72-
if [ "$GOARCH" = "387" ]; then
73-
export GOARCH=386
74-
export GO386=387
75-
fi
7671

7772
# Build and vet everything.
7873
# cmd/go/internal/work/exec.go enables the same vet flags during go test of std cmd

0 commit comments

Comments
 (0)