From 28a323e3310f0ae0827d11ad3d8af1bbcfef93db Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 18 Sep 2018 15:42:05 -0400 Subject: [PATCH] gccCrossStageStatic: Don't use MUSL, or any libc when targetting linux Only the regular GCC is built with a libc dependency. --- pkgs/top-level/all-packages.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f9df4ea4fb8..07a95839cdc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6484,7 +6484,6 @@ with pkgs; libcCross1 = if stdenv.targetPlatform.libc == "msvcrt" then targetPackages.windows.mingw_w64_headers else if stdenv.targetPlatform.libc == "libSystem" then darwin.xcode - else if stdenv.targetPlatform.libc == "musl" then musl else null; binutils1 = wrapBintoolsWith { bintools = binutils-unwrapped;