Merge pull request #71480 from nh2/glibc-musl-gcc8-werror-fixes

glibc: Fix building with musl on GCC 8
This commit is contained in:
Niklas Hambüchen
2019-10-31 02:52:29 +01:00
committed by GitHub
2 changed files with 16 additions and 2 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ stdenv.mkDerivation ({
++ lib.optional stdenv.buildPlatform.isDarwin ./darwin-cross-build.patch
# Remove after upgrading to glibc 2.28+
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) (fetchpatch {
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform || stdenv.hostPlatform.isMusl) (fetchpatch {
url = "https://sourceware.org/git/?p=glibc.git;a=patch;h=780684eb04298977bc411ebca1eadeeba4877833";
name = "correct-pwent-parsing-issue-and-resulting-build.patch";
sha256 = "08fja894vzaj8phwfhsfik6jj2pbji7kypy3q8pgxvsd508zdv1q";