]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/cgo: use "!compiler_bootstrap" tag instead of "go1.18"
authorMatthew Dempsky <mdempsky@google.com>
Fri, 8 Oct 2021 18:23:38 +0000 (11:23 -0700)
committerMatthew Dempsky <mdempsky@google.com>
Fri, 8 Oct 2021 19:19:09 +0000 (19:19 +0000)
The illumos builder is using a Go 1.18 prerelease toolchain for
bootstrapping, which doesn't have ast.IndexListExpr. But we can
instead check for the "compiler_bootstrap" build tag that's already
used for distinguishing binaries built for toolchain1.

Fixes #48863.

Change-Id: I87b672322eee22a60ab8d0bb3be5f76cffc97545
Reviewed-on: https://go-review.googlesource.com/c/go/+/354695
Trust: Matthew Dempsky <mdempsky@google.com>
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/cmd/cgo/ast_go1.go
src/cmd/cgo/ast_go118.go

index cf6d99f64a02b6cb2eb33e6b1ac3ddef67bab60e..f52bf00d7cb946e9844f485352daec989435a2db 100644 (file)
@@ -2,8 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-//go:build !go1.18
-// +build !go1.18
+//go:build compiler_bootstrap
+// +build compiler_bootstrap
 
 package main
 
index 2e3ce2752120ccd900735e60138e76acf7716299..db0108ed7268366a5dc0543645645bed443a3ecb 100644 (file)
@@ -2,8 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-//go:build go1.18
-// +build go1.18
+//go:build !compiler_bootstrap
+// +build !compiler_bootstrap
 
 package main