GCC 15 Released ๐
GCC, the GNU Compiler Collection 15.1 released
๐Congratulations to the GCC team!
๐๐๐ฅ๐ฅ ๐คฉ ๐ ๐ฅณ ๐ค ๐ป ๐ฅ ๐
Release Notes
GNU Git Branch and Tag (quite slow)
Github mirror
https://gcc.gnu.org/gcc-15/
Some discussion on hackernews: https://news.ycombinator.com/item?id=43792248
Awhile back, there was some discussion of code like this:
char a[3] = "123";
which results in a an array of 3 chars with no terminating NUL byte, and no warning from the compiler about this (was not able to find that discussion or I would have linked it). This new version of gcc does have a warning for that. https://gcc.gnu.org/pipermail/gcc-patches/2024-June/656014.html And that warning and attempts to fix code triggering it have caused a little bit of drama on the linux kernel mailing list: https://news.ycombinator.com/item?id=43790855