- Update to gcc-7-branch head (r277814).
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local static initialization. [gcc#85887] OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gcc7?expand=0&rev=173
This commit is contained in:
parent
9e449670bc
commit
aad8cc268f
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -103,7 +103,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -126,6 +126,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -272,6 +273,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -103,7 +103,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -126,6 +126,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -272,6 +273,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -103,7 +103,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -126,6 +126,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -272,6 +273,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -102,7 +102,7 @@ Name: %{pkgname}
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -125,6 +125,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -271,6 +272,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:335791773d947f44b189cd7034fec1610ea1dbdf2e63f18edad8a592b6de707d
|
||||
size 61657464
|
3
gcc-7.4.1+r277807.tar.xz
Normal file
3
gcc-7.4.1+r277807.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5cdd5e63dfd53da8e1fbba66318ac33bf88e296a3f32f35ac0420ed0350b984b
|
||||
size 61394640
|
@ -239,7 +239,7 @@ BuildRequires: gdb
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 1
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -306,6 +306,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -1062,6 +1063,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
28
gcc7-pr85887.patch
Normal file
28
gcc7-pr85887.patch
Normal file
@ -0,0 +1,28 @@
|
||||
2019-10-22 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/85887
|
||||
* decl.c (expand_static_init): Drop ECF_LEAF from __cxa_guard_acquire
|
||||
and __cxa_guard_release.
|
||||
|
||||
Index: gcc/cp/decl.c
|
||||
===================================================================
|
||||
--- gcc/cp/decl.c (revision 277292)
|
||||
+++ gcc/cp/decl.c (revision 277293)
|
||||
@@ -8589,14 +8589,14 @@ expand_static_init (tree decl, tree init
|
||||
(acquire_name, build_function_type_list (integer_type_node,
|
||||
TREE_TYPE (guard_addr),
|
||||
NULL_TREE),
|
||||
- NULL_TREE, ECF_NOTHROW | ECF_LEAF);
|
||||
+ NULL_TREE, ECF_NOTHROW);
|
||||
if (!release_fn || !abort_fn)
|
||||
vfntype = build_function_type_list (void_type_node,
|
||||
TREE_TYPE (guard_addr),
|
||||
NULL_TREE);
|
||||
if (!release_fn)
|
||||
release_fn = push_library_fn (release_name, vfntype, NULL_TREE,
|
||||
- ECF_NOTHROW | ECF_LEAF);
|
||||
+ ECF_NOTHROW);
|
||||
if (!abort_fn)
|
||||
abort_fn = push_library_fn (abort_name, vfntype, NULL_TREE,
|
||||
ECF_NOTHROW | ECF_LEAF);
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -253,7 +253,7 @@ BuildRequires: gdb
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -318,6 +318,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -448,6 +449,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 5 07:50:44 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
- Update to gcc-7-branch head (r277814).
|
||||
- Add gcc7-pr85887.patch to fix miscompilation with thread-safe local
|
||||
static initialization. [gcc#85887]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 2 07:46:40 UTC 2019 - Richard Biener <rguenther@suse.com>
|
||||
|
||||
|
@ -235,7 +235,7 @@ BuildRequires: gdb
|
||||
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
|
||||
|
||||
URL: https://gcc.gnu.org/
|
||||
Version: 7.4.1+r275405
|
||||
Version: 7.4.1+r277807
|
||||
Release: 0
|
||||
%define gcc_dir_version %(echo %version | sed 's/+.*//' | cut -d '.' -f 1)
|
||||
%define gcc_snapshot_revision %(echo %version | sed 's/[3-9]\.[0-9]\.[0-6]//' | sed 's/+/-/')
|
||||
@ -300,6 +300,7 @@ Patch14: gcc7-pr82248.diff
|
||||
Patch15: gcc7-avoid-fixinc-error.diff
|
||||
Patch17: gcc7-flive-patching.patch
|
||||
Patch18: gcc7-bsc1146475.patch
|
||||
Patch19: gcc7-pr85887.patch
|
||||
# A set of patches from the RH srpm
|
||||
Patch51: gcc41-ppc32-retaddr.patch
|
||||
# Some patches taken from Debian
|
||||
@ -1752,6 +1753,7 @@ ln -s nvptx-newlib/newlib .
|
||||
%patch15
|
||||
%patch17 -p1
|
||||
%patch18
|
||||
%patch19
|
||||
%patch51
|
||||
%patch60
|
||||
%patch61
|
||||
|
Loading…
x
Reference in New Issue
Block a user