|
|
|
@ -1,12 +1,38 @@
|
|
|
|
|
%bcond_with snapshot_build
|
|
|
|
|
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
# Unlock LLVM Snapshot LUA functions
|
|
|
|
|
%{llvm_sb_verbose}
|
|
|
|
|
%{llvm_sb}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%global toolchain clang
|
|
|
|
|
|
|
|
|
|
%global maj_ver 16
|
|
|
|
|
%global min_ver 0
|
|
|
|
|
%global patch_ver 6
|
|
|
|
|
# Opt out of https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer
|
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=2158587
|
|
|
|
|
%undefine _include_frame_pointers
|
|
|
|
|
|
|
|
|
|
%bcond_with compat_build
|
|
|
|
|
|
|
|
|
|
%global maj_ver 18
|
|
|
|
|
%global min_ver 1
|
|
|
|
|
%global patch_ver 8
|
|
|
|
|
#global rc_ver 4
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
%global maj_ver %{llvm_snapshot_version_major}
|
|
|
|
|
%global min_ver %{llvm_snapshot_version_minor}
|
|
|
|
|
%global patch_ver %{llvm_snapshot_version_patch}
|
|
|
|
|
%undefine rc_ver
|
|
|
|
|
%endif
|
|
|
|
|
%global compiler_rt_version %{maj_ver}.%{min_ver}.%{patch_ver}
|
|
|
|
|
|
|
|
|
|
%global crt_srcdir compiler-rt-%{compiler_rt_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
%global cmake_srcdir cmake-%{compiler_rt_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
|
|
|
|
|
%if %{with compat_build}
|
|
|
|
|
%global pkg_name compiler-rt%{maj_ver}
|
|
|
|
|
%else
|
|
|
|
|
%global pkg_name compiler-rt
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# see https://sourceware.org/bugzilla/show_bug.cgi?id=25271
|
|
|
|
|
%global optflags %(echo %{optflags} -D_DEFAULT_SOURCE)
|
|
|
|
@ -14,20 +40,29 @@
|
|
|
|
|
# see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93615
|
|
|
|
|
%global optflags %(echo %{optflags} -Dasm=__asm__)
|
|
|
|
|
|
|
|
|
|
Name: compiler-rt
|
|
|
|
|
Version: %{compiler_rt_version}
|
|
|
|
|
Release: 2%{?dist}
|
|
|
|
|
Name: %{pkg_name}
|
|
|
|
|
Version: %{compiler_rt_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: LLVM "compiler-rt" runtime libraries
|
|
|
|
|
|
|
|
|
|
License: Apache-2.0 WITH LLVM-exception OR NCSA OR MIT
|
|
|
|
|
URL: http://llvm.org
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
Source0: %{llvm_snapshot_source_prefix}compiler-rt-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
|
|
|
|
%{llvm_snapshot_extra_source_tags}
|
|
|
|
|
%else
|
|
|
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{compiler_rt_version}%{?rc_ver:-rc%{rc_ver}}/%{crt_srcdir}.tar.xz
|
|
|
|
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{compiler_rt_version}%{?rc_ver:-rc%{rc_ver}}/%{crt_srcdir}.tar.xz.sig
|
|
|
|
|
Source2: release-keys.asc
|
|
|
|
|
Source3: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{compiler_rt_version}%{?rc_ver:-rc%{rc_ver}}/%{cmake_srcdir}.tar.xz
|
|
|
|
|
Source4: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{compiler_rt_version}%{?rc_ver:-rc%{rc_ver}}/%{cmake_srcdir}.tar.xz.sig
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Patch0: 0001-compiler-rt-Fix-FLOAT16-feature-detection.patch
|
|
|
|
|
# The following 2 patches fix issues reported by annocheck.
|
|
|
|
|
# They're backports from:
|
|
|
|
|
# https://github.com/llvm/llvm-project/pull/95796
|
|
|
|
|
# https://github.com/llvm/llvm-project/pull/95839
|
|
|
|
|
Patch1: 95796.patch
|
|
|
|
|
Patch2: 95839.patch
|
|
|
|
|
|
|
|
|
|
BuildRequires: clang
|
|
|
|
|
BuildRequires: cmake
|
|
|
|
@ -36,11 +71,14 @@ BuildRequires: python3
|
|
|
|
|
# We need python3-devel for %%py3_shebang_fix
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: llvm-devel = %{version}
|
|
|
|
|
BuildRequires: llvm-cmake-utils = %{version}
|
|
|
|
|
BuildRequires: zlib-devel
|
|
|
|
|
|
|
|
|
|
# For gpg source verification
|
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
|
|
|
|
|
|
Requires: clang-resource-filesystem%{?isa} = %{version}
|
|
|
|
|
Provides: %{name}(major) = %{maj_ver}
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
The compiler-rt project is a part of the LLVM project. It provides
|
|
|
|
@ -50,14 +88,11 @@ instrumentation, and Blocks C language extension.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE4}' --data='%{SOURCE3}'
|
|
|
|
|
%setup -T -q -b 3 -n %{cmake_srcdir}
|
|
|
|
|
# TODO: It would be more elegant to set -DLLVM_COMMON_CMAKE_UTILS=%{_builddir}/%{cmake_srcdir},
|
|
|
|
|
# but this is not a CACHED variable, so we can't actually set it externally :(
|
|
|
|
|
cd ..
|
|
|
|
|
mv %{cmake_srcdir} cmake
|
|
|
|
|
%autosetup -n %{crt_srcdir} -p2
|
|
|
|
|
|
|
|
|
|
# compiler-rt does not allow configuring LLVM_COMMON_CMAKE_UTILS.
|
|
|
|
|
ln -s %{_datadir}/llvm/cmake ../cmake
|
|
|
|
|
|
|
|
|
|
%py3_shebang_fix lib/hwasan/scripts/hwasan_symbolize
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
@ -68,6 +103,12 @@ export ASMFLAGS=$CFLAGS
|
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
|
|
-DCMAKE_MODULE_PATH=%{_libdir}/cmake/llvm \
|
|
|
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON \
|
|
|
|
|
-DCOMPILER_RT_INSTALL_PATH=%{_prefix}/lib/clang/%{maj_ver} \
|
|
|
|
|
-DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=ON \
|
|
|
|
|
\
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
-DLLVM_VERSION_SUFFIX="%{llvm_snapshot_version_suffix}" \
|
|
|
|
|
%endif
|
|
|
|
|
\
|
|
|
|
|
%if 0%{?__isa_bits} == 64
|
|
|
|
|
-DLLVM_LIBDIR_SUFFIX=64 \
|
|
|
|
@ -81,103 +122,247 @@ export ASMFLAGS=$CFLAGS
|
|
|
|
|
%install
|
|
|
|
|
|
|
|
|
|
%cmake_install
|
|
|
|
|
|
|
|
|
|
# move blacklist/abilist files to where clang expect them
|
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/clang/%{maj_ver}/share
|
|
|
|
|
mv -v %{buildroot}%{_datadir}/*list.txt %{buildroot}%{_libdir}/clang/%{maj_ver}/share/
|
|
|
|
|
|
|
|
|
|
# move sanitizer libs to better place
|
|
|
|
|
%global libclang_rt_installdir lib/linux
|
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/clang/%{maj_ver}/lib
|
|
|
|
|
mv -v %{buildroot}%{_prefix}/%{libclang_rt_installdir}/*_rt* %{buildroot}%{_libdir}/clang/%{maj_ver}/lib
|
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/clang/%{maj_ver}/lib/linux/
|
|
|
|
|
pushd %{buildroot}%{_libdir}/clang/%{maj_ver}/lib
|
|
|
|
|
for i in *.a *.so
|
|
|
|
|
do
|
|
|
|
|
ln -s ../$i linux/$i
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# multilib support: also create symlink from lib to lib64, fixes rhbz#1678240
|
|
|
|
|
# the symlinks will be dangling if the 32 bits version is not installed, but that should be fine
|
|
|
|
|
%ifarch x86_64
|
|
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}/%{_exec_prefix}/lib/clang/%{maj_ver}/lib/linux
|
|
|
|
|
for i in *.a *.so
|
|
|
|
|
do
|
|
|
|
|
target=`echo "$i" | sed -e 's/x86_64/i386/'`
|
|
|
|
|
ln -s ../../../../../lib/clang/%{maj_ver}/lib/$target ../../../../%{_lib}/clang/%{maj_ver}/lib/linux/
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
%ifarch ppc64le
|
|
|
|
|
# Fix install path on ppc64le so that the directory name matches the triple used
|
|
|
|
|
# by clang.
|
|
|
|
|
mv %{buildroot}%{_prefix}/lib/clang/%{maj_ver}/lib/powerpc64le-redhat-linux-gnu %{buildroot}%{_prefix}/lib/clang/%{maj_ver}/lib/ppc64le-redhat-linux-gnu
|
|
|
|
|
%endif
|
|
|
|
|
%ifarch %{ix86}
|
|
|
|
|
# Fix install path on ix86 so that the directory name matches the triple used
|
|
|
|
|
# by clang on both actual ix86 and on x86_64 with -m32:
|
|
|
|
|
%if "%{_target_cpu}" != "i386"
|
|
|
|
|
ln -s i386-redhat-linux-gnu %{buildroot}%{_prefix}/lib/clang/%{maj_ver}/lib/%{_target_cpu}-redhat-linux-gnu
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
|
|
|
|
#%%cmake_build --target check-compiler-rt
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%license LICENSE.TXT
|
|
|
|
|
%{_includedir}/*
|
|
|
|
|
%{_libdir}/clang/%{maj_ver}/lib/*
|
|
|
|
|
%{_libdir}/clang/%{maj_ver}/share/*
|
|
|
|
|
%ifarch x86_64 aarch64
|
|
|
|
|
%{_bindir}/hwasan_symbolize
|
|
|
|
|
%ifarch x86_64 aarch64 riscv64
|
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/bin/*
|
|
|
|
|
%endif
|
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/include/*
|
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/lib/*
|
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/share/*
|
|
|
|
|
#%ifarch x86_64 aarch64
|
|
|
|
|
#{_bindir}/hwasan_symbolize
|
|
|
|
|
#%endif
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Aug 29 2023 Tom Stellard <tstellar@redhat.com> - 16.0.6-2
|
|
|
|
|
* Fri Oct 25 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 18.1.8-1
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
* Tue Jul 23 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.8-1
|
|
|
|
|
- Update to LLVM 18.1.2 (RHEL-28056)
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 18.1.2-4
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Apr 27 2024 Songsong Zhang <U2FsdGVkX1@gmail.com> - 18.1.2-3
|
|
|
|
|
- Add riscv64 support
|
|
|
|
|
|
|
|
|
|
* Mon Apr 08 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.2-2
|
|
|
|
|
- Rebuild LLVM 18.1.2 (RHEL-27724)
|
|
|
|
|
|
|
|
|
|
* Wed Apr 03 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.2-1
|
|
|
|
|
- Update to LLVM 18.1.2 (RHEL-27724)
|
|
|
|
|
|
|
|
|
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
%{?llvm_snapshot_changelog_entry}
|
|
|
|
|
|
|
|
|
|
* Mon Dec 18 2023 Jeremy Newton <alexjnewt at hotmail dot com> - 17.0.6-3
|
|
|
|
|
- Add compiler-rt(major) provides
|
|
|
|
|
|
|
|
|
|
* Wed Dec 13 2023 Miro Hrončok <mhroncok@redhat.com> - 17.0.6-2
|
|
|
|
|
- Fix install path on i686
|
|
|
|
|
|
|
|
|
|
* Wed Nov 29 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.6-1
|
|
|
|
|
- Update to LLVM 17.0.6
|
|
|
|
|
|
|
|
|
|
* Wed Nov 01 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.4-1
|
|
|
|
|
- Update to LLVM 17.0.4
|
|
|
|
|
|
|
|
|
|
* Wed Oct 18 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.3-1
|
|
|
|
|
- Update to LLVM 17.0.3
|
|
|
|
|
|
|
|
|
|
* Thu Oct 05 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.2-1
|
|
|
|
|
- Update to LLVM 17.0.2
|
|
|
|
|
|
|
|
|
|
* Mon Sep 25 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.1-1
|
|
|
|
|
- Update to LLVM 17.0.1
|
|
|
|
|
|
|
|
|
|
* Mon Sep 11 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc4-1
|
|
|
|
|
- Update to LLVM 17.0.0 RC4
|
|
|
|
|
|
|
|
|
|
* Tue Aug 29 2023 Tom Stellard <tstellar@redhat.com> - 17.0.0~rc3-2
|
|
|
|
|
- Fix FLOAT16 detection
|
|
|
|
|
|
|
|
|
|
* Wed Jul 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.6-1
|
|
|
|
|
* Fri Aug 25 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc3-1
|
|
|
|
|
- Update to LLVM 17.0.0 RC3
|
|
|
|
|
|
|
|
|
|
* Wed Aug 23 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc2-1
|
|
|
|
|
- Update to LLVM 17.0.0 RC2
|
|
|
|
|
|
|
|
|
|
* Thu Aug 03 2023 Tom Stellard <tstellar@redhat.com> - 17.0.0~rc1-2
|
|
|
|
|
- Fix for ppc64le
|
|
|
|
|
|
|
|
|
|
* Thu Aug 03 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc1-1
|
|
|
|
|
- Update to LLVM 17.0.0 RC1
|
|
|
|
|
|
|
|
|
|
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.6-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jul 10 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.6-1
|
|
|
|
|
- Update to LLVM 16.0.6
|
|
|
|
|
|
|
|
|
|
* Wed Apr 19 2023 Nikita Popov <npopov@redhat.com> - 16.0.1-1
|
|
|
|
|
* Thu Jun 15 2023 Nikita Popov <npopov@redhat.com> - 16.0.5-2
|
|
|
|
|
- Use llvm-cmake-utils package
|
|
|
|
|
|
|
|
|
|
* Tue Jun 06 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.5-1
|
|
|
|
|
- Update to LLVM 16.0.5
|
|
|
|
|
|
|
|
|
|
* Fri May 19 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.4-1
|
|
|
|
|
- Update to LLVM 16.0.4
|
|
|
|
|
|
|
|
|
|
* Wed May 10 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.3-1
|
|
|
|
|
- Update to LLVM 16.0.3
|
|
|
|
|
|
|
|
|
|
* Thu Apr 27 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.2-1
|
|
|
|
|
- Update to LLVM 16.0.2
|
|
|
|
|
|
|
|
|
|
* Thu Apr 13 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.1-1
|
|
|
|
|
- Update to LLVM 16.0.1
|
|
|
|
|
|
|
|
|
|
* Tue Jan 17 2023 Konrad Kleine <kkleine@redhat.com> - 15.0.7-1
|
|
|
|
|
* Tue Mar 21 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0-1
|
|
|
|
|
- Update to LLVM 16.0.0
|
|
|
|
|
|
|
|
|
|
* Wed Mar 15 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc4-1
|
|
|
|
|
- Update to LLVM 16.0.0 RC4
|
|
|
|
|
|
|
|
|
|
* Mon Mar 06 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc3-2
|
|
|
|
|
- Fix the path of the libraries
|
|
|
|
|
|
|
|
|
|
* Thu Feb 23 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc3-1
|
|
|
|
|
- Update to LLVM 16.0.0 RC3
|
|
|
|
|
|
|
|
|
|
* Wed Feb 15 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc1-1
|
|
|
|
|
- Update to LLVM 16.0.0 RC1
|
|
|
|
|
|
|
|
|
|
* Wed Feb 01 2023 Tom Stellard <tstellar@redhat.com> - 15.0.7-4
|
|
|
|
|
- Omit frame pointers when building
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 15.0.7-3
|
|
|
|
|
- Include the Apache license adopted in 2019.
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 15.0.7-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 13 2023 Nikita Popov <npopov@redhat.com> - 15.0.7-1
|
|
|
|
|
- Update to LLVM 15.0.7
|
|
|
|
|
|
|
|
|
|
* Fri Dec 09 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.6-1
|
|
|
|
|
* Thu Dec 15 2022 Nikita Popov <npopov@redhat.com> - 15.0.6-2
|
|
|
|
|
- Remove ppc64le ieeelongdouble workaround
|
|
|
|
|
|
|
|
|
|
* Tue Dec 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.6-1
|
|
|
|
|
- Update to LLVM 15.0.6
|
|
|
|
|
|
|
|
|
|
* Thu Sep 29 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.1-1
|
|
|
|
|
- Update to LLVM 15.0.1
|
|
|
|
|
* Mon Nov 07 2022 Nikita Popov <npopov@redhat.com> - 15.0.4-1
|
|
|
|
|
- Update to LLVM 15.0.4
|
|
|
|
|
|
|
|
|
|
* Wed Jul 20 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.6-1
|
|
|
|
|
- 14.0.6 Release
|
|
|
|
|
* Fri Sep 23 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-3
|
|
|
|
|
- Switch to building with clang
|
|
|
|
|
|
|
|
|
|
* Wed Jun 22 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.5-1
|
|
|
|
|
- 14.0.5 Release
|
|
|
|
|
* Tue Sep 13 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-2
|
|
|
|
|
- Make sure asm files are built with -fcf-protection
|
|
|
|
|
|
|
|
|
|
* Thu May 12 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-2
|
|
|
|
|
- Disable execstack on s390x
|
|
|
|
|
* Tue Sep 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-1
|
|
|
|
|
- Update to LLVM 15.0.0
|
|
|
|
|
|
|
|
|
|
* Mon Apr 25 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
|
|
|
|
|
- 14.0.0 Release
|
|
|
|
|
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 14.0.5-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Feb 03 2022 Tom Stellard <tstellar@redhat.com> - 13.0.1-1
|
|
|
|
|
- 13.0.1 Release
|
|
|
|
|
* Mon Jun 20 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.5-1
|
|
|
|
|
- Update to 14.0.5
|
|
|
|
|
|
|
|
|
|
* Tue Oct 12 2021 Timm Bäder <tbaeder@redhat.com> - 13.0.0-1
|
|
|
|
|
* Fri Apr 29 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-2
|
|
|
|
|
- Remove llvm-cmake-devel BR
|
|
|
|
|
|
|
|
|
|
* Thu Mar 24 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
|
|
|
|
|
- Update to 14.0.0
|
|
|
|
|
|
|
|
|
|
* Thu Feb 03 2022 Nikita Popov <npopov@redhat.com> - 13.0.1-1
|
|
|
|
|
- Update to LLVM 13.0.1 final
|
|
|
|
|
|
|
|
|
|
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 13.0.1~rc2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 14 2022 Nikita Popov <npopov@redhat.com> - 13.0.1~rc2-1
|
|
|
|
|
- Update to LLVM 13.0.1rc2
|
|
|
|
|
|
|
|
|
|
* Wed Jan 12 2022 Nikita Popov <npopov@redhat.com> - 13.0.1~rc1-1
|
|
|
|
|
- Update to LLVM 13.0.1rc1
|
|
|
|
|
|
|
|
|
|
* Fri Oct 01 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
|
|
|
|
- 13.0.0 Release
|
|
|
|
|
- skip rpath
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 12.0.1-3
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
* Wed Sep 22 2021 Tom Stellard <tsellar@redhat.com> - 13.0.0~rc3-1
|
|
|
|
|
- 13.0.0-rc3 Release
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-1
|
|
|
|
|
- 13.0.0-rc1 Release
|
|
|
|
|
|
|
|
|
|
* Fri Aug 6 2021 Florian Weimer <fweimer@redhat.com> - 12.0.1-2
|
|
|
|
|
- Rebuild to pick up new build flags from redhat-rpm-config (#1984652)
|
|
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 12.0.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 13 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1-1
|
|
|
|
|
* Tue Jul 13 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1
|
|
|
|
|
- 12.0.1 Release
|
|
|
|
|
|
|
|
|
|
* Wed Jun 30 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc3-1
|
|
|
|
|
- 12.0.1-rc3 Release
|
|
|
|
|
|
|
|
|
|
* Fri Jun 04 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc1-2
|
|
|
|
|
- Fix installation paths
|
|
|
|
|
|
|
|
|
|
* Tue Jun 01 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc1-1
|
|
|
|
|
- 12.0.1-rc1 Release
|
|
|
|
|
|
|
|
|
|
* Fri May 21 2021 sguelton@redhat.com - 12.0.0-3
|
|
|
|
|
- Update removal of C++ dep to follow upstream
|
|
|
|
|
- Backport linux/cyclade.h removal patch
|
|
|
|
|
|
|
|
|
|
* Mon May 10 2021 sguelton@redhat.com - 12.0.0-2
|
|
|
|
|
- Backport 82150606fb11d28813ae6
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-1
|
|
|
|
|
- 12.0.0 Release
|
|
|
|
|
|
|
|
|
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 11.1.0-0.3.rc2
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
* Thu Apr 08 2021 sguelton@redhat.com - 12.0.0-0.6.rc5
|
|
|
|
|
- New upstream release candidate
|
|
|
|
|
|
|
|
|
|
* Fri Apr 02 2021 sguelton@redhat.com - 12.0.0-0.5.rc4
|
|
|
|
|
- New upstream release candidate
|
|
|
|
|
|
|
|
|
|
* Thu Mar 11 2021 sguelton@redhat.com - 12.0.0-0.4.rc3
|
|
|
|
|
- LLVM 12.0.0 rc3
|
|
|
|
|
|
|
|
|
|
* Tue Mar 09 2021 sguelton@redhat.com - 12.0.0-0.3.rc2
|
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
|
|
* Thu Feb 25 2021 Serge Guelton - 12.0.0-0.2.rc2
|
|
|
|
|
- 12.0.0-rc2 release
|
|
|
|
|
|
|
|
|
|
* Tue Feb 16 2021 Serge Guelton - 12.0.0-0.1.rc1
|
|
|
|
|
- 12.0.0-rc1 release
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11.1.0-0.3.rc2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 22 2021 Serge Guelton - 11.1.0-0.2.rc2
|
|
|
|
|
- 11.1.0-rc2 release
|
|
|
|
|