linux: include musl 'getpagesize' function in release

I wonder why nobody else noticed this bug? In any case, this patch fixes it.
This commit is contained in:
Ayke van Laethem
2022-10-09 14:48:45 +02:00
committed by Ron Evans
parent f866d5cc38
commit 9de757205f
6 changed files with 24 additions and 13 deletions
+2 -2
View File
@@ -38,8 +38,8 @@ var Picolibc = Library{
}
},
sourceDir: func() string { return filepath.Join(goenv.Get("TINYGOROOT"), "lib/picolibc/newlib") },
librarySources: func(target string) []string {
return picolibcSources
librarySources: func(target string) ([]string, error) {
return picolibcSources, nil
},
}