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
@@ -31,9 +31,9 @@ var MinGW = Library{
// No flags necessary because there are no files to compile.
return nil
},
librarySources: func(target string) []string {
librarySources: func(target string) ([]string, error) {
// We only use the UCRT DLL file. No source files necessary.
return nil
return nil, nil
},
}