From: Tobias Klauser Date: Thu, 30 Apr 2020 22:39:34 +0000 (+0200) Subject: cmd/dist: don't copy riscv64 specific files for bootstrap build X-Git-Tag: go1.15beta1~261 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c12d7020f4d1712fde6944f6e57011937fcf89f5;p=gostls13.git cmd/dist: don't copy riscv64 specific files for bootstrap build For now this will only avoid copying math/big/arith_riscv64.s Change-Id: Ib236e4bf1a6a758649629268a6f512f307596e74 Reviewed-on: https://go-review.googlesource.com/c/go/+/231298 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/dist/buildtool.go b/src/cmd/dist/buildtool.go index 9059225abd..d055f468e9 100644 --- a/src/cmd/dist/buildtool.go +++ b/src/cmd/dist/buildtool.go @@ -116,6 +116,8 @@ var ignorePrefixes = []string{ var ignoreSuffixes = []string{ "_arm64.s", "_arm64.go", + "_riscv64.s", + "_riscv64.go", "_wasm.s", "_wasm.go", }