2023-08-02 13:00:24 +00:00
|
|
|
%bcond_with snapshot_build
|
|
|
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
# Unlock LLVM Snapshot LUA functions
|
|
|
|
%{llvm_sb_verbose}
|
|
|
|
%{llvm_sb}
|
|
|
|
%endif
|
|
|
|
|
2022-08-03 09:24:41 +00:00
|
|
|
%global toolchain clang
|
2023-01-09 20:41:19 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2021-09-14 07:20:49 +00:00
|
|
|
%bcond_without check
|
2022-09-07 13:14:24 +00:00
|
|
|
%bcond_with compat_build
|
2021-09-14 07:20:49 +00:00
|
|
|
|
2024-04-03 13:53:50 +00:00
|
|
|
%global maj_ver 18
|
|
|
|
%global min_ver 1
|
2024-07-23 22:21:44 +00:00
|
|
|
%global patch_ver 8
|
2023-09-25 12:33:09 +00:00
|
|
|
#global rc_ver 4
|
2023-08-02 13:00:24 +00:00
|
|
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
%undefine rc_ver
|
|
|
|
%global maj_ver %{llvm_snapshot_version_major}
|
|
|
|
%global min_ver %{llvm_snapshot_version_minor}
|
|
|
|
%global patch_ver %{llvm_snapshot_version_patch}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%global lld_version %{maj_ver}.%{min_ver}.%{patch_ver}
|
|
|
|
|
|
|
|
%global lld_srcdir lld-%{lld_version}%{?rc_ver:rc%{rc_ver}}.src
|
2019-07-16 23:00:59 +00:00
|
|
|
|
2022-09-07 13:14:24 +00:00
|
|
|
%if %{with compat_build}
|
|
|
|
%global pkg_name lld%{maj_ver}
|
|
|
|
%global install_prefix %{_libdir}/llvm%{maj_ver}
|
|
|
|
%global install_includedir %{install_prefix}/include
|
|
|
|
%global install_libdir %{install_prefix}/lib
|
2023-06-14 13:14:09 +00:00
|
|
|
%global install_datadir %{install_prefix}/share
|
2024-04-03 13:53:50 +00:00
|
|
|
%global install_bindir %{install_prefix}/bin
|
2022-09-07 13:14:24 +00:00
|
|
|
%else
|
|
|
|
%global pkg_name lld
|
|
|
|
%global install_prefix /usr
|
|
|
|
%global install_includedir %{_includedir}
|
|
|
|
%global install_libdir %{_libdir}
|
2023-06-14 13:14:09 +00:00
|
|
|
%global install_datadir %{_datadir}
|
2024-04-03 13:53:50 +00:00
|
|
|
%global install_bindir %{_bindir}
|
2022-09-07 13:14:24 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
Name: %{pkg_name}
|
2023-08-02 13:00:24 +00:00
|
|
|
Version: %{lld_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
2024-07-23 22:21:44 +00:00
|
|
|
Release: 1%{?dist}
|
2017-04-13 19:34:21 +00:00
|
|
|
Summary: The LLVM Linker
|
|
|
|
|
2023-01-19 18:53:07 +00:00
|
|
|
License: Apache-2.0 WITH LLVM-exception OR NCSA
|
2017-04-13 19:34:21 +00:00
|
|
|
URL: http://llvm.org
|
2023-08-02 13:00:24 +00:00
|
|
|
%if %{with snapshot_build}
|
|
|
|
Source0: %{llvm_snapshot_source_prefix}lld-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
|
|
|
%{llvm_snapshot_extra_source_tags}
|
|
|
|
%else
|
2022-01-12 08:24:44 +00:00
|
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{lld_srcdir}.tar.xz
|
|
|
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{lld_srcdir}.tar.xz.sig
|
2023-06-14 13:14:09 +00:00
|
|
|
Source2: release-keys.asc
|
2023-08-02 13:00:24 +00:00
|
|
|
%endif
|
2017-04-13 19:34:21 +00:00
|
|
|
|
2021-02-16 21:16:08 +00:00
|
|
|
# Bundle libunwind header need during build for MachO support
|
2021-02-25 14:25:34 +00:00
|
|
|
Patch1: 0002-PATCH-lld-Import-compact_unwind_encoding.h-from-libu.patch
|
2018-08-30 23:39:55 +00:00
|
|
|
|
2022-08-03 09:24:41 +00:00
|
|
|
BuildRequires: clang
|
2018-12-04 14:43:38 +00:00
|
|
|
BuildRequires: cmake
|
2020-07-20 07:10:43 +00:00
|
|
|
BuildRequires: ninja-build
|
2022-09-07 13:14:24 +00:00
|
|
|
%if %{with compat_build}
|
|
|
|
BuildRequires: llvm%{maj_ver}-devel = %{version}
|
2023-06-14 13:14:09 +00:00
|
|
|
BuildRequires: llvm%{maj_ver}-cmake-utils = %{version}
|
2022-09-07 13:14:24 +00:00
|
|
|
%else
|
2018-12-04 14:43:38 +00:00
|
|
|
BuildRequires: llvm-devel = %{version}
|
2023-06-14 13:14:09 +00:00
|
|
|
BuildRequires: llvm-cmake-utils = %{version}
|
2019-03-06 18:02:53 +00:00
|
|
|
BuildRequires: llvm-test = %{version}
|
2022-09-07 13:14:24 +00:00
|
|
|
BuildRequires: llvm-googletest = %{version}
|
|
|
|
%endif
|
2018-12-04 14:43:38 +00:00
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: zlib-devel
|
2017-04-13 19:34:21 +00:00
|
|
|
|
2018-08-30 23:39:55 +00:00
|
|
|
# For make check:
|
2018-11-22 12:19:43 +00:00
|
|
|
BuildRequires: python3-rpm-macros
|
2018-12-18 06:59:48 +00:00
|
|
|
BuildRequires: python3-lit
|
2018-08-30 23:39:55 +00:00
|
|
|
|
2019-12-05 18:06:48 +00:00
|
|
|
# For gpg source verification
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
|
2020-02-14 12:41:34 +00:00
|
|
|
Requires(post): %{_sbindir}/update-alternatives
|
|
|
|
Requires(preun): %{_sbindir}/update-alternatives
|
2019-02-15 22:11:28 +00:00
|
|
|
|
2022-09-07 13:14:24 +00:00
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
2019-11-14 19:04:00 +00:00
|
|
|
|
2017-04-13 19:34:21 +00:00
|
|
|
%description
|
|
|
|
The LLVM project linker.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Libraries and header files for LLD
|
2022-09-07 13:14:24 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
%if %{without compat_build}
|
2020-08-10 16:20:27 +00:00
|
|
|
# lld tools are referenced in the cmake files, so we need to add lld as a
|
|
|
|
# dependency.
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2022-09-07 13:14:24 +00:00
|
|
|
%endif
|
2023-12-18 21:15:55 +00:00
|
|
|
Provides: %{name}-devel(major) = %{maj_ver}
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains library and header files needed to develop new native
|
|
|
|
programs that use the LLD infrastructure.
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: LLD shared libraries
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
Shared libraries for LLD.
|
|
|
|
|
|
|
|
%prep
|
2023-08-02 13:00:24 +00:00
|
|
|
%if %{without snapshot_build}
|
2023-06-14 13:14:09 +00:00
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
2023-08-02 13:00:24 +00:00
|
|
|
%endif
|
|
|
|
|
2021-02-25 14:25:34 +00:00
|
|
|
%autosetup -n %{lld_srcdir} -p2
|
2020-08-10 16:20:27 +00:00
|
|
|
|
2017-04-13 19:34:21 +00:00
|
|
|
%build
|
|
|
|
|
2020-07-20 07:10:43 +00:00
|
|
|
%cmake \
|
|
|
|
-GNinja \
|
2022-07-11 10:57:32 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
2022-09-07 13:14:24 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=%{install_prefix} \
|
2017-04-13 19:34:21 +00:00
|
|
|
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
2017-07-04 17:08:26 +00:00
|
|
|
-DLLVM_DYLIB_COMPONENTS="all" \
|
2023-06-14 13:14:09 +00:00
|
|
|
-DLLVM_COMMON_CMAKE_UTILS=%{install_datadir}/llvm/cmake \
|
2020-07-20 07:10:43 +00:00
|
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON \
|
2018-11-22 12:19:43 +00:00
|
|
|
-DPYTHON_EXECUTABLE=%{__python3} \
|
2024-04-03 13:53:50 +00:00
|
|
|
%if %{with snapshot_build}
|
|
|
|
-DLLVM_VERSION_SUFFIX="%{llvm_snapshot_version_suffix}" \
|
|
|
|
%endif
|
2018-08-30 23:39:55 +00:00
|
|
|
-DLLVM_INCLUDE_TESTS=ON \
|
|
|
|
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
|
|
|
|
-DLLVM_LIT_ARGS="-sv \
|
2018-12-04 14:43:38 +00:00
|
|
|
--path %{_libdir}/llvm" \
|
2024-04-03 13:53:50 +00:00
|
|
|
%if %{with compat_build}
|
|
|
|
-DLLVM_CMAKE_DIR=%{install_libdir}/cmake/llvm \
|
|
|
|
%else
|
2017-04-13 19:34:21 +00:00
|
|
|
%if 0%{?__isa_bits} == 64
|
2022-09-07 13:14:24 +00:00
|
|
|
-DLLVM_LIBDIR_SUFFIX=64 \
|
2017-04-13 19:34:21 +00:00
|
|
|
%else
|
2022-09-07 13:14:24 +00:00
|
|
|
-DLLVM_LIBDIR_SUFFIX= \
|
|
|
|
%endif
|
2017-04-13 19:34:21 +00:00
|
|
|
%endif
|
2022-09-07 13:14:24 +00:00
|
|
|
-DLLVM_MAIN_SRC_DIR=%{_datadir}/llvm/src
|
2017-04-13 19:34:21 +00:00
|
|
|
|
2020-07-20 07:10:43 +00:00
|
|
|
%cmake_build
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%install
|
2019-07-16 23:00:59 +00:00
|
|
|
|
|
|
|
# Install libraries and binaries
|
2020-07-20 07:10:43 +00:00
|
|
|
%cmake_install
|
2017-04-13 19:34:21 +00:00
|
|
|
|
2021-02-16 21:16:08 +00:00
|
|
|
# This is generated by Patch1 during build and (probably) must be removed afterward
|
2022-09-07 13:14:24 +00:00
|
|
|
rm %{buildroot}%{install_includedir}/mach-o/compact_unwind_encoding.h
|
2021-02-16 21:16:08 +00:00
|
|
|
|
2024-04-03 13:53:50 +00:00
|
|
|
%if %{with compat_build}
|
|
|
|
# Add version suffix to binaries
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
for f in %{buildroot}/%{install_bindir}/*; do
|
|
|
|
filename=`basename $f`
|
|
|
|
ln -s ../../%{install_bindir}/$filename %{buildroot}/%{_bindir}/$filename-%{maj_ver}
|
|
|
|
done
|
|
|
|
%else
|
2019-08-20 05:04:24 +00:00
|
|
|
# Required when using update-alternatives:
|
|
|
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Alternatives/
|
|
|
|
touch %{buildroot}%{_bindir}/ld
|
|
|
|
|
2023-05-11 20:07:24 +00:00
|
|
|
install -D -m 644 -t %{buildroot}%{_mandir}/man1/ docs/ld.lld.1
|
|
|
|
|
2024-04-03 13:53:50 +00:00
|
|
|
|
2019-02-15 22:11:28 +00:00
|
|
|
%post
|
|
|
|
%{_sbindir}/update-alternatives --install %{_bindir}/ld ld %{_bindir}/ld.lld 1
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
%{_sbindir}/update-alternatives --remove ld %{_bindir}/ld.lld
|
|
|
|
fi
|
2022-09-07 13:14:24 +00:00
|
|
|
%endif
|
2019-02-13 15:57:08 +00:00
|
|
|
|
2017-04-13 19:34:21 +00:00
|
|
|
%check
|
2019-03-21 19:48:31 +00:00
|
|
|
|
2021-09-14 07:20:49 +00:00
|
|
|
%if %{with check}
|
2020-07-20 07:10:43 +00:00
|
|
|
%cmake_build --target check-lld
|
2019-03-21 19:48:31 +00:00
|
|
|
%endif
|
2017-04-13 19:34:21 +00:00
|
|
|
|
2024-04-03 13:53:50 +00:00
|
|
|
%if %{without compat_build}
|
2019-01-22 17:40:19 +00:00
|
|
|
%ldconfig_scriptlets libs
|
2022-09-07 13:14:24 +00:00
|
|
|
%endif
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%files
|
2020-07-29 11:26:30 +00:00
|
|
|
%license LICENSE.TXT
|
2019-02-15 22:11:28 +00:00
|
|
|
%ghost %{_bindir}/ld
|
2024-04-03 13:53:50 +00:00
|
|
|
%{install_bindir}/lld*
|
|
|
|
%{install_bindir}/ld.lld
|
|
|
|
%{install_bindir}/ld64.lld
|
|
|
|
%{install_bindir}/wasm-ld
|
|
|
|
%if %{without compat_build}
|
2023-05-11 20:07:24 +00:00
|
|
|
%{_mandir}/man1/ld.lld.1*
|
2024-04-03 13:53:50 +00:00
|
|
|
%else
|
|
|
|
%{_bindir}/*-%{maj_ver}
|
2022-09-07 13:14:24 +00:00
|
|
|
%endif
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%files devel
|
2022-09-07 13:14:24 +00:00
|
|
|
%{install_includedir}/lld
|
|
|
|
%{install_libdir}/liblld*.so
|
|
|
|
%{install_libdir}/cmake/lld/
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%files libs
|
2022-09-07 13:14:24 +00:00
|
|
|
%{install_libdir}/liblld*.so.*
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%changelog
|
2024-07-23 22:21:44 +00:00
|
|
|
* Tue Jul 23 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.8-1
|
|
|
|
- Update to LLVM 18.1.8 (RHEL-28056)
|
|
|
|
- Enable pie (RHEL-33504)
|
|
|
|
|
2024-06-24 16:00:28 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 18.1.2-3
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-04-08 22:06:25 +00:00
|
|
|
* Mon Apr 08 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.2-2
|
|
|
|
- Rebuild LLVM 18.1.2 (RHEL-27724)
|
|
|
|
|
2024-04-03 13:53:50 +00:00
|
|
|
* Wed Apr 03 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.2-1
|
|
|
|
- Update to LLVM 18.1.2 (RHEL-27724)
|
|
|
|
|
2024-01-25 04:27:11 +00:00
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 06:04:02 +00:00
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-12-18 21:15:55 +00:00
|
|
|
* Mon Dec 18 2023 Jeremy Newton <alexjnewt at hotmail dot com> - 17.0.6-2
|
|
|
|
- Add lld-devel(major) provides
|
|
|
|
|
2023-11-29 12:16:29 +00:00
|
|
|
* Wed Nov 29 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.6-1
|
|
|
|
- Update to LLVM 17.0.6
|
|
|
|
|
2023-11-22 19:34:46 +00:00
|
|
|
* Wed Nov 22 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.5-1
|
|
|
|
- Update to LLVM 17.0.5
|
|
|
|
|
2023-11-01 21:51:05 +00:00
|
|
|
* Wed Nov 01 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.4-1
|
|
|
|
- Update to LLVM 17.0.4
|
|
|
|
|
2023-10-18 10:33:04 +00:00
|
|
|
* Wed Oct 18 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.3-1
|
|
|
|
- Update to LLVM 17.0.3
|
|
|
|
|
2023-10-04 23:54:17 +00:00
|
|
|
* Wed Oct 04 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.2-1
|
|
|
|
- Update to LLVM 17.0.2
|
|
|
|
|
2023-09-25 12:33:09 +00:00
|
|
|
* Mon Sep 25 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.1-1
|
|
|
|
- Update to LLVM 17.0.1
|
|
|
|
|
2023-09-11 14:22:05 +00:00
|
|
|
* Mon Sep 11 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc4-1
|
|
|
|
- Update to LLVM 17.0.0 RC4
|
|
|
|
|
2023-08-25 20:46:02 +00:00
|
|
|
* Fri Aug 25 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc3-1
|
|
|
|
- Update to LLVM 17.0.0 RC3
|
|
|
|
|
2023-08-23 13:06:34 +00:00
|
|
|
* Wed Aug 23 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc2-1
|
|
|
|
- Update to LLVM 17.0.0 RC2
|
|
|
|
|
2023-08-02 13:00:24 +00:00
|
|
|
* Wed Aug 02 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc1-1
|
|
|
|
- Update to LLVM 17.0.0 RC1
|
|
|
|
|
2023-07-20 12:53:43 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-07-10 14:57:13 +00:00
|
|
|
* Mon Jul 10 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.6-1
|
|
|
|
- Update to LLVM 16.0.6
|
|
|
|
|
2023-06-14 13:14:09 +00:00
|
|
|
* Tue Jun 13 2023 Nikita Popov <npopov@redhat.com> - 16.0.5-2
|
|
|
|
- Use llvm-cmake-utils package
|
|
|
|
|
2023-06-06 14:40:03 +00:00
|
|
|
* Tue Jun 06 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.5-1
|
|
|
|
- Update to LLVM 16.0.5
|
|
|
|
|
2023-05-19 21:19:21 +00:00
|
|
|
* Fri May 19 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.4-1
|
|
|
|
- Update to LLVM 16.0.4
|
|
|
|
|
2023-05-11 20:07:24 +00:00
|
|
|
* Thu May 11 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.3-2
|
|
|
|
- Distribute the manpage. Fix rhbz#2203231
|
|
|
|
|
2023-05-10 17:29:43 +00:00
|
|
|
* Wed May 10 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.3-1
|
|
|
|
- Update to LLVM 16.0.3
|
|
|
|
|
2023-04-26 20:50:27 +00:00
|
|
|
* Wed Apr 26 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.2-1
|
|
|
|
- Update to LLVM 16.0.2
|
|
|
|
|
2023-04-13 10:47:39 +00:00
|
|
|
* Thu Apr 13 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.1-1
|
|
|
|
- Update to LLVM 16.0.1
|
|
|
|
|
2023-03-27 15:07:50 +00:00
|
|
|
* Fri Mar 24 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0-2
|
|
|
|
- Use installed llvm_gtest
|
|
|
|
|
2023-03-21 18:13:58 +00:00
|
|
|
* Tue Mar 21 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0-1
|
|
|
|
- Update to LLVM 16.0.0
|
|
|
|
|
2023-03-15 17:40:26 +00:00
|
|
|
* Wed Mar 15 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc4-1
|
|
|
|
- Update to LLVM 16.0.0 RC4
|
|
|
|
|
2023-02-23 15:00:56 +00:00
|
|
|
* Thu Feb 23 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc3-1
|
|
|
|
- Update to LLVM 16.0.0 RC3
|
|
|
|
|
2023-02-14 18:07:03 +00:00
|
|
|
* Tue Feb 14 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc1-1
|
|
|
|
- Update to LLVM 16.0.0 RC1
|
|
|
|
|
2023-01-19 18:53:07 +00:00
|
|
|
* Thu Jan 19 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 15.0.7-3
|
|
|
|
- Update license to SPDX identifiers.
|
|
|
|
- Include the Apache license adopted in 2019.
|
|
|
|
|
2023-01-19 18:08:41 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 15.0.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2023-01-13 09:24:54 +00:00
|
|
|
* Fri Jan 13 2023 Nikita Popov <npopov@redhat.com> - 15.0.7-1
|
|
|
|
- Update to LLVM 15.0.7
|
|
|
|
|
2023-01-09 20:41:19 +00:00
|
|
|
* Mon Jan 09 2023 Tom Stellard <tstellar@redhat.com> - 15.0.6-2
|
|
|
|
- Omit frame pointers when building
|
|
|
|
|
2022-12-06 07:34:12 +00:00
|
|
|
* Tue Dec 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.6-1
|
|
|
|
- Update to LLVM 15.0.6
|
|
|
|
|
2022-11-14 18:47:31 +00:00
|
|
|
* Mon Nov 14 2022 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 15.0.4-2
|
|
|
|
- Enable LTO.
|
|
|
|
|
2022-11-07 08:36:58 +00:00
|
|
|
* Mon Nov 07 2022 Nikita Popov <npopov@redhat.com> - 15.0.4-1
|
|
|
|
- Update to LLVM 15.0.4
|
|
|
|
|
2022-09-29 10:57:16 +00:00
|
|
|
* Tue Oct 11 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-2
|
|
|
|
- Remove lld-test package
|
|
|
|
|
2022-08-03 09:24:41 +00:00
|
|
|
* Tue Sep 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-1
|
|
|
|
- Update to LLVM 15.0.0
|
|
|
|
|
2022-08-09 11:09:49 +00:00
|
|
|
* Tue Aug 09 2022 Nikita Popov <npopov@redhat.com> - 14.0.5-4
|
|
|
|
- Backport --package-metadata flag
|
|
|
|
|
2022-07-21 19:43:37 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 14.0.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-07-11 10:57:32 +00:00
|
|
|
* Mon Jul 11 2022 Konrad Kleine <kkleine@redhat.com> - 14.0.5-2
|
|
|
|
- Set build type to RelWithDebInfo
|
|
|
|
|
2022-06-18 07:12:13 +00:00
|
|
|
* Fri Jun 17 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.5-1
|
|
|
|
- Update to 14.0.5
|
|
|
|
|
2022-03-31 04:32:15 +00:00
|
|
|
* Thu Mar 31 2022 Tom Stellard <tstellar@redhat.com> - 14.0.0-2
|
|
|
|
- Fix CI test failure: gcc-compat-basic
|
|
|
|
|
2022-02-28 09:19:35 +00:00
|
|
|
* Mon Feb 28 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0~rc1-1
|
|
|
|
- Update to 14.0.0rc1
|
|
|
|
|
2022-02-03 09:49:57 +00:00
|
|
|
* Thu Feb 03 2022 Nikita Popov <npopov@redhat.com> - 13.0.1-1
|
|
|
|
- Update to LLVM 13.0.1 final
|
|
|
|
|
2022-02-01 08:22:38 +00:00
|
|
|
* Tue Feb 01 2022 Nikita Popov <npopov@redhat.com> - 13.0.1~rc3-1
|
|
|
|
- Update to LLVM 13.0.1 rc3
|
|
|
|
|
2022-01-20 17:56:43 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 13.0.1~rc2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-14 08:24:42 +00:00
|
|
|
* Fri Jan 14 2022 Nikita Popov <npopov@redhat.com> - 13.0.1~rc2-1
|
|
|
|
- Update to LLVM 13.0.1rc2
|
|
|
|
|
2022-01-12 08:24:44 +00:00
|
|
|
* Wed Jan 12 2022 Nikita Popov <npopov@redhat.com> - 13.0.1~rc1-1
|
|
|
|
- Update to LLVM 13.0.1rc1
|
|
|
|
|
2021-10-06 01:54:42 +00:00
|
|
|
* Wed Oct 06 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-2
|
|
|
|
- Rebuild for llvm soname bump
|
|
|
|
|
2021-10-01 19:21:38 +00:00
|
|
|
* Fri Oct 01 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
|
|
|
- 13.0.0 Release
|
|
|
|
|
2021-09-30 15:15:44 +00:00
|
|
|
* Thu Sep 30 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc4-1
|
|
|
|
- 13.0.0-rc4 Release
|
|
|
|
|
2021-09-20 21:05:55 +00:00
|
|
|
* Mon Sep 20 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-3
|
|
|
|
- 13.0.0-rc3 Release
|
|
|
|
|
2021-09-14 07:20:49 +00:00
|
|
|
* Tue Sep 14 2021 Konrad Kleine <kkleine@redhat.com> - 13.0.0~rc1-2
|
|
|
|
- Add --without=check option
|
|
|
|
|
2021-08-06 20:26:55 +00:00
|
|
|
* Fri Aug 06 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-1
|
|
|
|
- 13.0.0-rc1 Release
|
|
|
|
|
2021-07-22 13:02:20 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 12.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-14 00:32:30 +00:00
|
|
|
* Tue Jul 13 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1-1
|
|
|
|
- 12.0.1 Release
|
|
|
|
|
2021-06-30 13:37:40 +00:00
|
|
|
* Wed Jun 30 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc3-1
|
|
|
|
- 12.0.1-rc3 Release
|
|
|
|
|
2021-06-01 21:24:25 +00:00
|
|
|
* Tue Jun 01 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc1-1
|
|
|
|
- 12.0.1-rc1 Release
|
|
|
|
|
2021-04-17 03:28:55 +00:00
|
|
|
* Fri Apr 16 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-1
|
|
|
|
- 12.0.0 Release
|
|
|
|
|
2021-04-08 12:20:10 +00:00
|
|
|
* Thu Apr 08 2021 sguelton@redhat.com - 12.0.0-0.8.rc5
|
|
|
|
- New upstream release candidate
|
|
|
|
|
2021-04-07 19:32:23 +00:00
|
|
|
* Wed Apr 07 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-0.7.rc4
|
|
|
|
- Set executable permissions on run-lit-tests
|
|
|
|
|
2021-04-02 10:32:18 +00:00
|
|
|
* Fri Apr 02 2021 sguelton@redhat.com - 12.0.0-0.6.rc4
|
|
|
|
- New upstream release candidate
|
|
|
|
|
2021-03-31 16:33:51 +00:00
|
|
|
* Wed Mar 31 2021 Jonathan Wakely <jwakely@redhat.com> - 12.0.0-0.5.rc3
|
|
|
|
- Rebuilt for removed libstdc++ symbols (#1937698)
|
|
|
|
|
2021-03-11 13:54:42 +00:00
|
|
|
* Thu Mar 11 2021 sguelton@redhat.com - 12.0.0-0.4.rc3
|
|
|
|
- LLVM 12.0.0 rc3
|
|
|
|
|
2021-03-10 06:16:21 +00:00
|
|
|
* Wed Mar 10 2021 sguelton@redhat.com - 12.0.0-0.3.rc2
|
|
|
|
- rebuilt
|
|
|
|
|
2021-02-24 14:39:17 +00:00
|
|
|
* Wed Feb 24 2021 sguelton@redhat.com - 12.0.0-0.2.rc2
|
|
|
|
- llvm 12.0.0-rc2 release
|
|
|
|
|
2021-02-16 21:16:08 +00:00
|
|
|
* Tue Feb 16 2021 sguelton@redhat.com - 12.0.0-0.1.rc1
|
|
|
|
- llvm 12.0.0-rc1 release
|
|
|
|
|
2021-01-26 18:35:34 +00:00
|
|
|
* 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
|
|
|
|
|
2021-01-23 07:36:37 +00:00
|
|
|
* Fri Jan 22 2021 Serge Guelton - 11.1.0-0.2.rc2
|
|
|
|
- llvm 11.1.0-rc2 release
|
|
|
|
|
2021-01-14 16:19:12 +00:00
|
|
|
* Thu Jan 14 2021 Serge Guelton - 11.1.0-0.1.rc1
|
|
|
|
- 11.1.0-rc1 release
|
|
|
|
|
2021-01-06 09:43:20 +00:00
|
|
|
* Wed Jan 06 2021 Serge Guelton - 11.0.1-3
|
|
|
|
- LLVM 11.0.1 final
|
|
|
|
|
2020-12-22 20:46:26 +00:00
|
|
|
* Tue Dec 22 2020 sguelton@redhat.com - 11.0.1-2.rc2
|
|
|
|
- llvm 11.0.1-rc2
|
|
|
|
|
2020-12-02 07:30:59 +00:00
|
|
|
* Tue Dec 01 2020 sguelton@redhat.com - 11.0.1-1.rc1
|
|
|
|
- llvm 11.0.1-rc1
|
|
|
|
|
2020-11-12 17:39:05 +00:00
|
|
|
* Thu Nov 12 2020 sguelton@redhat.com - 11.0.0-3
|
|
|
|
- Exclude s390x, unsupported upstream
|
|
|
|
|
2020-10-19 13:09:09 +00:00
|
|
|
* Mon Oct 19 2020 sguelton@redhat.com - 11.0.0-2
|
|
|
|
- Rebuilt with all gating tests on
|
|
|
|
|
2020-10-15 05:24:09 +00:00
|
|
|
* Thu Oct 15 2020 sguelton@redhat.com - 11.0.0-1
|
|
|
|
- Fix NVR
|
|
|
|
|
2020-10-12 11:30:11 +00:00
|
|
|
* Mon Oct 12 2020 sguelton@redhat.com - 11.0.0-0.6
|
|
|
|
- llvm 11.0.0 - final release
|
|
|
|
|
2020-10-08 09:12:17 +00:00
|
|
|
* Thu Oct 08 2020 sguelton@redhat.com - 11.0.0-0.5.rc6
|
|
|
|
- 11.0.0-rc6
|
|
|
|
|
2020-10-07 05:56:52 +00:00
|
|
|
* Wed Oct 07 2020 sguelton@redhat.com - 11.0.0-0.4.rc5
|
|
|
|
- Update CI tests
|
|
|
|
|
2020-10-02 07:14:59 +00:00
|
|
|
* Fri Oct 02 2020 sguelton@redhat.com - 11.0.0-0.3.rc5
|
|
|
|
- 11.0.0-rc5 Release
|
|
|
|
|
2020-09-27 13:19:04 +00:00
|
|
|
* Sun Sep 27 2020 sguelton@redhat.com - 11.0.0-0.2.rc3
|
|
|
|
- Fix NVR
|
|
|
|
|
2020-09-24 14:12:41 +00:00
|
|
|
* Thu Sep 24 2020 sguelton@redhat.com - 11.0.0-0.1.rc3
|
|
|
|
- 11.0.0-rc3 Release
|
|
|
|
|
2020-09-01 09:36:05 +00:00
|
|
|
* Tue Sep 01 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
|
|
|
|
- 11.0.0-rc2 Release
|
|
|
|
|
2020-08-10 16:20:27 +00:00
|
|
|
* Mon Aug 10 2020 Tom Stellard <tstellar@redhat.com> - 11.0.0-0.1.rc1
|
|
|
|
- 11.0.0-rc1 Release
|
|
|
|
|
2020-07-29 11:26:30 +00:00
|
|
|
* Mon Aug 10 2020 sguelton@redhat.com - 10.0.0-7
|
|
|
|
- use %%license macro
|
|
|
|
|
2020-08-10 17:16:48 +00:00
|
|
|
* Mon Aug 10 2020 Tom Stellard <tstellar@redhat.com> - 10.0.0-6
|
|
|
|
- Disable LTO
|
|
|
|
|
2020-08-01 04:16:45 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-5
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-28 06:10:59 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-20 07:10:43 +00:00
|
|
|
* Mon Jul 20 2020 sguelton@redhat.com - 10.0.0-3
|
|
|
|
- Use generic cmake macros
|
|
|
|
- Use Ninja as build system
|
|
|
|
- Remove chrpath dependency
|
|
|
|
|
2020-07-17 16:30:28 +00:00
|
|
|
* Fri Jul 17 2020 sguelton@redhat.com - 10.0.0-2
|
|
|
|
- Make test archive arch-independent
|
|
|
|
|
2020-03-30 20:54:50 +00:00
|
|
|
* Mon Mar 30 2020 sguelton@redhat.com - 10.0.0-1
|
|
|
|
- 10.0.0 final
|
|
|
|
|
2020-03-25 11:00:33 +00:00
|
|
|
* Wed Mar 25 2020 sguelton@redhat.com - 10.0.0-0.6.rc6
|
|
|
|
- 10.0.0 rc6
|
|
|
|
|
2020-03-20 22:01:05 +00:00
|
|
|
* Fri Mar 20 2020 sguelton@redhat.com - 10.0.0-0.5.rc5
|
|
|
|
- 10.0.0 rc5
|
|
|
|
|
2020-03-15 08:08:12 +00:00
|
|
|
* Sun Mar 15 2020 sguelton@redhat.com - 10.0.0-0.4.rc4
|
|
|
|
- 10.0.0 rc4
|
|
|
|
|
2020-03-05 11:25:01 +00:00
|
|
|
* Thu Mar 05 2020 sguelton@redhat.com - 10.0.0-0.3.rc3
|
|
|
|
- 10.0.0 rc3
|
|
|
|
|
2020-02-14 12:41:34 +00:00
|
|
|
* Fri Feb 14 2020 sguelton@redhat.com - 10.0.0-0.2.rc2
|
|
|
|
- 10.0.0 rc2
|
|
|
|
|
2020-02-06 19:55:06 +00:00
|
|
|
* Fri Jan 31 2020 sguelton@redhat.com - 10.0.0-0.1.rc1
|
|
|
|
- 10.0.0 rc1
|
|
|
|
|
2020-01-29 11:08:29 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-12-20 04:45:12 +00:00
|
|
|
* Thu Dec 19 2019 Tom Stellard <tstellar@redhat.com> -9.0.1-1
|
|
|
|
- 9.0.1 Release
|
|
|
|
|
2019-12-14 06:40:28 +00:00
|
|
|
* Sat Dec 14 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-6
|
|
|
|
- Fix some rpmdiff errors
|
|
|
|
|
2019-12-13 19:22:43 +00:00
|
|
|
* Fri Dec 13 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-5
|
|
|
|
- Remove build artifacts installed with unittests
|
|
|
|
|
2019-12-05 18:06:48 +00:00
|
|
|
* Thu Dec 05 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-4
|
|
|
|
- Enable GPG-based source file verification
|
|
|
|
|
2019-07-16 23:00:59 +00:00
|
|
|
* Thu Dec 05 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-3
|
|
|
|
- Add lld-test package
|
|
|
|
|
2019-11-14 19:04:00 +00:00
|
|
|
* Thu Nov 14 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-2
|
|
|
|
- Add explicit lld-libs requires to fix rpmdiff errors
|
|
|
|
|
2019-09-20 01:30:39 +00:00
|
|
|
* Thu Sep 19 2019 Tom Stellard <tstellar@redhat.com> -9.0.0-1
|
|
|
|
- 9.0.0 Release
|
|
|
|
|
2019-08-22 20:54:08 +00:00
|
|
|
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.1.rc3
|
|
|
|
- 9.0.0-rc3 Release
|
|
|
|
|
2019-08-20 05:04:24 +00:00
|
|
|
* Tue Aug 20 2019 Tom Stellard <tstellar@redhat.com> - 8.0.0-3
|
|
|
|
- touch /usr/bin/ld as required by the packaging guidelines for
|
|
|
|
update-alternatives
|
|
|
|
|
2019-02-15 22:11:28 +00:00
|
|
|
* Tue Aug 13 2019 Tom Stellard <tstellar@redhat.com> - 8.0.0-2
|
|
|
|
- Add update-alternative for ld
|
|
|
|
|
2019-07-25 15:03:11 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-1.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-03-21 05:57:59 +00:00
|
|
|
* Wed Mar 20 2019 sguelton@redhat.com - 8.0.0-1
|
|
|
|
- 8.0.0 final
|
|
|
|
|
2019-03-12 14:15:43 +00:00
|
|
|
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.4.rc4
|
|
|
|
- 8.0.0 Release candidate 4
|
|
|
|
|
2019-03-06 18:02:53 +00:00
|
|
|
* Tue Mar 5 2019 sguelton@redhat.com - 8.0.0-0.4.rc3
|
|
|
|
- Cleanup specfile after llvm specfile update
|
|
|
|
|
2019-03-04 13:19:44 +00:00
|
|
|
* Mon Mar 4 2019 sguelton@redhat.com - 8.0.0-0.3.rc3
|
|
|
|
- 8.0.0 Release candidate 3
|
|
|
|
|
2019-02-22 17:03:04 +00:00
|
|
|
* Fri Feb 22 2019 sguelton@redhat.com - 8.0.0-0.2.rc2
|
|
|
|
- 8.0.0 Release candidate 2
|
|
|
|
|
|
|
|
* Mon Feb 11 2019 sguelton@redhat.com - 8.0.0-0.1.rc1
|
2019-02-13 15:57:08 +00:00
|
|
|
- 8.0.0 Release candidate 1
|
|
|
|
|
2019-02-01 08:51:58 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-3.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-14 14:57:57 +00:00
|
|
|
* Mon Jan 14 2019 sguelton@redhat.com - 7.0.1-3
|
|
|
|
- Fix lld + annobin integration & Setup basic CI tests
|
|
|
|
|
2018-12-18 06:59:48 +00:00
|
|
|
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-2
|
|
|
|
- Update lit dependency
|
|
|
|
|
2018-11-22 12:19:43 +00:00
|
|
|
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-1
|
|
|
|
- 7.0.1 Release
|
|
|
|
|
2018-12-04 14:43:38 +00:00
|
|
|
* Tue Dec 04 2018 sguelton@redhat.com - 7.0.0-2
|
|
|
|
- Ensure rpmlint passes on specfile
|
|
|
|
|
2018-09-24 20:35:49 +00:00
|
|
|
* Mon Sep 24 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
|
|
|
|
- 7.0.1 Release
|
|
|
|
|
2018-09-11 23:21:15 +00:00
|
|
|
* Tue Sep 11 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.4.rc3
|
|
|
|
- 7.0.0-rc3 Release
|
|
|
|
|
2018-08-31 18:17:55 +00:00
|
|
|
* Fri Aug 31 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.3.rc2
|
|
|
|
- 7.0.0-rc2 Release
|
|
|
|
|
2018-08-30 23:39:55 +00:00
|
|
|
* Thu Aug 30 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.2.rc1
|
|
|
|
- Enable make check
|
|
|
|
|
2018-08-14 03:17:24 +00:00
|
|
|
* Mon Aug 13 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc1
|
|
|
|
- 7.0.0-rc1 Release
|
|
|
|
|
2018-07-13 09:15:54 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-27 14:39:06 +00:00
|
|
|
* Wed Jun 27 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
|
|
|
|
- 6.0.1 Release
|
|
|
|
|
2018-05-11 18:55:30 +00:00
|
|
|
* Fri May 11 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.1.rc1
|
|
|
|
- 6.0.1-rc1 Release
|
|
|
|
|
2018-03-09 03:12:47 +00:00
|
|
|
* Thu Mar 08 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
|
|
|
|
- 6.0.0 Release
|
|
|
|
|
2018-02-13 17:52:43 +00:00
|
|
|
* Tue Feb 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc2
|
|
|
|
- 6.0.0-rc2 Release
|
|
|
|
|
2018-02-08 00:01:15 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-0.2.rc1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-25 18:37:18 +00:00
|
|
|
* Thu Jan 25 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
|
|
|
|
- 6.0.0-rc1 Release
|
|
|
|
|
2017-12-21 15:55:19 +00:00
|
|
|
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
|
|
|
- 5.0.1 Release
|
|
|
|
|
2017-09-12 02:16:50 +00:00
|
|
|
* Mon Sep 11 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
|
|
|
|
- 5.0.0 Release
|
|
|
|
|
2017-08-03 02:41:08 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 20:13:12 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-06 19:38:12 +00:00
|
|
|
* Thu Jul 06 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-2
|
|
|
|
- Backport r307092
|
|
|
|
|
2017-07-04 12:29:29 +00:00
|
|
|
* Tue Jul 04 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
|
|
|
|
- 4.0.1 Release
|
|
|
|
|
2017-07-04 17:08:26 +00:00
|
|
|
* Tue Jul 04 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-4
|
|
|
|
- Fix build without llvm-static
|
|
|
|
|
2017-05-31 12:27:15 +00:00
|
|
|
* Wed May 31 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-3
|
|
|
|
- Remove llvm-static dependency
|
|
|
|
|
2017-05-15 21:19:19 +00:00
|
|
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
|
|
2017-04-13 19:34:21 +00:00
|
|
|
* Tue Mar 14 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
|
|
|
|
- lld 4.0.0 Final Release
|