public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rhel-f41-base: 4.9.0-9
@ 2026-06-29 12:26 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:26 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 4d58f0308a85be3295191439f862a605059b2bd1
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2014-06-12T23:31:18+02:00
Stats : +31/-4 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/4d58f0308a85be3295191439f862a605059b2bd1?branch=rhel-f41-base
Log:
4.9.0-9
---
diff --git a/.gitignore b/.gitignore
index 9a68876..fc710d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
/gcc-4.9.0-20140518.tar.bz2
/gcc-4.9.0-20140529.tar.bz2
/gcc-4.9.0-20140604.tar.bz2
+/gcc-4.9.0-20140612.tar.bz2
diff --git a/gcc.spec b/gcc.spec
index 2142602..b520713 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,9 +1,9 @@
-%global DATE 20140604
-%global SVNREV 211244
+%global DATE 20140612
+%global SVNREV 211598
%global gcc_version 4.9.0
# Note, gcc_release must be integer, if you want to add suffixes to
# %{release}, append them after %{gcc_release} on Release: line.
-%global gcc_release 8
+%global gcc_release 9
%global _unpackaged_files_terminate_build 0
%global _performance_build 1
%global multilib_64_archs sparc64 ppc64 ppc64p7 s390x x86_64
@@ -196,6 +196,7 @@ Patch12: gcc49-no-add-needed.patch
Patch14: gcc49-pr56493.patch
Patch15: gcc49-color-auto.patch
Patch16: gcc49-libgo-p224.patch
+Patch17: gcc49-pr45078.patch
Patch1100: cloog-%{cloog_version}-ppc64le-config.patch
@@ -722,6 +723,7 @@ package or when debugging this package.
%endif
%patch16 -p0 -b .libgo-p224~
rm -f libgo/go/crypto/elliptic/p224{,_test}.go
+%patch17 -p0 -b .pr45078~
%if 0%{?_enable_debug_packages}
cat > split-debuginfo.sh <<\EOF
@@ -2782,6 +2784,14 @@ fi
%{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/plugin
%changelog
+* Thu Jun 12 2014 Jakub Jelinek <jakub@redhat.com> 4.9.0-9
+- update from the 4.9 branch
+ - PRs c++/61343, fortran/61406, fortran/61418, ipa/61393,
+ libfortran/61173, middle-end/61456, middle-end/61486,
+ target/61300, target/61431, target/61443, tree-optimization/61452
+ - fix up jump threading (#1094975, PR tree-optimization/61289)
+- include vxworks-dummy.h in arm gcc-plugin-devel (PR plugins/45078)
+
* Thu Jun 5 2014 Jakub Jelinek <jakub@redhat.com> 4.9.0-8
- enable ada on arm
diff --git a/gcc49-pr45078.patch b/gcc49-pr45078.patch
new file mode 100644
index 0000000..0c47112
--- /dev/null
+++ b/gcc49-pr45078.patch
@@ -0,0 +1,16 @@
+2014-06-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR plugins/45078
+ * config.gcc (arm*-*-linux-*): Include vxworks-dummy.h in tm_file.
+
+--- gcc/config.gcc.jj 2014-04-24 23:18:09.552816344 +0200
++++ gcc/config.gcc 2014-06-12 21:25:04.406828996 +0200
+@@ -1021,7 +1021,7 @@ arm*-*-linux-*) # ARM GNU/Linux with E
+ ;;
+ esac
+ tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi"
+- tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h arm/aout.h arm/arm.h"
++ tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h arm/aout.h vxworks-dummy.h arm/arm.h"
+ # Define multilib configuration for arm-linux-androideabi.
+ case ${target} in
+ *-androideabi)
diff --git a/sources b/sources
index b47bb21..f32a8b3 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
e34fca0540d840e5d0f6427e98c92252 cloog-0.18.1.tar.gz
-a1609cd37912bcd6808c238f316f5377 gcc-4.9.0-20140604.tar.bz2
+fad1b2e70231fb0845ee48190a223354 gcc-4.9.0-20140612.tar.bz2
e039bfcfb6c2ab039b8ee69bf883e824 isl-0.12.2.tar.bz2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [rpms/gcc] rhel-f41-base: 4.9.0-9
@ 2026-06-29 12:26 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:26 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 593c3952f826fa80bfca90c1a2abc66f0f04950c
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2014-06-12T23:32:43+02:00
Stats : +31/-7 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/593c3952f826fa80bfca90c1a2abc66f0f04950c?branch=rhel-f41-base
Log:
4.9.0-9
---
diff --git a/.gitignore b/.gitignore
index 9a68876..fc710d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
/gcc-4.9.0-20140518.tar.bz2
/gcc-4.9.0-20140529.tar.bz2
/gcc-4.9.0-20140604.tar.bz2
+/gcc-4.9.0-20140612.tar.bz2
diff --git a/gcc.spec b/gcc.spec
index 67d1e70..b520713 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,9 +1,9 @@
-%global DATE 20140604
-%global SVNREV 211244
+%global DATE 20140612
+%global SVNREV 211598
%global gcc_version 4.9.0
# Note, gcc_release must be integer, if you want to add suffixes to
# %{release}, append them after %{gcc_release} on Release: line.
-%global gcc_release 8
+%global gcc_release 9
%global _unpackaged_files_terminate_build 0
%global _performance_build 1
%global multilib_64_archs sparc64 ppc64 ppc64p7 s390x x86_64
@@ -79,7 +79,7 @@
Summary: Various compilers (C, C++, Objective-C, Java, ...)
Name: gcc
Version: %{gcc_version}
-Release: %{gcc_release}%{?dist}.1
+Release: %{gcc_release}%{?dist}
# libgcc, libgfortran, libgomp, libstdc++ and crtstuff have
# GCC Runtime Exception.
License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD
@@ -196,6 +196,7 @@ Patch12: gcc49-no-add-needed.patch
Patch14: gcc49-pr56493.patch
Patch15: gcc49-color-auto.patch
Patch16: gcc49-libgo-p224.patch
+Patch17: gcc49-pr45078.patch
Patch1100: cloog-%{cloog_version}-ppc64le-config.patch
@@ -722,6 +723,7 @@ package or when debugging this package.
%endif
%patch16 -p0 -b .libgo-p224~
rm -f libgo/go/crypto/elliptic/p224{,_test}.go
+%patch17 -p0 -b .pr45078~
%if 0%{?_enable_debug_packages}
cat > split-debuginfo.sh <<\EOF
@@ -2782,8 +2784,13 @@ fi
%{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/plugin
%changelog
-* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.9.0-8.1
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+* Thu Jun 12 2014 Jakub Jelinek <jakub@redhat.com> 4.9.0-9
+- update from the 4.9 branch
+ - PRs c++/61343, fortran/61406, fortran/61418, ipa/61393,
+ libfortran/61173, middle-end/61456, middle-end/61486,
+ target/61300, target/61431, target/61443, tree-optimization/61452
+ - fix up jump threading (#1094975, PR tree-optimization/61289)
+- include vxworks-dummy.h in arm gcc-plugin-devel (PR plugins/45078)
* Thu Jun 5 2014 Jakub Jelinek <jakub@redhat.com> 4.9.0-8
- enable ada on arm
diff --git a/gcc49-pr45078.patch b/gcc49-pr45078.patch
new file mode 100644
index 0000000..0c47112
--- /dev/null
+++ b/gcc49-pr45078.patch
@@ -0,0 +1,16 @@
+2014-06-12 Jakub Jelinek <jakub@redhat.com>
+
+ PR plugins/45078
+ * config.gcc (arm*-*-linux-*): Include vxworks-dummy.h in tm_file.
+
+--- gcc/config.gcc.jj 2014-04-24 23:18:09.552816344 +0200
++++ gcc/config.gcc 2014-06-12 21:25:04.406828996 +0200
+@@ -1021,7 +1021,7 @@ arm*-*-linux-*) # ARM GNU/Linux with E
+ ;;
+ esac
+ tmake_file="${tmake_file} arm/t-arm arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi"
+- tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h arm/aout.h arm/arm.h"
++ tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h arm/aout.h vxworks-dummy.h arm/arm.h"
+ # Define multilib configuration for arm-linux-androideabi.
+ case ${target} in
+ *-androideabi)
diff --git a/sources b/sources
index b47bb21..f32a8b3 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
e34fca0540d840e5d0f6427e98c92252 cloog-0.18.1.tar.gz
-a1609cd37912bcd6808c238f316f5377 gcc-4.9.0-20140604.tar.bz2
+fad1b2e70231fb0845ee48190a223354 gcc-4.9.0-20140612.tar.bz2
e039bfcfb6c2ab039b8ee69bf883e824 isl-0.12.2.tar.bz2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-29 12:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-29 12:26 [rpms/gcc] rhel-f41-base: 4.9.0-9 Jakub Jelinek
2026-06-29 12:26 Jakub Jelinek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox