We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 573e35c commit 763dc24Copy full SHA for 763dc24
cmd/racebuild/racebuild.go
@@ -79,6 +79,23 @@ 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: "linux",
84
+ Arch: "ppc64le",
85
+ Type: "linux-ppc64le-buildlet",
86
+ Script: `#!/usr/bin/env bash
87
+set -e
88
+apt-get update
89
+apt-get install -y git g++
90
+git clone https://go.googlesource.com/go
91
+git clone http://llvm.org/git/compiler-rt.git
92
+(cd compiler-rt && git checkout $REV)
93
+(cd compiler-rt/lib/tsan/go && ./buildgo.sh)
94
+cp compiler-rt/lib/tsan/go/race_linux_ppc64le.syso go/src/runtime/race
95
+# TODO(#23731): Uncomment to test the syso file before accepting it.
96
+# (cd go/src && ./race.bash)
97
+ `,
98
+ },
99
&Platform{
100
OS: "netbsd",
101
Arch: "amd64",
0 commit comments