File tree 5 files changed +6
-13
lines changed
5 files changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,12 @@ To update the .syso files use golang.org/x/build/cmd/racebuild.
6
6
7
7
race_darwin_amd64.syso built with LLVM 127e59048cd3d8dbb80c14b3036918c114089529 and Go 59ab6f351a370a27458755dc69f4a837e55a05a6.
8
8
race_freebsd_amd64.syso built with LLVM 127e59048cd3d8dbb80c14b3036918c114089529 and Go 59ab6f351a370a27458755dc69f4a837e55a05a6.
9
- race_linux_amd64.syso built with LLVM 127e59048cd3d8dbb80c14b3036918c114089529 and Go 59ab6f351a370a27458755dc69f4a837e55a05a6.
10
9
race_linux_ppc64le.syso built with LLVM 41cb504b7c4b18ac15830107431a0c1eec73a6b2 and Go 851ecea4cc99ab276109493477b2c7e30c253ea8.
11
10
race_netbsd_amd64.syso built with LLVM 41cb504b7c4b18ac15830107431a0c1eec73a6b2 and Go 851ecea4cc99ab276109493477b2c7e30c253ea8.
12
11
race_windows_amd64.syso built with LLVM 89f7ccea6f6488c443655880229c54db1f180153 and Go f62d3202bf9dbb3a00ad2a2c63ff4fa4188c5d3b.
13
12
race_linux_arm64.syso built with LLVM 41cb504b7c4b18ac15830107431a0c1eec73a6b2 and Go 851ecea4cc99ab276109493477b2c7e30c253ea8.
14
13
race_darwin_arm64.syso built with LLVM 41cb504b7c4b18ac15830107431a0c1eec73a6b2 and Go 851ecea4cc99ab276109493477b2c7e30c253ea8.
15
14
race_openbsd_amd64.syso built with LLVM fcf6ae2f070eba73074b6ec8d8281e54d29dbeeb and Go 8f2db14cd35bbd674cb2988a508306de6655e425.
16
15
race_linux_s390x.syso built with LLVM 41cb504b7c4b18ac15830107431a0c1eec73a6b2 and Go 851ecea4cc99ab276109493477b2c7e30c253ea8.
16
+ internal/amd64v3/race_linux.syso built with LLVM 74c2d4f6024c8f160871a2baa928d0b42415f183 and Go c0f27eb3d580c8b9efd73802678eba4c6c9461be.
17
+ internal/amd64v1/race_linux.syso built with LLVM 74c2d4f6024c8f160871a2baa928d0b42415f183 and Go c0f27eb3d580c8b9efd73802678eba4c6c9461be.
Original file line number Diff line number Diff line change 1
- //go:build linux || darwin || freebsd || netbsd || openbsd || windows
2
- // +build linux darwin freebsd netbsd openbsd windows
1
+ //go:build ( linux && !amd64.v3) || darwin || freebsd || netbsd || openbsd || windows
2
+ // +build linux,!amd64.v3 darwin freebsd netbsd openbsd windows
3
3
4
4
package race
5
5
6
6
import _ "runtime/race/internal/amd64v1"
7
-
8
- // Note: the build line above will eventually be something
9
- // like go:build linux && !amd64.v3 || darwin && !amd64.v3 || ...
10
- // as we build v3 versions for each OS.
Original file line number Diff line number Diff line change 1
- //go:build none
2
- // +build none
1
+ //go:build linux && amd64.v3
2
+ // +build linux,amd64.v3
3
3
4
4
package race
5
5
6
6
import _ "runtime/race/internal/amd64v3"
7
-
8
- // Note: the build line above will eventually be something
9
- // like go:build linux && amd64.v3 || darwin && amd64.v3 || ...
10
- // as we build v3 versions for each OS.
You can’t perform that action at this time.
0 commit comments