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

This commit is contained in:
Weijia Wang
2024-03-22 10:26:10 +01:00
committed by Vladimír Čunát
parent ff53b0c339
commit aab705b24d
-1
View File
@@ -15668,7 +15668,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;