stdenv: gcc_11 → gcc_12

This commit is contained in:
Fabián Heredia Montiel
2023-01-27 21:20:51 -06:00
parent 95ed1ad745
commit cb57273236
+1 -1
View File
@@ -14171,7 +14171,7 @@ with pkgs;
num =
if (with stdenv.targetPlatform; isVc4 || libc == "relibc") then 6
else if (stdenv.targetPlatform.isAarch64 && stdenv.isLinux) then 9
else 11;
else 12;
numS = toString num;
in {
gcc = pkgs.${"gcc${numS}"};