Merge pull request #111345 from r-burns/ppc64-big-endian

Enable PPC64 (big-endian)
This commit is contained in:
John Ericson
2021-01-30 16:26:06 -05:00
committed by GitHub
8 changed files with 32 additions and 5 deletions
+2 -1
View File
@@ -19,7 +19,8 @@ in with pkgs; rec {
tarMinimal = gnutar.override { acl = null; };
busyboxMinimal = busybox.override {
useMusl = !stdenv.targetPlatform.isRiscV;
useMusl = with stdenv.targetPlatform; !isRiscV &&
(system == "powerpc64-linux" -> parsed.abi.name != "elfv1");
enableStatic = true;
enableMinimal = true;
extraConfig = ''