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

This commit is contained in:
Weijia Wang 2024-01-27 05:15:37 +01:00 committed by Vladimír Čunát
parent ff53b0c339
commit aab705b24d
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 0 additions and 1 deletions

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;