Merge #168093: gcc: 10 -> 11 on x86-64_darwin (into staging)

This commit is contained in:
Vladimír Čunát 2022-04-14 10:24:37 +02:00
commit 003eb48583
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -12131,7 +12131,7 @@ with pkgs;
num =
if (with stdenv.targetPlatform; isVc4 || libc == "relibc") then 6
else if (stdenv.targetPlatform.isAarch64 && stdenv.isDarwin) then 11
else if (stdenv.targetPlatform.isx86_64 && stdenv.isLinux) then 11
else if (stdenv.targetPlatform.isx86_64) then 11
else if stdenv.targetPlatform.isAarch64 then 9
else 10;
numS = toString num;