Merge #284165: default-gcc-version: 12 -> 13 if stdenv.isDarwin

...into staging
This commit is contained in:
Vladimír Čunát
2024-03-28 12:19:47 +01:00
-1
View File
@@ -15661,7 +15661,6 @@ with pkgs;
default-gcc-version =
if (with stdenv.targetPlatform; isVc4 || libc == "relibc") then 6
else if stdenv.buildPlatform.isDarwin then 12 # unable to test
else 13;
gcc = pkgs.${"gcc${toString default-gcc-version}"};
gccFun = callPackage ../development/compilers/gcc;