Accepting request 958315 from devel:gcc:next

- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.

OBS-URL: https://build.opensuse.org/request/show/958315
OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gcc12?expand=0&rev=18
This commit is contained in:
Richard Biener 2022-03-01 16:24:44 +00:00 committed by Git OBS Bridge
parent 2473e96bf4
commit 268118deec
60 changed files with 427 additions and 32 deletions

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -333,6 +334,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -333,6 +334,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -333,6 +334,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -110,7 +110,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -136,6 +136,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -333,6 +334,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -109,7 +109,7 @@ Name: %{pkgname}
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -135,6 +135,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -332,6 +333,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f0fe32ce3bcc03b1e44ace728f0ee0506f263dd9f496083a592dfb82dbaa47af
size 81939488

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6e624f90f40fd1db719ea12c72c767367aa4fe8d0dde5b0da2ad7424596930ab
size 81954772

View File

@ -190,7 +190,7 @@
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -372,6 +372,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -1197,6 +1198,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

28
gcc12-d-workaround.patch Normal file
View File

@ -0,0 +1,28 @@
gcc/d/Make-lang.in | 4 ----
1 file changed, 4 deletions(-)
diff --git a/gcc/d/Make-lang.in b/gcc/d/Make-lang.in
index 6c90657d65f..41ca2566eb4 100644
--- a/gcc/d/Make-lang.in
+++ b/gcc/d/Make-lang.in
@@ -62,7 +62,6 @@ ALL_DFLAGS = $(DFLAGS-$@) $(GDCFLAGS) -fversion=IN_GCC $(CHECKING_DFLAGS) \
DCOMPILE.base = $(GDC) $(NO_PIE_CFLAGS) -c $(ALL_DFLAGS) -o $@
DCOMPILE = $(DCOMPILE.base) -MT $@ -MMD -MP -MF $(@D)/$(DEPDIR)/$(*F).TPo
-DPOSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(*F).TPo $(@D)/$(DEPDIR)/$(*F).Po
DLINKER = $(GDC) $(NO_PIE_FLAG) -lstdc++
# Like LINKER, but use a mutex for serializing front end links.
@@ -396,12 +395,9 @@ D_INCLUDES = -I$(srcdir)/d -J$(srcdir)/d/dmd -J$(srcdir)/d/dmd/res
# Override build rules for D frontend.
d/%.o: d/dmd/%.d
$(DCOMPILE) $(D_INCLUDES) $<
- $(DPOSTCOMPILE)
d/common-%.o: d/dmd/common/%.d
$(DCOMPILE) $(D_INCLUDES) $<
- $(DPOSTCOMPILE)
d/root-%.o: d/dmd/root/%.d
$(DCOMPILE) $(D_INCLUDES) $<
- $(DPOSTCOMPILE)

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -207,7 +207,7 @@
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -388,6 +388,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -524,6 +525,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Mar 1 15:54:51 UTC 2022 - Martin Liška <mliska@suse.cz>
- Add gcc12-d-workaround.patch that fixes issue with gcc11 compiler.
-------------------------------------------------------------------
Tue Mar 1 15:49:57 UTC 2022 - Martin Liška <mliska@suse.cz>
- Bump to 673a10aee1aafe0c99bfadc29a7458339bdddb3a, git191845.
-------------------------------------------------------------------
Mon Feb 28 09:40:45 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -186,7 +186,7 @@
%define biarch_targets x86_64 s390x powerpc64 powerpc sparc sparc64
URL: https://gcc.gnu.org/
Version: 12.0.1+git191817
Version: 12.0.1+git191845
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/+/-/')
@ -367,6 +367,7 @@ Patch17: gcc9-reproducible-builds-buildid-for-checksum.patch
Patch18: gcc10-amdgcn-llvm-as.patch
Patch19: gcc11-gdwarf-4-default.patch
Patch20: gcc11-amdgcn-disable-hot-cold-partitioning.patch
Patch21: gcc12-d-workaround.patch
# A set of patches from the RH srpm
Patch51: gcc41-ppc32-retaddr.patch
# Some patches taken from Debian
@ -1992,6 +1993,8 @@ cd ..
# In SLE15 and earlier default to dwarf4, not dwarf5
%if %{suse_version} < 1550
%patch19 -p1
# FIXME: remove the patch once gcc11 got updated (D bug)
%patch20 -p1
%endif
%patch51
%patch60 -p1