2018-08-31 18:17:55 +00:00
|
|
|
%global rc_ver 2
|
2018-08-14 03:17:24 +00:00
|
|
|
|
|
|
|
%global lld_srcdir lld-%{version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
2017-04-13 19:34:21 +00:00
|
|
|
Name: lld
|
2018-08-14 03:17:24 +00:00
|
|
|
Version: 7.0.0
|
2018-08-31 18:17:55 +00:00
|
|
|
Release: 0.3.rc%{rc_ver}%{?dist}
|
2017-04-13 19:34:21 +00:00
|
|
|
Summary: The LLVM Linker
|
|
|
|
|
|
|
|
License: NCSA
|
|
|
|
URL: http://llvm.org
|
2018-08-14 03:17:24 +00:00
|
|
|
Source0: http://%{?rc_ver:pre}releases.llvm.org/%{version}/%{?rc_ver:rc%{rc_ver}}/%{lld_srcdir}.tar.xz
|
2017-04-13 19:34:21 +00:00
|
|
|
|
2018-08-30 23:39:55 +00:00
|
|
|
Patch0: 0001-CMake-Check-for-gtest-headers-even-if-lit.py-is-not-.patch
|
|
|
|
Patch1: 0001-lld-Prefer-using-the-newest-installed-python-version.patch
|
|
|
|
Patch2: 0001-lld-Add-missing-REQUIRES-to-tests.patch
|
|
|
|
Patch3: 0001-MachO-Fix-out-of-bounds-memory-access-in-getString16.patch
|
|
|
|
|
2018-07-09 17:06:48 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: gcc-c++
|
2017-04-13 19:34:21 +00:00
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: llvm-devel = %{version}
|
|
|
|
BuildRequires: ncurses-devel
|
|
|
|
BuildRequires: zlib-devel
|
|
|
|
BuildRequires: chrpath
|
|
|
|
|
2018-08-30 23:39:55 +00:00
|
|
|
# For make check:
|
|
|
|
BuildRequires: python3-lit
|
|
|
|
BuildRequires: llvm-googletest
|
|
|
|
|
2017-04-13 19:34:21 +00:00
|
|
|
%description
|
|
|
|
The LLVM project linker.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Libraries and header files for LLD
|
|
|
|
|
|
|
|
%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
|
2018-01-25 18:37:18 +00:00
|
|
|
%autosetup -n %{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src -p1
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
mkdir %{_target_platform}
|
|
|
|
cd %{_target_platform}
|
|
|
|
|
|
|
|
%cmake .. \
|
|
|
|
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
2017-07-04 17:08:26 +00:00
|
|
|
-DLLVM_DYLIB_COMPONENTS="all" \
|
2018-08-30 23:39:55 +00:00
|
|
|
-DLLVM_INCLUDE_TESTS=ON \
|
|
|
|
-DLLVM_MAIN_SRC_DIR=%{_datadir}/llvm/src \
|
|
|
|
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
|
|
|
|
-DLLVM_LIT_ARGS="-sv \
|
|
|
|
-DFileCheck=%{_libdir}/llvm/FileCheck \
|
|
|
|
-Dcount=%{_libdir}/llvm/count \
|
|
|
|
-Dnot=%{_libdir}/llvm/not \
|
|
|
|
--path %{_libdir}/llvm" \
|
2017-04-13 19:34:21 +00:00
|
|
|
%if 0%{?__isa_bits} == 64
|
|
|
|
-DLLVM_LIBDIR_SUFFIX=64
|
|
|
|
%else
|
|
|
|
-DLLVM_LIBDIR_SUFFIX=
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%make_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
cd %{_target_platform}
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
# Remove rpath
|
|
|
|
chrpath --delete %{buildroot}%{_bindir}/*
|
|
|
|
chrpath --delete %{buildroot}%{_libdir}/*.so*
|
|
|
|
|
|
|
|
%check
|
2018-08-30 23:39:55 +00:00
|
|
|
make -C %{_target_platform} %{?_smp_mflags} check-lld
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%{_bindir}/lld*
|
|
|
|
%{_bindir}/ld.lld
|
2018-01-25 18:37:18 +00:00
|
|
|
%{_bindir}/ld64.lld
|
|
|
|
%{_bindir}/wasm-ld
|
2017-04-13 19:34:21 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/lld
|
|
|
|
%{_libdir}/liblld*.so
|
|
|
|
|
|
|
|
%files libs
|
|
|
|
%{_libdir}/liblld*.so.*
|
|
|
|
|
|
|
|
%changelog
|
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
|