Merge branch 'c10s' into a10s

This commit is contained in:
eabdullin 2024-10-07 14:12:31 +03:00
commit bba13eafc6
3 changed files with 25 additions and 5 deletions

View File

@ -4,7 +4,7 @@
%global gcc_major 14 %global gcc_major 14
# Note, gcc_release must be integer, if you want to add suffixes to # Note, gcc_release must be integer, if you want to add suffixes to
# %%{release}, append them after %%{gcc_release} on Release: line. # %%{release}, append them after %%{gcc_release} on Release: line.
%global gcc_release 1 %global gcc_release 2
%global nvptx_tools_gitrev 87ce9dc5999e5fca2e1d3478a30888d9864c9804 %global nvptx_tools_gitrev 87ce9dc5999e5fca2e1d3478a30888d9864c9804
%global newlib_cygwin_gitrev d45261f62a15f8abd94a1031020b9a9f455e4eed %global newlib_cygwin_gitrev d45261f62a15f8abd94a1031020b9a9f455e4eed
%global _unpackaged_files_terminate_build 0 %global _unpackaged_files_terminate_build 0
@ -171,7 +171,7 @@ Source0: gcc-%{version}-%{DATE}.tar.xz
Source1: nvptx-tools-%{nvptx_tools_gitrev}.tar.xz Source1: nvptx-tools-%{nvptx_tools_gitrev}.tar.xz
# The source for nvptx-newlib package was pulled from upstream's vcs. Use the # The source for nvptx-newlib package was pulled from upstream's vcs. Use the
# following commands to generate the tarball: # following commands to generate the tarball:
# git clone git://sourceware.org/git/newlib-cygwin.git newlib-cygwin-dir.tmp # git clone https://sourceware.org/git/newlib-cygwin.git newlib-cygwin-dir.tmp
# git --git-dir=newlib-cygwin-dir.tmp/.git archive --prefix=newlib-cygwin-%%{newlib_cygwin_gitrev}/ %%{newlib_cygwin_gitrev} ":(exclude)newlib/libc/sys/linux/include/rpc/*.[hx]" | xz -9e > newlib-cygwin-%%{newlib_cygwin_gitrev}.tar.xz # git --git-dir=newlib-cygwin-dir.tmp/.git archive --prefix=newlib-cygwin-%%{newlib_cygwin_gitrev}/ %%{newlib_cygwin_gitrev} ":(exclude)newlib/libc/sys/linux/include/rpc/*.[hx]" | xz -9e > newlib-cygwin-%%{newlib_cygwin_gitrev}.tar.xz
# rm -rf newlib-cygwin-dir.tmp # rm -rf newlib-cygwin-dir.tmp
Source2: newlib-cygwin-%{newlib_cygwin_gitrev}.tar.xz Source2: newlib-cygwin-%{newlib_cygwin_gitrev}.tar.xz
@ -1188,7 +1188,11 @@ CONFIGURE_OPTS="\
%endif %endif
%ifarch ppc64le %ifarch ppc64le
%if 0%{?rhel} >= 9 %if 0%{?rhel} >= 9
%if 0%{?rhel} >= 10
--with-cpu-32=power9 --with-tune-32=power10 --with-cpu-64=power9 --with-tune-64=power10 \
%else
--with-cpu-32=power9 --with-tune-32=power9 --with-cpu-64=power9 --with-tune-64=power9 \ --with-cpu-32=power9 --with-tune-32=power9 --with-cpu-64=power9 --with-tune-64=power9 \
%endif
%else %else
--with-cpu-32=power8 --with-tune-32=power8 --with-cpu-64=power8 --with-tune-64=power8 \ --with-cpu-32=power8 --with-tune-32=power8 --with-cpu-64=power8 --with-tune-64=power8 \
%endif %endif
@ -3620,10 +3624,13 @@ end
%endif %endif
%changelog %changelog
* Fri Aug 02 2024 Eduard Abdullin <eabdullin@almalinux.org> - 14.2.1-1.alma.1 * Mon Oct 07 2024 Eduard Abdullin <eabdullin@almalinux.org> - 14.2.1-2.alma.1
- Change to almalinux bugtracker - Change to almalinux bugtracker
- Set --with-arch_64=x86-64-v2 on v2 arch - Set --with-arch_64=x86-64-v2 on v2 arch
* Wed Sep 25 2024 Siddhesh Poyarekar <siddhesh@redhat.com> 14.2.1-2
- Default tuning to power 10 for RHEL10 and later (RHEL-56476).
* Thu Aug 1 2024 Jakub Jelinek <jakub@redhat.com> 14.2.1-1 * Thu Aug 1 2024 Jakub Jelinek <jakub@redhat.com> 14.2.1-1
- update from releases/gcc-14 branch - update from releases/gcc-14 branch
- GCC 14.2 release - GCC 14.2 release

13
rpminspect.yaml Normal file
View File

@ -0,0 +1,13 @@
badfuncs:
# GCC doesn't use the "forbidden" functions as such. Just some of its
# sanitizers can instrument those functions which leads to false
# positives in the badfuncs test.
ignore:
- /usr/lib*/libasan.so.*.*.*
- /usr/lib*/libtsan.so.*.*.*
pathmigration:
# Incomplete UsrMove, known but not planned at the moment
ignore:
- /lib*/libgcc_s-*.so.*
- /lib*/libgcc_s.so.*

View File

@ -10,9 +10,9 @@ v=`sed -n 's/^%global gcc_version //p' gcc.spec`
p=`sed -n 's/^%global gitrev //p' gcc.spec` p=`sed -n 's/^%global gitrev //p' gcc.spec`
h=$1 h=$1
if [ "$#" -ge 2 ]; then if [ "$#" -ge 2 ]; then
git clone --dissociate --reference $2 git://gcc.gnu.org/git/gcc.git gcc-dir.tmp git clone --dissociate --reference $2 https://gcc.gnu.org/git/gcc.git gcc-dir.tmp
else else
git clone git://gcc.gnu.org/git/gcc.git gcc-dir.tmp git clone https://gcc.gnu.org/git/gcc.git gcc-dir.tmp
fi fi
git --git-dir=gcc-dir.tmp/.git fetch origin $h git --git-dir=gcc-dir.tmp/.git fetch origin $h
d=`date --iso | sed 's/-//g'` d=`date --iso | sed 's/-//g'`