]> Cypherpunks repositories - gostls13.git/commit
runtime/race: introduce subarch versioning of race syso
authorKeith Randall <khr@golang.org>
Mon, 15 Aug 2022 21:58:02 +0000 (14:58 -0700)
committerKeith Randall <khr@google.com>
Thu, 15 Sep 2022 14:08:12 +0000 (14:08 +0000)
commite665de28611fd2cbf7789065e7a26ca12c4b9c00
treedf17f0a4e9c095a5eedfef924865cc4fc36dc5f9
parent7c3284401fcd3c6cb4cb747e3332217105d007c0
runtime/race: introduce subarch versioning of race syso

Allow us to select a race .syso file based on subarch values.

Note that this doesn't actually change the syso used. This CL
just moves things around in preparation for adding v3-specific
versions in future CLs.

Change-Id: I14e3c273a7c6f07b13b22193b7a851ea94c765cb
Reviewed-on: https://go-review.googlesource.com/c/go/+/424034
Reviewed-by: Than McIntosh <thanm@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Run-TryBot: Keith Randall <khr@golang.org>
src/go/build/deps_test.go
src/runtime/race/internal/amd64v1/doc.go [new file with mode: 0644]
src/runtime/race/internal/amd64v1/race_darwin.syso [moved from src/runtime/race/race_darwin_amd64.syso with 100% similarity]
src/runtime/race/internal/amd64v1/race_freebsd.syso [moved from src/runtime/race/race_freebsd_amd64.syso with 100% similarity]
src/runtime/race/internal/amd64v1/race_linux.syso [moved from src/runtime/race/race_linux_amd64.syso with 100% similarity]
src/runtime/race/internal/amd64v1/race_netbsd.syso [moved from src/runtime/race/race_netbsd_amd64.syso with 100% similarity]
src/runtime/race/internal/amd64v1/race_openbsd.syso [moved from src/runtime/race/race_openbsd_amd64.syso with 100% similarity]
src/runtime/race/internal/amd64v1/race_windows.syso [moved from src/runtime/race/race_windows_amd64.syso with 100% similarity]
src/runtime/race/internal/amd64v3/doc.go [new file with mode: 0644]
src/runtime/race/race_v1_amd64.go [new file with mode: 0644]
src/runtime/race/race_v3_amd64.go [new file with mode: 0644]