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
commit 846c174ca8
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 0 additions and 1 deletions

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;