We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd4e4b6 commit 573e35cCopy full SHA for 573e35c
cmd/racebuild/racebuild.go
@@ -79,6 +79,21 @@ cp compiler-rt/lib/tsan/go/race_linux_amd64.syso go/src/runtime/race
79
(cd go/src && ./race.bash)
80
`,
81
},
82
+ &Platform{
83
+ OS: "netbsd",
84
+ Arch: "amd64",
85
+ Type: "netbsd-amd64-8_0",
86
+ Script: `#!/usr/bin/env bash
87
+set -e
88
+git clone https://go.googlesource.com/go
89
+git clone http://llvm.org/git/compiler-rt.git
90
+(cd compiler-rt && git checkout $REV)
91
+(cd compiler-rt/lib/tsan/go && CC=clang ./buildgo.sh)
92
+cp compiler-rt/lib/tsan/go/race_netbsd_amd64.syso go/src/runtime/race
93
+# TODO(#24322): Uncomment to test the syso file before accepting it.
94
+# (cd go/src && ./race.bash)
95
+ `,
96
+ },
97
&Platform{
98
OS: "windows",
99
Arch: "amd64",
0 commit comments