default-gcc-version: 12 -> 13

This commit is contained in:
Adam Joseph
2023-12-07 09:11:37 +00:00
committed by Adam Joseph
parent b334ff1e61
commit 59048500b2
+3 -1
View File
@@ -15854,7 +15854,9 @@ with pkgs;
default-gcc-version =
if (with stdenv.targetPlatform; isVc4 || libc == "relibc") then 6
else 12;
else if stdenv.buildPlatform.isDarwin then 12 # unable to test
else if stdenv.buildPlatform.isAarch64 then 12 # unable to test
else 13;
gcc = pkgs.${"gcc${toString default-gcc-version}"};
gccFun = callPackage ../development/compilers/gcc;
gcc-unwrapped = gcc.cc;