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 f24504d commit 68cf80dCopy full SHA for 68cf80d
cmd/racebuild/racebuild.go
@@ -113,6 +113,25 @@ cp compiler-rt/lib/tsan/go/race_linux_ppc64le.syso go/src/runtime/race
113
# (cd go/src && ./race.bash)
114
`,
115
},
116
+ &Platform{
117
+ OS: "linux",
118
+ Arch: "arm64",
119
+ Type: "linux-arm64-packet",
120
+ Script: `#!/usr/bin/env bash
121
+set -e
122
+apt-get update
123
+apt-get install -y git g++
124
+git clone https://go.googlesource.com/go
125
+pushd go
126
+git checkout $GOREV
127
+popd
128
+git clone https://git.llvm.org/git/compiler-rt.git
129
+(cd compiler-rt && git checkout $REV)
130
+(cd compiler-rt/lib/tsan/go && ./buildgo.sh)
131
+cp compiler-rt/lib/tsan/go/race_linux_arm64.syso go/src/runtime/race
132
+(cd go/src && ./race.bash)
133
+ `,
134
+ },
135
&Platform{
136
OS: "netbsd",
137
Arch: "amd64",
0 commit comments