Compare commits

..

6 Commits
c10s ... a10s

Author SHA1 Message Date
Eduard Abdullin
2a28fa033a Change to almalinux bugtracker
Set --with-arch_64=x86-64-v2 on v2 arch
2025-09-26 07:20:01 +03:00
Eduard Abdullin
7196f6ab10 Change to almalinux bugtracker
Set --with-arch_64=x86-64-v2 on v2 arch

Use glibc32 instead of /usr/lib/libc.so as BuildRequires
2025-08-14 12:36:25 +03:00
Eduard Abdullin
75551dee2f Change to almalinux bugtracker
Set --with-arch_64=x86-64-v2 on v2 arch

Use glibc32 instead of /usr/lib/libc.so as BuildRequires
2025-06-24 03:45:53 +00:00
Eduard Abdullin
3b1e57e297 Change to almalinux bugtracker
Set --with-arch_64=x86-64-v2 on v2 arch

Use glibc32 instead of /usr/lib/libc.so as BuildRequires
2025-06-17 03:49:45 +00:00
Eduard Abdullin
963d1eae7c Change to almalinux bugtracker
Set --with-arch_64=x86-64-v2 on v2 arch

Use glibc32 instead of /usr/lib/libc.so as BuildRequires
2025-06-13 03:49:46 +00:00
Eduard Abdullin
807bd5fbb6 Change to almalinux bugtracker
Set --with-arch_64=x86-64-v2 on v2 arch

Use glibc32 instead of /usr/lib/libc.so as BuildRequires
2025-06-12 14:53:49 +00:00

View File

@ -172,7 +172,7 @@ BuildRequires: gcc-toolset-%{gts_ver}-devel
Summary: GCC version %{gcc_major}
Name: %{?scl_prefix}gcc
Version: %{gcc_version}
Release: %{gcc_release}.6%{?dist}
Release: %{gcc_release}.6%{?dist}.alma.1
# License notes for some of the less obvious ones:
# gcc/doc/cppinternals.texi: Linux-man-pages-copyleft-2-para
# isl: MIT, BSD-2-Clause
@ -876,7 +876,7 @@ CC="$CC" CXX="$CXX" CFLAGS="$OPT_FLAGS" \
--target nvptx-none --enable-as-accelerator-for=%{gcc_target_platform} \
--enable-languages=c,c++,fortran,lto \
--prefix=%{_prefix} --mandir=%{_mandir} --infodir=%{_infodir} \
--with-bugurl=http://bugzilla.redhat.com/bugzilla \
--with-bugurl=http://bugs.almalinux.org/ \
--enable-checking=release --with-system-zlib \
--with-gcc-major-version-only --without-isl
make %{?_smp_mflags}
@ -936,7 +936,7 @@ offloadtgts=${offloadtgts:+${offloadtgts},}amdgcn-amdhsa
# explicitly.
CONFIGURE_OPTS="\
--prefix=%{_prefix} --mandir=%{_mandir} --infodir=%{_infodir} \
--with-bugurl=http://bugzilla.redhat.com/bugzilla \
--with-bugurl=http://bugs.almalinux.org/ \
--enable-shared --enable-threads=posix --enable-checking=release \
%ifarch ppc64le
--enable-targets=powerpcle-linux \
@ -1021,7 +1021,11 @@ CONFIGURE_OPTS="\
%ifarch x86_64
%if 0%{?rhel} > 8
%if 0%{?rhel} > 9
--with-arch_64=x86-64-v3 \
%ifarch x86_64_v2
--with-arch_64=x86-64-v2 \
%else
--with-arch_64=x86-64-v3 \
%endif
%else
--with-arch_64=x86-64-v2 \
%endif
@ -2902,6 +2906,10 @@ fi
%endif
%changelog
* Fri Sep 26 2025 Eduard Abdullin <eabdullin@almalinux.org> - 15.1.1-2.6.alma.1
- Change to almalinux bugtracker
- Set --with-arch_64=x86-64-v2 on v2 arch
* Tue Sep 9 2025 Siddhesh Poyarekar <siddhesh@redhat.com> 15.1.1-2.6
- Fix glibc32 build dependency (RHEL-113183)