aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dist
diff options
context:
space:
mode:
authorfanzha02 <fannie.zhang@arm.com>2020-06-19 11:19:22 +0800
committerKeith Randall <khr@golang.org>2020-06-19 16:41:13 +0000
commit27a0012bd65a44429e78c19ec18ecf87640d8f45 (patch)
tree66ed8b6adcb62b3a8958f2d5451fd882557303de /src/cmd/dist
parentb424a312ea9d970b4ee7e535a092b7f183c53ae5 (diff)
downloadgo-27a0012bd65a44429e78c19ec18ecf87640d8f45.tar.xz
cmd/dist: don't copy arm64 specific files for bootstap build
This patch avoids copying cmd/compile/internal/ssa/flags_arm64_test.s. Fixes #39701 Change-Id: I35d0567e2d3455faf28828c55a0b6d66a5be49e2 Reviewed-on: https://go-review.googlesource.com/c/go/+/238679 Run-TryBot: fannie zhang <Fannie.Zhang@arm.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org>
Diffstat (limited to 'src/cmd/dist')
-rw-r--r--src/cmd/dist/buildtool.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/dist/buildtool.go b/src/cmd/dist/buildtool.go
index d055f468e9..9502dac4eb 100644
--- a/src/cmd/dist/buildtool.go
+++ b/src/cmd/dist/buildtool.go
@@ -115,6 +115,7 @@ var ignorePrefixes = []string{
// These must not be copied into the bootstrap build directory.
var ignoreSuffixes = []string{
"_arm64.s",
+ "_arm64_test.s",
"_arm64.go",
"_riscv64.s",
"_riscv64.go",