public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/cross-gcc] rawhide: 16.2.1
@ 2026-09-08 7:15 Peter Robinson
0 siblings, 0 replies; only message in thread
From: Peter Robinson @ 2026-09-08 7:15 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/cross-gcc
Branch : rawhide
Commit : 6c92b0a7b900fc20ccb04dc2a50b21844051873a
Author : Peter Robinson <pbrobinson@gmail.com>
Date : 2026-09-08T08:14:49+01:00
Stats : +10/-41 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/cross-gcc/c/6c92b0a7b900fc20ccb04dc2a50b21844051873a?branch=rawhide
Log:
16.2.1
---
diff --git a/cross-gcc.spec b/cross-gcc.spec
index cdfb7d4..c30c903 100644
--- a/cross-gcc.spec
+++ b/cross-gcc.spec
@@ -71,9 +71,9 @@
# The gcc versioning information. In a sed command below, the specfile winds
# pre-release version numbers in BASE-VER back to the last actually-released
# number.
-%global DATE 20260501
-%global gitrev f4e68dc3bdc8f1c5d202db92c8c7bcd89c638688
-%global gcc_version 16.1.1
+%global DATE 20260819
+%global gitrev 95ef1679dd68f27b3d056a497318089d85aa0d55
+%global gcc_version 16.2.1
%global gcc_major 16
# Note, cross_gcc_release must be integer, if you want to add suffixes
@@ -93,7 +93,7 @@
Summary: Cross C compiler
Name: %{cross}-gcc
Version: %{gcc_version}
-Release: %{cross_gcc_release}%{?dist}.1
+Release: %{cross_gcc_release}%{?dist}.2
# License tag value taken from the gcc package except the values related
# to newlib which isn't present here
License: GPL-3.0-or-later AND LGPL-3.0-or-later AND (GPL-3.0-or-later WITH GCC-exception-3.1) AND (GPL-3.0-or-later WITH Texinfo-exception) AND (LGPL-2.1-or-later WITH GCC-exception-2.0) AND (GPL-2.0-or-later WITH GCC-exception-2.0) AND (GPL-2.0-or-later WITH GNU-compiler-exception) AND BSL-1.0 AND GFDL-1.3-or-later AND Linux-man-pages-copyleft-2-para AND SunPro AND BSD-1-Clause AND BSD-2-Clause AND BSD-2-Clause-Views AND BSD-3-Clause AND BSD-4-Clause AND BSD-Source-Code AND Zlib AND MIT AND Apache-2.0 AND (Apache-2.0 WITH LLVM-Exception) AND ZPL-2.1 AND ISC AND LicenseRef-Fedora-Public-Domain AND HP-1986 AND curl
@@ -122,7 +122,6 @@ Patch9: gcc16-Wno-format-security.patch
Patch10: gcc16-rh1574936.patch
Patch11: gcc16-d-shared-libphobos.patch
Patch12: gcc16-pr119006.patch
-Patch13: gcc16-pr125079.patch
Patch900: cross-gcc-intl-filename.patch
Patch901: cross-gcc-format-config.patch
@@ -285,7 +284,6 @@ cd %{srcdir}
%patch -P10 -p0 -b .rh1574936
%patch -P11 -p0 -b .shared-libphobos
%patch -P12 -p0 -b .pr119006
-%patch -P13 -p0 -b .pr125079
%patch -P900 -p0 -b .cross-intl~
%patch -P901 -p0 -b .format-config~
@@ -869,6 +867,9 @@ chmod +x %{__ar_no_strip}
%do_files xtensa-linux-gnu %{build_xtensa}
%changelog
+* Tue Sep 08 2026 Peter Robinson <pbrobinson@fedoraproject.org> - 16.2.1-1.2
+- Update to 16.2.1
+
* Wed Jul 15 2026 Fedora Release Engineering <releng@fedoraproject.org> - 16.1.1-1.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
diff --git a/gcc16-libstdc++-docs.patch b/gcc16-libstdc++-docs.patch
index f971627..65f5a03 100644
--- a/gcc16-libstdc++-docs.patch
+++ b/gcc16-libstdc++-docs.patch
@@ -4,7 +4,7 @@
<a class="link" href="https://www.fsf.org" target="_top">FSF
</a>
</p><p>
-+ Release 16.1.1
++ Release 16.2.1
+ </p><p>
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation
@@ -17,7 +17,7 @@
</p><p>
- The API documentation, rendered into HTML, can be viewed online
+ The API documentation, rendered into HTML, can be viewed locally
-+ <a class="link" href="api/index.html" target="_top">for the 16.1.1 release</a>,
++ <a class="link" href="api/index.html" target="_top">for the 16.2.1 release</a>,
+ online
<a class="link" href="https://gcc.gnu.org/onlinedocs/" target="_top">for each GCC release</a>
and
diff --git a/gcc16-pr125079.patch b/gcc16-pr125079.patch
deleted file mode 100644
index 7cb2ce6..0000000
--- a/gcc16-pr125079.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-2026-05-01 Jakub Jelinek <jakub@redhat.com>
-
- PR tree-optimization/125079
- * tree-ssa-strlen.cc (get_string_length): Don't overwrite
- lenstmt variable with another stmt.
-
---- gcc/tree-ssa-strlen.cc.jj 2026-05-01 14:56:28.322882547 +0200
-+++ gcc/tree-ssa-strlen.cc 2026-05-01 21:53:56.978672178 +0200
-@@ -848,7 +848,7 @@ get_string_length (strinfo *si)
- attempt to compute the length from the call statement. */
- if (si->stmt)
- {
-- gimple *stmt = si->stmt, *lenstmt = NULL;
-+ gimple *stmt = si->stmt, *lenstmt = NULL, *g;
- tree callee, lhs, fn, tem;
- location_t loc;
- gimple_stmt_iterator gsi;
-@@ -883,11 +883,11 @@ get_string_length (strinfo *si)
- lhs = force_gimple_operand_gsi (&gsi, lhs, true, NULL_TREE,
- true, GSI_SAME_STMT);
- }
-- lenstmt = gimple_build_assign
-+ g = gimple_build_assign
- (make_ssa_name (TREE_TYPE (gimple_call_arg (stmt, 0))),
- POINTER_PLUS_EXPR,tem, lhs);
-- gsi_insert_before (&gsi, lenstmt, GSI_SAME_STMT);
-- gimple_call_set_arg (stmt, 0, gimple_assign_lhs (lenstmt));
-+ gsi_insert_before (&gsi, g, GSI_SAME_STMT);
-+ gimple_call_set_arg (stmt, 0, gimple_assign_lhs (g));
- lhs = NULL_TREE;
- /* FALLTHRU */
- case BUILT_IN_STRCPY:
diff --git a/sources b/sources
index f9c0b69..b28a18d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (gcc-16.1.1-20260501.tar.xz) = 92019d45dd135a1642c8e8ef2b8e71153c4be2ff59994c28c22eae97ac74ddded4f2aa7d9729af9fb3b7de8401e497e2bc984a28ab7eebf8443ce5b99665bf27
+SHA512 (gcc-16.2.1-20260819.tar.xz) = 6583ec486ab104dbb46aed2adb27d0e77c02e60ecd275c7bc9f0da51f865a61432b3b6d37d57381fde0d7c097ec231b197f6c9ab1b6787511f425aac9bcc037a
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-08 7:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-08 7:15 [rpms/cross-gcc] rawhide: 16.2.1 Peter Robinson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox