Compare commits

..

No commits in common. 'c9' and 'i8c-stream-rhel8' have entirely different histories.

@ -6,8 +6,6 @@
%{llvm_sb} %{llvm_sb}
%endif %endif
%global toolchain clang
# Opt out of https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer # Opt out of https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer
# https://bugzilla.redhat.com/show_bug.cgi?id=2158587 # https://bugzilla.redhat.com/show_bug.cgi?id=2158587
%undefine _include_frame_pointers %undefine _include_frame_pointers
@ -47,12 +45,14 @@
%global install_bindir %{_bindir} %global install_bindir %{_bindir}
%endif %endif
%bcond_with ld_alternative
Name: %{pkg_name} Name: %{pkg_name}
Version: %{lld_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}} Version: %{lld_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
Release: 1%{?dist} Release: 1%{?dist}
Summary: The LLVM Linker Summary: The LLVM Linker
License: Apache-2.0 WITH LLVM-exception OR NCSA License: NCSA
URL: http://llvm.org URL: http://llvm.org
%if %{with snapshot_build} %if %{with snapshot_build}
Source0: %{llvm_snapshot_source_prefix}lld-%{llvm_snapshot_yyyymmdd}.src.tar.xz Source0: %{llvm_snapshot_source_prefix}lld-%{llvm_snapshot_yyyymmdd}.src.tar.xz
@ -66,7 +66,9 @@ Source2: release-keys.asc
# Bundle libunwind header need during build for MachO support # Bundle libunwind header need during build for MachO support
Patch1: 0002-PATCH-lld-Import-compact_unwind_encoding.h-from-libu.patch Patch1: 0002-PATCH-lld-Import-compact_unwind_encoding.h-from-libu.patch
BuildRequires: clang
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: cmake BuildRequires: cmake
BuildRequires: ninja-build BuildRequires: ninja-build
%if %{with compat_build} %if %{with compat_build}
@ -80,6 +82,7 @@ BuildRequires: llvm-googletest = %{version}
%endif %endif
BuildRequires: ncurses-devel BuildRequires: ncurses-devel
BuildRequires: zlib-devel BuildRequires: zlib-devel
BuildRequires: python3-devel
# For make check: # For make check:
BuildRequires: python3-rpm-macros BuildRequires: python3-rpm-macros
@ -88,8 +91,10 @@ BuildRequires: python3-lit
# For gpg source verification # For gpg source verification
BuildRequires: gnupg2 BuildRequires: gnupg2
Requires(post): %{_sbindir}/update-alternatives %if %{with ld_alternative}
Requires(preun): %{_sbindir}/update-alternatives Requires(post): %{_sbindir}/alternatives
Requires(preun): %{_sbindir}/alternatives
%endif
Requires: %{name}-libs = %{version}-%{release} Requires: %{name}-libs = %{version}-%{release}
@ -125,6 +130,8 @@ Shared libraries for LLD.
%build %build
%undefine __cmake_in_source_build
%cmake \ %cmake \
-GNinja \ -GNinja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
@ -170,13 +177,14 @@ for f in %{buildroot}/%{install_bindir}/*; do
ln -s ../../%{install_bindir}/$filename %{buildroot}/%{_bindir}/$filename-%{maj_ver} ln -s ../../%{install_bindir}/$filename %{buildroot}/%{_bindir}/$filename-%{maj_ver}
done done
%else %else
# Required when using update-alternatives:
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Alternatives/
touch %{buildroot}%{_bindir}/ld
install -D -m 644 -t %{buildroot}%{_mandir}/man1/ docs/ld.lld.1 install -D -m 644 -t %{buildroot}%{_mandir}/man1/ docs/ld.lld.1
%endif
%if %{with ld_alternative}
# Required when using update-alternatives:
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Alternatives/
touch %{buildroot}%{_bindir}/ld
%post %post
%{_sbindir}/update-alternatives --install %{_bindir}/ld ld %{_bindir}/ld.lld 1 %{_sbindir}/update-alternatives --install %{_bindir}/ld ld %{_bindir}/ld.lld 1
@ -199,7 +207,9 @@ export LD_LIBRARY_PATH=%{buildroot}/%{install_libdir}
%files %files
%license LICENSE.TXT %license LICENSE.TXT
%if %{with ld_alternative}
%ghost %{_bindir}/ld %ghost %{_bindir}/ld
%endif
%{install_bindir}/lld* %{install_bindir}/lld*
%{install_bindir}/ld.lld %{install_bindir}/ld.lld
%{install_bindir}/ld64.lld %{install_bindir}/ld64.lld
@ -219,280 +229,142 @@ export LD_LIBRARY_PATH=%{buildroot}/%{install_libdir}
%{install_libdir}/liblld*.so.* %{install_libdir}/liblld*.so.*
%changelog %changelog
* Wed Jul 17 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.8-1 * Tue Jul 09 2024 Tom Stellard <tstellar@redhat.com> - 18.1.8-1
- Update to 18.1.8 - 18.1.8 Release
* Wed Jun 05 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.6-3 * Thu Mar 21 2024 Tom Stellard <tstellar@redhat.com> - 18.1.2-1
- Rebuild against clang-18.1.6-2 which defaults to DWARF4 - 18.1.2 Release
* Mon Jun 03 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.6-1 * Tue Mar 12 2024 Tom Stellard <tstellar@redhat.com> - 18.1.1-1
- Update to 18.1.6 - 18.1.1 Release
* Mon Dec 11 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.6-1 * Sat Mar 02 2024 Tom Stellard <tstellar@redhat.com> - 18.1.0~rc4-2
- Update to 17.0.6 - Enable s390x arch
* Thu Sep 28 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.1-1 * Wed Feb 28 2024 Tom Stellard <tstellar@redhat.com> - 18.1.0~rc4-1
- Update to 17.0.1 - 18.1.0-rc4 Release
* Wed Jul 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.6-1 * Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-4
- Update to LLVM 16.0.6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri May 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.1-2 * Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-3
- Build with LTO - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Apr 19 2023 Nikita Popov <npopov@redhat.com> - 16.0.1-1 %{?llvm_snapshot_changelog_entry}
- Update to LLVM 16.0.1
* Tue Jan 31 2023 Konrad Kleine <kkleine@redhat.com> - 15.0.7-4 * Mon Dec 18 2023 Jeremy Newton <alexjnewt at hotmail dot com> - 17.0.6-2
- Fixup for obsoleting lld-test < 15.0.7 - Add lld-devel(major) provides
* Mon Jan 30 2023 Konrad Kleine <kkleine@redhat.com> - 15.0.7-3 * Sun Dec 10 2023 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 17.0.6-1
- Obsolete lld-test < 15.0.7 - Rebuilt for MSVSphere 8.8
* Mon Jan 16 2023 Konrad Kleine <kkleine@redhat.com> - 15.0.7-2 * Wed Nov 29 2023 Nikita Popov <npopov@redhat.com> - 17.0.6-1
- Update to LLVM 15.0.7 - Update to LLVM 17.0.6
* Fri Dec 09 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.6-1 * Wed Oct 04 2023 Nikita Popov <npopov@redhat.com> - 17.0.2-1
- Update to LLVM 15.0.6 - Update to LLVM 17.0.2
* Tue Oct 25 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.1-2 * Fri Jun 30 2023 Tom Stellard <tstellar@redhat.com> - 16.0.6-1
- Remove lld-test package - 16.0.6 Release
* Thu Sep 29 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.1-1 * Fri Apr 28 2023 Tom Stellard <tstellar@redhat.com> - 16.0.0-1
- 15.0.1 Release - 16.0.0 Release
* Wed Jul 20 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.6-1 * Thu Jan 19 2023 Tom Stellard <tstellar@redhat.com> - 15.0.7-1
- 14.0.6 Release - Update to LLVM 15.0.7
* Wed Jun 22 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.5-1 * Tue Sep 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-1
- 14.0.5 Release - Update to LLVM 15.0.0
* Tue Jun 28 2022 Tom Stellard <tstellar@redhat.com> - 14.0.6-1
- 14.0.6 Release
* Fri May 06 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-2 * Fri May 06 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-2
- Backport ignoring --no-add-needed - Backport ignoring --no-add-needed
* Mon Apr 25 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1 * Thu Apr 07 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
- 14.0.0 Release - Update to 14.0.0
* Thu Feb 03 2022 Tom Stellard <tstellar@redhat.com> - 13.0.1-1 * Thu Feb 03 2022 Tom Stellard <tstellar@redhat.com> - 13.0.1-1
- 13.0.1 Release - 13.0.1 Release
* Tue Oct 12 2021 Timm Bäder <tbaeder@redhat.com> - 13.0.0-1 * Thu Dec 09 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-2
- Release 13.0.0 - Drop lld-test package
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 12.0.1-2
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Tue Jul 13 2021 Tom Stellard <tstellar@redhat.com> -12.0.1-1
- 12.0.1 Release
* Fri Apr 16 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-1
- 12.0.0 Release
* Thu Apr 08 2021 sguelton@redhat.com - 12.0.0-0.8.rc5
- New upstream release candidate
* Wed Apr 07 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-0.7.rc4
- Set executable permissions on run-lit-tests
* Fri Apr 02 2021 sguelton@redhat.com - 12.0.0-0.6.rc4
- New upstream release candidate
* Wed Mar 31 2021 Jonathan Wakely <jwakely@redhat.com> - 12.0.0-0.5.rc3
- Rebuilt for removed libstdc++ symbols (#1937698)
* Thu Mar 11 2021 sguelton@redhat.com - 12.0.0-0.4.rc3
- LLVM 12.0.0 rc3
* Wed Mar 10 2021 sguelton@redhat.com - 12.0.0-0.3.rc2
- rebuilt
* Wed Feb 24 2021 sguelton@redhat.com - 12.0.0-0.2.rc2
- llvm 12.0.0-rc2 release
* Tue Feb 16 2021 sguelton@redhat.com - 12.0.0-0.1.rc1
- llvm 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
- llvm 11.1.0-rc2 release
* Thu Jan 14 2021 Serge Guelton - 11.1.0-0.1.rc1
- 11.1.0-rc1 release
* Wed Jan 06 2021 Serge Guelton - 11.0.1-3 * Fri Oct 15 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
- LLVM 11.0.1 final - 13.0.0 Release
* Tue Dec 22 2020 sguelton@redhat.com - 11.0.1-2.rc2 * Fri Jul 16 2021 sguelton@redhat.com - 12.0.1-1
- llvm 11.0.1-rc2 - 12.0.1 release
* Tue Dec 01 2020 sguelton@redhat.com - 11.0.1-1.rc1 * Thu May 6 2021 sguelton@redhat.com - 12.0.0-1
- llvm 11.0.1-rc1 - 12.0.0 release
* Thu Nov 12 2020 sguelton@redhat.com - 11.0.0-3 * Mon Nov 09 2020 sguelton@redhat.com - 11.0.0-3
- Exclude s390x, unsupported upstream - Exclude s390x, see rhbz#1894927
* Mon Oct 19 2020 sguelton@redhat.com - 11.0.0-2 * Thu Oct 29 2020 sguelton@redhat.com - 11.0.0-1
- Rebuilt with all gating tests on - 11.0.0 final
* Thu Oct 15 2020 sguelton@redhat.com - 11.0.0-1 * Fri Sep 18 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
- Fix NVR
* Mon Oct 12 2020 sguelton@redhat.com - 11.0.0-0.6
- llvm 11.0.0 - final release
* Thu Oct 08 2020 sguelton@redhat.com - 11.0.0-0.5.rc6
- 11.0.0-rc6
* Wed Oct 07 2020 sguelton@redhat.com - 11.0.0-0.4.rc5
- Update CI tests
* Fri Oct 02 2020 sguelton@redhat.com - 11.0.0-0.3.rc5
- 11.0.0-rc5 Release
* Sun Sep 27 2020 sguelton@redhat.com - 11.0.0-0.2.rc3
- Fix NVR
* Thu Sep 24 2020 sguelton@redhat.com - 11.0.0-0.1.rc3
- 11.0.0-rc3 Release
* Tue Sep 01 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
- 11.0.0-rc2 Release - 11.0.0-rc2 Release
* Mon Aug 10 2020 Tom Stellard <tstellar@redhat.com> - 11.0.0-0.1.rc1 * Fri Jul 24 2020 sguelton@redhat.com - 10.0.1-1
- 11.0.0-rc1 Release - 10.0.1 release
* Mon Aug 10 2020 sguelton@redhat.com - 10.0.0-7
- use %%license macro
* Mon Aug 10 2020 Tom Stellard <tstellar@redhat.com> - 10.0.0-6
- Disable LTO
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-5 * Mon Jul 20 2020 sguelton@redhat.com - 10.0.0-2
- Second attempt - Rebuilt for - Fix arch-dependent tarball
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-4 * Thu Apr 9 2020 sguelton@redhat.com - 10.0.0-1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Mon Jul 20 2020 sguelton@redhat.com - 10.0.0-3
- Use generic cmake macros
- Use Ninja as build system
- Remove chrpath dependency
* Fri Jul 17 2020 sguelton@redhat.com - 10.0.0-2
- Make test archive arch-independent
* Mon Mar 30 2020 sguelton@redhat.com - 10.0.0-1
- 10.0.0 final - 10.0.0 final
* Wed Mar 25 2020 sguelton@redhat.com - 10.0.0-0.6.rc6
- 10.0.0 rc6
* Fri Mar 20 2020 sguelton@redhat.com - 10.0.0-0.5.rc5
- 10.0.0 rc5
* Sun Mar 15 2020 sguelton@redhat.com - 10.0.0-0.4.rc4
- 10.0.0 rc4
* Thu Mar 05 2020 sguelton@redhat.com - 10.0.0-0.3.rc3
- 10.0.0 rc3
* Fri Feb 14 2020 sguelton@redhat.com - 10.0.0-0.2.rc2
- 10.0.0 rc2
* Fri Jan 31 2020 sguelton@redhat.com - 10.0.0-0.1.rc1
- 10.0.0 rc1
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Dec 19 2019 Tom Stellard <tstellar@redhat.com> -9.0.1-1 * Thu Dec 19 2019 Tom Stellard <tstellar@redhat.com> -9.0.1-1
- 9.0.1 Release - 9.0.1 Release
* Sat Dec 14 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-6 * Fri Dec 13 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-5
- Fix some rpmdiff errors - Fix some rpmdiff errors
* Fri Dec 13 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-5 * Fri Dec 13 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-4
- Remove build artifacts installed with unittests - Remove build artifacts installed with unittests
* Thu Dec 05 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-4
- Enable GPG-based source file verification
* Thu Dec 05 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-3 * Thu Dec 05 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-3
- Add lld-test package - Add lld-test package
* Thu Nov 14 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-2 * Thu Nov 14 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-2
- Add explicit lld-libs requires to fix rpmdiff errors - Add explicit lld-libs requires to fix rpmdiff errors
* Thu Sep 19 2019 Tom Stellard <tstellar@redhat.com> -9.0.0-1 * Thu Sep 26 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
- 9.0.0 Release - 9.0.0 Release
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.1.rc3 * Thu Aug 1 2019 sguelton@redhat.com - 8.0.1-1
- 9.0.0-rc3 Release - 8.0.1 release
* 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
* Tue Aug 13 2019 Tom Stellard <tstellar@redhat.com> - 8.0.0-2
- Add update-alternative for ld
* 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
* Wed Mar 20 2019 sguelton@redhat.com - 8.0.0-1 * Mon Jun 17 2019 sguelton@redhat.com - 8.0.1-0.2.rc2
- 8.0.0 final - Remove unnecessary threading patch
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.4.rc4 * Thu Jun 13 2019 sguelton@redhat.com - 8.0.1-0.1.rc2
- 8.0.0 Release candidate 4 - 8.0.1rc2 Release
* Tue Mar 5 2019 sguelton@redhat.com - 8.0.0-0.4.rc3 * Tue Apr 16 2019 sguelton@redhat.com - 8.0.0-1
- Cleanup specfile after llvm specfile update - 8.0.0 Release
* Mon Mar 4 2019 sguelton@redhat.com - 8.0.0-0.3.rc3
- 8.0.0 Release candidate 3
* 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
- 8.0.0 Release candidate 1
* 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
* Mon Jan 14 2019 sguelton@redhat.com - 7.0.1-3 * Mon Jan 14 2019 sguelton@redhat.com - 7.0.1-3
- Fix lld + annobin integration & Setup basic CI tests - Fix lld + annobin integration & Setup basic CI tests
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-2 * Sat Dec 15 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-2
- Update lit dependency - Bump required python3-lit version
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-1
- 7.0.1 Release
* Tue Dec 04 2018 sguelton@redhat.com - 7.0.0-2
- Ensure rpmlint passes on specfile
* Mon Sep 24 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
- 7.0.1 Release
* Tue Sep 11 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.4.rc3
- 7.0.0-rc3 Release
* Fri Aug 31 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.3.rc2 * Fri Dec 14 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-1
- 7.0.0-rc2 Release - 7.0.1-1 Release
* Thu Aug 30 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.2.rc1 * Mon Dec 10 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-0.2.rc3
- Enable make check - 7.0.1-rc3 Release
* Mon Aug 13 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc1 * Tue Nov 27 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
- 7.0.0-rc1 Release - 7.0.0 Release
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2 * Mon Oct 01 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - Drop scl macros
* Wed Jun 27 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1 * Wed Jun 27 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
- 6.0.1 Release - 6.0.1 Release

Loading…
Cancel
Save