builder (musl): add -fno-stack-protector

Arch Linux has turned on the stack protector by default.
This causes a crash in libc init because the stack protector uses TLS before it is initialized.
Этот коммит содержится в:
Nia Waldvogel 2022-01-08 09:16:53 -05:00 коммит произвёл Ron Evans
родитель ebd4969cde
коммит fe21650010

Просмотреть файл

@ -101,6 +101,7 @@ var Musl = Library{
"-I" + muslDir + "/src/internal",
"-I" + headerPath,
"-I" + muslDir + "/include",
"-fno-stack-protector",
}
},
sourceDir: "lib/musl/src",