aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-02-19 19:47:13 -0500
committerRuss Cox <rsc@golang.org>2015-02-20 15:26:21 +0000
commitd90bbf91d46aa6254a296cda1ec4b23663141b47 (patch)
treee2a70a3001b7f9a4b1fc14d88dfb5241fa99bedf
parent5b9429d122ae5e4d9a296857343a96b8c1d3dbd6 (diff)
downloadgo-d90bbf91d46aa6254a296cda1ec4b23663141b47.tar.gz
go-d90bbf91d46aa6254a296cda1ec4b23663141b47.zip
[dev.cc] cmd/go: disable verifyCompiler
The merge brought in new C sources without Go updates. Change-Id: Iad08b58f894173a7b34396275b72db34f3031fe3 Reviewed-on: https://go-review.googlesource.com/5352 Reviewed-by: Russ Cox <rsc@golang.org>
-rw-r--r--src/cmd/go/build.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go/build.go b/src/cmd/go/build.go
index db1c93b8ac..aebbc3e39a 100644
--- a/src/cmd/go/build.go
+++ b/src/cmd/go/build.go
@@ -1630,7 +1630,7 @@ func (gcToolchain) linker() string {
// verifyCompiler specifies whether to check the compilers written in Go
// against the assemblers written in C. If set, asm will run both (say) 6g and new6g
// and fail if the two produce different output files.
-const verifyCompiler = true
+const verifyCompiler = false
func (gcToolchain) gc(b *builder, p *Package, archive, obj string, asmhdr bool, importArgs []string, gofiles []string) (ofile string, output []byte, err error) {
if archive != "" {