306 lines
8.7 KiB
RPMSpec
306 lines
8.7 KiB
RPMSpec
#%%global rc_ver 3
|
|
%global baserelease 4
|
|
%global lld_srcdir lld-%{version}%{?rc_ver:rc%{rc_ver}}.src
|
|
%global maj_ver 9
|
|
|
|
# Don't include unittests in automatic generation of provides or requires.
|
|
%global __provides_exclude_from ^%{_libdir}/lld/.*$
|
|
%global __requires_exclude ^libgtest.*$
|
|
|
|
Name: lld
|
|
Version: %{maj_ver}.0.0
|
|
Release: %{baserelease}%{?rc_ver:.rc%{rc_ver}}%{?dist}
|
|
Summary: The LLVM Linker
|
|
|
|
License: NCSA
|
|
URL: http://llvm.org
|
|
Source0: https://%{?rc_ver:pre}releases.llvm.org/%{version}/%{?rc_ver:rc%{rc_ver}}/%{lld_srcdir}.tar.xz
|
|
Source1: run-lit-tests
|
|
Source2: lit.lld-test.cfg.py
|
|
Source3: https://%{?rc_ver:pre}releases.llvm.org/%{version}/%{?rc_ver:rc%{rc_ver}}/%{lld_srcdir}.tar.xz.sig
|
|
Source4: https://releases.llvm.org/9.0.0/hans-gpg-key.asc
|
|
|
|
Patch0: 0001-CMake-Check-for-gtest-headers-even-if-lit.py-is-not-.patch
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: cmake
|
|
BuildRequires: llvm-devel = %{version}
|
|
BuildRequires: llvm-test = %{version}
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: chrpath
|
|
|
|
# For make check:
|
|
BuildRequires: python3-rpm-macros
|
|
BuildRequires: python3-lit
|
|
BuildRequires: llvm-googletest = %{version}
|
|
|
|
# For gpg source verification
|
|
BuildRequires: gnupg2
|
|
|
|
Requires(post): %{_sbindir}/alternatives
|
|
Requires(preun): %{_sbindir}/alternatives
|
|
|
|
Requires: lld-libs = %{version}-%{release}
|
|
|
|
%description
|
|
The LLVM project linker.
|
|
|
|
%package devel
|
|
Summary: Libraries and header files for LLD
|
|
Requires: lld-libs = %{version}-%{release}
|
|
|
|
%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.
|
|
|
|
%package test
|
|
Summary: LLD regression tests
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
Requires: python3-lit
|
|
Requires: llvm-test(major) = %{maj_ver}
|
|
|
|
%description test
|
|
LLVM regression tests.
|
|
|
|
%prep
|
|
%{gpgverify} --keyring='%{SOURCE4}' --signature='%{SOURCE3}' --data='%{SOURCE0}'
|
|
%autosetup -n %{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src -p1
|
|
|
|
%build
|
|
|
|
mkdir %{_target_platform}
|
|
cd %{_target_platform}
|
|
|
|
%cmake .. \
|
|
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
|
-DLLVM_DYLIB_COMPONENTS="all" \
|
|
-DPYTHON_EXECUTABLE=%{__python3} \
|
|
-DLLVM_INCLUDE_TESTS=ON \
|
|
-DLLVM_MAIN_SRC_DIR=%{_datadir}/llvm/src \
|
|
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
|
|
-DLLVM_LIT_ARGS="-sv \
|
|
--path %{_libdir}/llvm" \
|
|
%if 0%{?__isa_bits} == 64
|
|
-DLLVM_LIBDIR_SUFFIX=64
|
|
%else
|
|
-DLLVM_LIBDIR_SUFFIX=
|
|
%endif
|
|
|
|
%make_build
|
|
|
|
# Build the unittests so we can install them.
|
|
%make_build lld-test-depends
|
|
|
|
%install
|
|
|
|
%global lit_cfg test/%{_arch}.site.cfg.py
|
|
%global lit_unit_cfg test/Unit/%{_arch}.site.cfg.py
|
|
%global lit_lld_test_cfg_install_path %{_datadir}/lld/lit.lld-test.cfg.py
|
|
|
|
# Generate lit config files. Strip off the last line that initiates the
|
|
# test run, so we can customize the configuration.
|
|
head -n -1 %{_target_platform}/test/lit.site.cfg.py >> %{lit_cfg}
|
|
head -n -1 %{_target_platform}/test/Unit/lit.site.cfg.py >> %{lit_unit_cfg}
|
|
|
|
# Patch lit config files to load custom config:
|
|
for f in %{lit_cfg} %{lit_unit_cfg}; do
|
|
echo "lit_config.load_config(config, '%{lit_lld_test_cfg_install_path}')" >> $f
|
|
done
|
|
|
|
# Install test files
|
|
install -d %{buildroot}%{_datadir}/lld/src
|
|
cp %{SOURCE2} %{buildroot}%{_datadir}/lld/
|
|
|
|
tar -czf %{buildroot}%{_datadir}/lld/src/test.tar.gz test/
|
|
install -d %{buildroot}%{_libexecdir}/tests/lld
|
|
cp %{SOURCE1} %{buildroot}%{_libexecdir}/tests/lld
|
|
|
|
# Install unit test binaries
|
|
install -d %{buildroot}%{_libdir}/lld/
|
|
cp -R %{_target_platform}/unittests %{buildroot}%{_libdir}/lld/
|
|
|
|
# Install gtest libraries
|
|
cp %{_target_platform}/%{_lib}/libgtest*so* %{buildroot}%{_libdir}/lld/
|
|
|
|
# Install libraries and binaries
|
|
cd %{_target_platform}
|
|
%make_install
|
|
|
|
# Remove rpath
|
|
chrpath --delete %{buildroot}%{_bindir}/*
|
|
chrpath --delete %{buildroot}%{_libdir}/*.so*
|
|
|
|
# Required when using update-alternatives:
|
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Alternatives/
|
|
touch %{buildroot}%{_bindir}/ld
|
|
|
|
%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
|
|
|
|
%check
|
|
|
|
# armv7lhl tests disabled because of arm issue, see https://koji.fedoraproject.org/koji/taskinfo?taskID=33660162
|
|
%ifnarch %{arm}
|
|
make -C %{_target_platform} %{?_smp_mflags} check-lld
|
|
%endif
|
|
|
|
%ldconfig_scriptlets libs
|
|
|
|
%files
|
|
%ghost %{_bindir}/ld
|
|
%{_bindir}/lld*
|
|
%{_bindir}/ld.lld
|
|
%{_bindir}/ld64.lld
|
|
%{_bindir}/wasm-ld
|
|
|
|
%files devel
|
|
%{_includedir}/lld
|
|
%{_libdir}/liblld*.so
|
|
|
|
%files libs
|
|
%{_libdir}/liblld*.so.*
|
|
|
|
%files test
|
|
%{_libexecdir}/tests/lld/
|
|
%{_libdir}/lld/
|
|
%{_datadir}/lld/src/test.tar.gz
|
|
%{_datadir}/lld/lit.lld-test.cfg.py
|
|
|
|
%changelog
|
|
* 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
|
|
- Add lld-test package
|
|
|
|
* Thu Nov 14 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-2
|
|
- Add explicit lld-libs requires to fix rpmdiff errors
|
|
|
|
* Thu Sep 19 2019 Tom Stellard <tstellar@redhat.com> -9.0.0-1
|
|
- 9.0.0 Release
|
|
|
|
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.1.rc3
|
|
- 9.0.0-rc3 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
|
|
- 8.0.0 final
|
|
|
|
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.4.rc4
|
|
- 8.0.0 Release candidate 4
|
|
|
|
* Tue Mar 5 2019 sguelton@redhat.com - 8.0.0-0.4.rc3
|
|
- Cleanup specfile after llvm specfile update
|
|
|
|
* 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
|
|
- Fix lld + annobin integration & Setup basic CI tests
|
|
|
|
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-2
|
|
- Update lit dependency
|
|
|
|
* 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
|
|
- 7.0.0-rc2 Release
|
|
|
|
* Thu Aug 30 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.2.rc1
|
|
- Enable make check
|
|
|
|
* Mon Aug 13 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc1
|
|
- 7.0.0-rc1 Release
|
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
* Wed Jun 27 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
|
|
- 6.0.1 Release
|
|
|
|
* Fri May 11 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.1.rc1
|
|
- 6.0.1-rc1 Release
|
|
|
|
* Thu Mar 08 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
|
|
- 6.0.0 Release
|
|
|
|
* Tue Feb 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc2
|
|
- 6.0.0-rc2 Release
|
|
|
|
* 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
|
|
|
|
* Thu Jan 25 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
|
|
- 6.0.0-rc1 Release
|
|
|
|
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
|
- 5.0.1 Release
|
|
|
|
* Mon Sep 11 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
|
|
- 5.0.0 Release
|
|
|
|
* 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
|
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Thu Jul 06 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-2
|
|
- Backport r307092
|
|
|
|
* Tue Jul 04 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
|
|
- 4.0.1 Release
|
|
|
|
* Tue Jul 04 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-4
|
|
- Fix build without llvm-static
|
|
|
|
* Wed May 31 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-3
|
|
- Remove llvm-static dependency
|
|
|
|
* 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
|
|
|
|
* Tue Mar 14 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
|
|
- lld 4.0.0 Final Release
|