|
|
|
@ -1,34 +1,67 @@
|
|
|
|
|
%bcond_with snapshot_build
|
|
|
|
|
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
# Unlock LLVM Snapshot LUA functions
|
|
|
|
|
%{llvm_sb_verbose}
|
|
|
|
|
%{llvm_sb}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%global toolchain clang
|
|
|
|
|
|
|
|
|
|
# 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_without check
|
|
|
|
|
%bcond_with compat_build
|
|
|
|
|
|
|
|
|
|
%global maj_ver 18
|
|
|
|
|
%global min_ver 1
|
|
|
|
|
%global patch_ver 8
|
|
|
|
|
#global rc_ver 4
|
|
|
|
|
|
|
|
|
|
%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-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
%global cmake_srcdir cmake-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
%global maj_ver 16
|
|
|
|
|
%global min_ver 0
|
|
|
|
|
%global patch_ver 6
|
|
|
|
|
%global lld_srcdir lld-%{lld_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
%global install_datadir %{install_prefix}/share
|
|
|
|
|
%global install_bindir %{install_prefix}/bin
|
|
|
|
|
%else
|
|
|
|
|
%global pkg_name lld
|
|
|
|
|
%global install_prefix /usr
|
|
|
|
|
%global install_includedir %{_includedir}
|
|
|
|
|
%global install_libdir %{_libdir}
|
|
|
|
|
%global install_datadir %{_datadir}
|
|
|
|
|
%global install_bindir %{_bindir}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Name: %{pkg_name}
|
|
|
|
|
Version: %{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:~rc%{rc_ver}}
|
|
|
|
|
Version: %{lld_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: The LLVM Linker
|
|
|
|
|
|
|
|
|
|
License: Apache-2.0 WITH LLVM-exception OR NCSA
|
|
|
|
|
URL: http://llvm.org
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
Source0: %{llvm_snapshot_source_prefix}lld-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
|
|
|
|
%{llvm_snapshot_extra_source_tags}
|
|
|
|
|
%else
|
|
|
|
|
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
|
|
|
|
|
Source2: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{cmake_srcdir}.tar.xz
|
|
|
|
|
Source3: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{cmake_srcdir}.tar.xz.sig
|
|
|
|
|
Source4: release-keys.asc
|
|
|
|
|
|
|
|
|
|
ExcludeArch: s390x
|
|
|
|
|
|
|
|
|
|
# Backport from LLVM 17.
|
|
|
|
|
Patch0: 0001-lld-Use-installed-llvm_gtest-in-standalone-builds.patch
|
|
|
|
|
Source2: release-keys.asc
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
# Bundle libunwind header need during build for MachO support
|
|
|
|
|
Patch1: 0002-PATCH-lld-Import-compact_unwind_encoding.h-from-libu.patch
|
|
|
|
@ -36,9 +69,15 @@ Patch1: 0002-PATCH-lld-Import-compact_unwind_encoding.h-from-libu.patch
|
|
|
|
|
BuildRequires: clang
|
|
|
|
|
BuildRequires: cmake
|
|
|
|
|
BuildRequires: ninja-build
|
|
|
|
|
%if %{with compat_build}
|
|
|
|
|
BuildRequires: llvm%{maj_ver}-devel = %{version}
|
|
|
|
|
BuildRequires: llvm%{maj_ver}-cmake-utils = %{version}
|
|
|
|
|
%else
|
|
|
|
|
BuildRequires: llvm-devel = %{version}
|
|
|
|
|
BuildRequires: llvm-cmake-utils = %{version}
|
|
|
|
|
BuildRequires: llvm-test = %{version}
|
|
|
|
|
BuildRequires: llvm-googletest = %{version}
|
|
|
|
|
%endif
|
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
|
BuildRequires: zlib-devel
|
|
|
|
|
|
|
|
|
@ -46,7 +85,6 @@ BuildRequires: zlib-devel
|
|
|
|
|
BuildRequires: python3-rpm-macros
|
|
|
|
|
BuildRequires: python3-lit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# For gpg source verification
|
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
|
|
|
|
|
@ -55,17 +93,18 @@ Requires(preun): %{_sbindir}/update-alternatives
|
|
|
|
|
|
|
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
Obsoletes: lld-test < 15.0.7
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
The LLVM project linker.
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Libraries and header files for LLD
|
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
|
%if %{without compat_build}
|
|
|
|
|
# lld tools are referenced in the cmake files, so we need to add lld as a
|
|
|
|
|
# dependency.
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
%endif
|
|
|
|
|
Provides: %{name}-devel(major) = %{maj_ver}
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
This package contains library and header files needed to develop new native
|
|
|
|
@ -77,17 +116,12 @@ Summary: LLD shared libraries
|
|
|
|
|
%description libs
|
|
|
|
|
Shared libraries for LLD.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%{gpgverify} --keyring='%{SOURCE4}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
|
%{gpgverify} --keyring='%{SOURCE4}' --signature='%{SOURCE3}' --data='%{SOURCE2}'
|
|
|
|
|
%setup -T -q -b 2 -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 %{lld_srcdir} -p2
|
|
|
|
|
%if %{without snapshot_build}
|
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%autosetup -n %{lld_srcdir} -p2
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
@ -97,16 +131,24 @@ mv %{cmake_srcdir} cmake
|
|
|
|
|
-DCMAKE_INSTALL_PREFIX=%{install_prefix} \
|
|
|
|
|
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
|
|
|
|
-DLLVM_DYLIB_COMPONENTS="all" \
|
|
|
|
|
-DLLVM_COMMON_CMAKE_UTILS=%{install_datadir}/llvm/cmake \
|
|
|
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON \
|
|
|
|
|
-DPYTHON_EXECUTABLE=%{__python3} \
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
-DLLVM_VERSION_SUFFIX="%{llvm_snapshot_version_suffix}" \
|
|
|
|
|
%endif
|
|
|
|
|
-DLLVM_INCLUDE_TESTS=ON \
|
|
|
|
|
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
|
|
|
|
|
-DLLVM_LIT_ARGS="-sv \
|
|
|
|
|
--path %{install_libdir}/llvm" \
|
|
|
|
|
--path %{_libdir}/llvm" \
|
|
|
|
|
%if %{with compat_build}
|
|
|
|
|
-DLLVM_CMAKE_DIR=%{install_libdir}/cmake/llvm \
|
|
|
|
|
%else
|
|
|
|
|
%if 0%{?__isa_bits} == 64
|
|
|
|
|
-DLLVM_LIBDIR_SUFFIX=64 \
|
|
|
|
|
%else
|
|
|
|
|
-DLLVM_LIBDIR_SUFFIX= \
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
-DLLVM_MAIN_SRC_DIR=%{_datadir}/llvm/src
|
|
|
|
|
|
|
|
|
@ -120,12 +162,21 @@ mv %{cmake_srcdir} cmake
|
|
|
|
|
# This is generated by Patch1 during build and (probably) must be removed afterward
|
|
|
|
|
rm %{buildroot}%{install_includedir}/mach-o/compact_unwind_encoding.h
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
%{_sbindir}/update-alternatives --install %{_bindir}/ld ld %{_bindir}/ld.lld 1
|
|
|
|
|
|
|
|
|
@ -133,23 +184,31 @@ install -D -m 644 -t %{buildroot}%{_mandir}/man1/ docs/ld.lld.1
|
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
|
%{_sbindir}/update-alternatives --remove ld %{_bindir}/ld.lld
|
|
|
|
|
fi
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
|
|
|
|
|
%if %{with check}
|
|
|
|
|
export LD_LIBRARY_PATH=%{buildroot}/%{install_libdir}
|
|
|
|
|
%cmake_build --target check-lld
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if %{without compat_build}
|
|
|
|
|
%ldconfig_scriptlets libs
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%license LICENSE.TXT
|
|
|
|
|
%ghost %{_bindir}/ld
|
|
|
|
|
%{_bindir}/lld*
|
|
|
|
|
%{_bindir}/ld.lld
|
|
|
|
|
%{_bindir}/ld64.lld
|
|
|
|
|
%{_bindir}/wasm-ld
|
|
|
|
|
%{install_bindir}/lld*
|
|
|
|
|
%{install_bindir}/ld.lld
|
|
|
|
|
%{install_bindir}/ld64.lld
|
|
|
|
|
%{install_bindir}/wasm-ld
|
|
|
|
|
%if %{without compat_build}
|
|
|
|
|
%{_mandir}/man1/ld.lld.1*
|
|
|
|
|
%else
|
|
|
|
|
%{_bindir}/*-%{maj_ver}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%{install_includedir}/lld
|
|
|
|
@ -159,8 +218,22 @@ fi
|
|
|
|
|
%files libs
|
|
|
|
|
%{install_libdir}/liblld*.so.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Wed Jul 17 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.8-1
|
|
|
|
|
- Update to 18.1.8
|
|
|
|
|
|
|
|
|
|
* Wed Jun 05 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.6-3
|
|
|
|
|
- Rebuild against clang-18.1.6-2 which defaults to DWARF4
|
|
|
|
|
|
|
|
|
|
* Mon Jun 03 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.6-1
|
|
|
|
|
- Update to 18.1.6
|
|
|
|
|
|
|
|
|
|
* Mon Dec 11 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.6-1
|
|
|
|
|
- Update to 17.0.6
|
|
|
|
|
|
|
|
|
|
* Thu Sep 28 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.1-1
|
|
|
|
|
- Update to 17.0.1
|
|
|
|
|
|
|
|
|
|
* Wed Jul 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.6-1
|
|
|
|
|
- Update to LLVM 16.0.6
|
|
|
|
|
|
|
|
|
|