Text file src/cmd/go/testdata/script/build_cache_arch_mode.txt
1 # Issue 9737: verify that GOARM affects the computed build ID 2 3 [short] skip 4 5 # arm 6 env GOOS=linux 7 env GOARCH=arm 8 env GOARM=5 9 go install mycmd 10 env GOARM=7 11 stale mycmd 12 13 14 -- go.mod -- 15 module mycmd 16 17 go 1.16 18 -- x.go -- 19 package main 20 21 func main() {} 22