Skip to content

Commit

Permalink
default-gcc-version: 12 -> 13
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Joseph authored and Adam Joseph committed Dec 7, 2023
1 parent b334ff1 commit 5904850
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5904850

Please sign in to comment.