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 5878a4b commit 706477aCopy full SHA for 706477a
builder/musl.go
@@ -138,11 +138,18 @@ var libMusl = Library{
138
"unistd/*.c",
139
"process/*.c",
140
}
141
+
142
if arch == "arm" {
143
// These files need to be added to the start for some reason.
144
globs = append([]string{"thread/arm/*.c"}, globs...)
145
146
147
+ if arch != "aarch64" && arch != "mips" {
148
+ //aarch64 and mips have no architecture specific code, either they
149
+ // are not supported or don't need any?
150
+ globs = append([]string{"process/" + arch + "/*.s"}, globs...)
151
+ }
152
153
var sources []string
154
seenSources := map[string]struct{}{}
155
basepath := goenv.Get("TINYGOROOT") + "/lib/musl/src/"
0 commit comments