bootstrap-tools-cross: add powerpc64-linux

Also check for powerpc64-linux-elfv1, which does not support musl.
This commit is contained in:
Ryan Burns
2021-01-30 12:34:30 -08:00
parent c17abf8111
commit 76fc6d2870
2 changed files with 4 additions and 1 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 = ''