From 67ef64c5cfb32382b17d02d46151bd9e504a44dd Mon Sep 17 00:00:00 2001 From: Yureka Date: Sun, 17 Oct 2021 12:01:13 +0200 Subject: [PATCH] llvm: bump min version for musl to 11+ Older LLVM versions are not building with musl right now, while 11+ works fine. --- pkgs/top-level/all-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 85a0ea292a6b..63897826c96b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12266,7 +12266,10 @@ with pkgs; /**/ if platform.isDarwin then (if platform.isAarch64 then 11 else 7) else if platform.isFreeBSD then 7 else if platform.isAndroid then 12 - else if platform.isLinux then (if platform.isRiscV then 11 else 7) + else if platform.isLinux then + /**/ if platform.isRiscV then 11 + else if platform.isMusl then 11 + else 7 else if platform.isWasm then 8 else latest_version; # We take the "max of the mins". Why? Since those are lower bounds of the