Source file src/cmd/compile/internal/base/bootstrap_true.go
1 // Copyright 2021 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build compiler_bootstrap 6 // +build compiler_bootstrap 7 8 package base 9 10 // CompilerBootstrap reports whether the current compiler binary was 11 // built with -tags=compiler_bootstrap. 12 const CompilerBootstrap = true 13