gcc: 14 → 15 (#440456)

This commit is contained in:
Fabián Heredia Montiel
2025-12-03 16:26:44 +00:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -3,7 +3,8 @@
## Highlights {#sec-nixpkgs-release-26.05-highlights}
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
- Create the first release note entry in this section!
- GCC has been updated from GCC 14 to GCC 15.
This introduces some backwards incompatible changes; Refer to the [upstream porting guide](https://gcc.gnu.org/gcc-15/porting_to.html) for details.
## Backward Incompatibilities {#sec-nixpkgs-release-26.05-incompatibilities}
+1 -1
View File
@@ -4410,7 +4410,7 @@ with pkgs;
gerbilPackages-unstable = pkgs.gerbil-support.gerbilPackages-unstable; # NB: don't recurseIntoAttrs for (unstable!) libraries
glow-lang = pkgs.gerbilPackages-unstable.glow-lang;
default-gcc-version = 14;
default-gcc-version = 15;
gcc = pkgs.${"gcc${toString default-gcc-version}"};
gccFun = callPackage ../development/compilers/gcc;
gcc-unwrapped = gcc.cc;