public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rhel-f41-base: 4.3.0-3
@ 2026-06-29 12:23 Jakub Jelinek
  0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:23 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rhel-f41-base
Commit : fa37083d6b4c11bb78d03d5bad360a491f46185b
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date   : 2008-03-14T17:51:01+00:00
Stats  : +13/-5 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/fa37083d6b4c11bb78d03d5bad360a491f46185b?branch=rhel-f41-base

Log:
4.3.0-3

---
diff --git a/gcc43.spec b/gcc43.spec
index c9b1d9e..7761036 100644
--- a/gcc43.spec
+++ b/gcc43.spec
@@ -1,6 +1,6 @@
 %define DATE 20080307
 %define gcc_version 4.3.0
-%define gcc_release 2
+%define gcc_release 3
 %define _unpackaged_files_terminate_build 0
 %define multilib_64_archs sparc64 ppc64 s390x x86_64
 %define include_gappletviewer 1
@@ -140,7 +140,6 @@ Patch10: gcc43-rh330771.patch
 Patch11: gcc43-rh341221.patch
 Patch12: gcc43-cpp-pragma.patch
 Patch13: gcc43-java-debug-iface-type.patch
-Patch14: gcc43-pr35498.patch
 
 # On ARM EABI systems, we do want -gnueabi to be part of the
 # target triple.
@@ -437,7 +436,6 @@ which are required to run programs compiled with the GNAT.
 %patch11 -p0 -b .rh341221~
 %patch12 -p0 -b .cpp-pragma~
 %patch13 -p0 -b .java-debug-iface-type~
-%patch14 -p0 -b .pr35498~
 
 tar xzf %{SOURCE4}
 
@@ -696,8 +694,7 @@ rm -fr $RPM_BUILD_ROOT
 
 perl -pi -e \
   's~href="l(ibstdc|atest)~href="http://gcc.gnu.org/onlinedocs/libstdc++/l\1~' \
-  libstdc++-v3/doc/html/documentation.html
-ln -sf documentation.html libstdc++-v3/doc/html/index.html
+  libstdc++-v3/doc/html/api.html
 
 cd obj-%{gcc_target_platform}
 
@@ -1651,6 +1648,17 @@ fi
 %doc rpm.doc/changelogs/libmudflap/ChangeLog*
 
 %changelog
+* Fri Mar 14 2008 Jakub Jelinek <jakub@redhat.com> 4.3.0-3
+- update from gcc-4_3-branch
+  - PRs c++/33887, c++/35328, c++/35337, c++/35469, c/35438, c/35439,
+	fortran/35474, libstdc++/35541, libstdc++/35566, middle-end/35099,
+	middle-end/35185, middle-end/35456, middle-end/35526,
+	middle-end/35549, target/34000, target/35190, target/35225,
+	target/35350, target/35496, target/35540, target/35553,
+	tree-optimization/34989, tree-optimization/35472
+  - fix eclipse build (#434356)
+- libstdc++ doc fix (#436687)
+
 * Fri Mar  7 2008 Jakub Jelinek <jakub@redhat.com> 4.3.0-2
 - fix ppc/ppc64 8/16 bit sync builtins (PR target/35498)
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [rpms/gcc] rhel-f41-base: 4.3.0-3
@ 2026-06-29 12:23 Jakub Jelinek
  0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:23 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rhel-f41-base
Commit : 56a73f457cf66203b95536864082e93662f5a578
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date   : 2008-03-14T17:58:56+00:00
Stats  : +3/-21 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/56a73f457cf66203b95536864082e93662f5a578?branch=rhel-f41-base

Log:
4.3.0-3

---
diff --git a/.cvsignore b/.cvsignore
index 23aa295..3148f9a 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1,2 +1,2 @@
-gcc-4.3.0-20080307.tar.bz2
+gcc-4.3.0-20080314.tar.bz2
 fastjar-0.95.tar.gz

diff --git a/gcc43-pr35498.patch b/gcc43-pr35498.patch
deleted file mode 100644
index 8d2eff5..0000000
--- a/gcc43-pr35498.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-2008-03-07  Jakub Jelinek  <jakub@redhat.com>
-
-	PR target/35498
-	* config/rs6000/rs6000.c (rs6000_expand_compare_and_swapqhi): Shift
-	wdst back after sync_compare_and_swapqhi_internal.
-
---- gcc/config/rs6000/rs6000.c.jj	2008-02-29 09:11:54.000000000 +0100
-+++ gcc/config/rs6000/rs6000.c	2008-03-07 17:22:27.000000000 +0100
-@@ -13858,6 +13858,9 @@ rs6000_expand_compare_and_swapqhi (rtx d
-   emit_insn (gen_sync_compare_and_swapqhi_internal (wdst, mask,
- 						    oldval, newval, mem));
- 
-+  /* Shift the result back.  */
-+  emit_insn (gen_lshrsi3 (wdst, wdst, shift));
-+
-   emit_move_insn (dst, gen_lowpart (mode, wdst));
- }
- 

diff --git a/gcc43.spec b/gcc43.spec
index 7761036..27fc056 100644
--- a/gcc43.spec
+++ b/gcc43.spec
@@ -1,4 +1,4 @@
-%define DATE 20080307
+%define DATE 20080314
 %define gcc_version 4.3.0
 %define gcc_release 3
 %define _unpackaged_files_terminate_build 0

diff --git a/sources b/sources
index daddd57..6fe578e 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-634cd8d08cee6315a4091ec4fadc3b95  gcc-4.3.0-20080307.tar.bz2
+e5fdf4d33dde9d798910296230192fbd  gcc-4.3.0-20080314.tar.bz2
 92a70f9e56223b653bce0f58f90cf950  fastjar-0.95.tar.gz

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-06-29 12:23 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:23 [rpms/gcc] rhel-f41-base: 4.3.0-3 Jakub Jelinek
  -- strict thread matches above, loose matches on Subject: below --
2026-06-29 12:23 Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox