public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/gcc] rhel-f41-base: 4.1.0-16
Date: Mon, 29 Jun 2026 12:22:29 GMT [thread overview]
Message-ID: <178273574929.1.434664989095236342.rpms-gcc-71c6d8251e21@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 71c6d8251e217b0fa2c95593f448a6289f7c0d99
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date : 2006-05-12T17:58:32+00:00
Stats : +59/-12 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/71c6d8251e217b0fa2c95593f448a6289f7c0d99?branch=rhel-f41-base
Log:
4.1.0-16
---
diff --git a/.cvsignore b/.cvsignore
index 916ec2a..0bbbcc6 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gcc-4.1.0-20060509.tar.bz2
+gcc-4.1.0-20060512.tar.bz2
diff --git a/gcc41-dsohandle.patch b/gcc41-dsohandle.patch
new file mode 100644
index 0000000..494dd3a
--- /dev/null
+++ b/gcc41-dsohandle.patch
@@ -0,0 +1,22 @@
+2006-05-12 Jakub Jelinek <jakub@redhat.com>
+
+ * crtstuff.c (__dso_handle): Make __dso_handle const.
+
+--- gcc/crtstuff.c.jj 2005-11-16 10:02:51.000000000 +0100
++++ gcc/crtstuff.c 2006-05-12 18:28:18.000000000 +0200
+@@ -226,12 +226,12 @@ STATIC void *__JCR_LIST__[]
+ dynamic linker takes care of this. */
+
+ #ifdef HAVE_GAS_HIDDEN
+-extern void *__dso_handle __attribute__ ((__visibility__ ("hidden")));
++extern void *const __dso_handle __attribute__ ((__visibility__ ("hidden")));
+ #endif
+ #ifdef CRTSTUFFS_O
+-void *__dso_handle = &__dso_handle;
++void *const __dso_handle = &__dso_handle;
+ #else
+-void *__dso_handle = 0;
++void *const __dso_handle = 0;
+ #endif
+
+ /* The __cxa_finalize function may not be available so we use only a
diff --git a/gcc41.spec b/gcc41.spec
index 04561b5..36c64e4 100644
--- a/gcc41.spec
+++ b/gcc41.spec
@@ -1,6 +1,6 @@
-%define DATE 20060509
+%define DATE 20060512
%define gcc_version 4.1.0
-%define gcc_release 15
+%define gcc_release 16
%define _unpackaged_files_terminate_build 0
%define multilib_64_archs sparc64 ppc64 s390x x86_64
%ifarch %{ix86} x86_64 ia64
@@ -118,9 +118,11 @@ Patch20: gcc41-ppc64-ldouble-stdarg.patch
Patch21: gcc41-pr25874.patch
Patch22: gcc41-pr27388.patch
Patch23: gcc41-pr26729.patch
-Patch24: gcc41-pr27136.patch
-Patch25: gcc41-pr27409.patch
-Patch26: gcc41-pr27421.patch
+Patch24: gcc41-dsohandle.patch
+Patch25: gcc41-pr26881.patch
+Patch26: gcc41-pr27532.patch
+Patch27: gcc41-pr27549.patch
+Patch28: gcc41-pr27548.patch
%define _gnu %{nil}
%ifarch sparc
%define gcc_target_platform sparc64-%{_vendor}-%{_target_os}
@@ -414,7 +416,7 @@ which are required to run programs compiled with the GNAT.
%patch13 -p0 -b .rh184446~
%patch14 -p0 -b .pr21764~
#%patch15 -p0 -b .pr21581~
-%patch16 -p0 -b .pr20297-test~
+%patch16 -p0 -E -b .pr20297-test~
%patch17 -p0 -b .java-pr13212~
%patch18 -p0 -b .objc-rh185398~
%patch19 -p0 -b .tests~
@@ -422,9 +424,11 @@ which are required to run programs compiled with the GNAT.
%patch21 -p0 -b .pr25874~
%patch22 -p0 -b .pr27388~
%patch23 -p0 -b .pr26729~
-%patch24 -p0 -b .pr27136~
-%patch25 -p0 -b .pr27409~
-%patch26 -p0 -b .pr27421~
+%patch24 -p0 -b .dsohandle~
+%patch25 -p0 -b .pr26881~
+%patch26 -p0 -b .pr27532~
+%patch27 -p0 -b .pr27549~
+%patch28 -p0 -b .pr27548~
sed -i -e 's/4\.1\.1/4.1.0/' gcc/BASE-VER gcc/version.c
sed -i -e 's/" (Red Hat[^)]*)"/" (Red Hat %{version}-%{gcc_release})"/' gcc/version.c
@@ -750,6 +754,12 @@ fi
# $RPM_BUILD_ROOT%{_prefix}/%{_lib}/
mv -f $RPM_BUILD_ROOT%{_prefix}/lib/classpath/libgjsmalsa.so* \
$RPM_BUILD_ROOT%{_prefix}/%{_lib}/
+
+if [ "%{_lib}" != "lib" ]; then
+ mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{_lib}/pkgconfig
+ sed '/^libdir/s/lib$/%{_lib}/' $RPM_BUILD_ROOT%{_prefix}/lib/pkgconfig/libgcj.pc \
+ > $RPM_BUILD_ROOT%{_prefix}/%{_lib}/pkgconfig/libgcj.pc
+fi
%endif
pushd $FULLPATH
@@ -1390,7 +1400,7 @@ fi
%dir %{_prefix}/include/c++
%dir %{_prefix}/include/c++/%{gcc_version}
%{_prefix}/include/c++/%{gcc_version}/[gj]*
-%{_prefix}/lib/pkgconfig/libgcj.pc
+%{_prefix}/%{_lib}/pkgconfig/libgcj.pc
%doc rpm.doc/boehm-gc/* rpm.doc/fastjar/* rpm.doc/libffi/*
%doc rpm.doc/libjava/*
%endif
@@ -1461,6 +1471,21 @@ fi
%doc rpm.doc/changelogs/libmudflap/ChangeLog*
%changelog
+* Fri May 12 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-16
+- update from gcc-4_1-branch (-r113637:113722)
+ - PRs bootstrap/26872, c++/27547, fortran/20460, fortran/24549,
+ middle-end/27384, middle-end/27488, target/26545, target/27158
+- fix libgcj.pc location and content on x86_64, ppc64 and s390x (#185230)
+- make __dso_handle const, so that it is added into .data.rel.ro section
+ in shared libraries
+- fix a typo in __builtin_object_size computation (Richard Guenther,
+ PR tree-optimization/27532)
+- fix ICE on -O0 -g if static local variables are in unreachable code blocks
+ (Jan Hubicka, PR debug/26881)
+- fix ICEs with conflicts across abnormal edges (Zdenek Dvorak,
+ PRs tree-optimization/27283, tree-optimization/27548,
+ tree-optimization/27549)
+
* Tue May 9 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-15
- update from gcc-4_1-branch (-r113623:113637)
- PR fortran/27378
diff --git a/sources b/sources
index c6fadee..10210c5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ab95b2f5dc8a0b59f27dad1221678628 gcc-4.1.0-20060509.tar.bz2
+813c9d86906ae0cecf49e51d28689196 gcc-4.1.0-20060512.tar.bz2
next reply other threads:[~2026-06-29 12:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 12:22 Jakub Jelinek [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-06-29 12:22 [rpms/gcc] rhel-f41-base: 4.1.0-16 Jakub Jelinek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178273574929.1.434664989095236342.rpms-gcc-71c6d8251e21@fedoraproject.org \
--to=jakub@fedoraproject.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox