234 lines
6.9 KiB
RPMSpec
234 lines
6.9 KiB
RPMSpec
%global rc_ver 1
|
|
%global maj_ver 13
|
|
%global min_ver 0
|
|
%global patch_ver 1
|
|
%global mlir_version %{maj_ver}.%{min_ver}.%{patch_ver}
|
|
%global mlir_srcdir llvm-project-%{mlir_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
%if %{with snapshot_build}
|
|
%undefine rc_ver
|
|
%global llvm_snapshot_vers pre%{llvm_snapshot_yyyymmdd}.g%{llvm_snapshot_git_revision_short}
|
|
%global mlir_srcdir llvm-project-%{llvm_snapshot_version_major}.%{llvm_snapshot_version_minor}.%{llvm_snapshot_version_patch}.src
|
|
%global maj_ver %{llvm_snapshot_version_major}
|
|
%global min_ver %{llvm_snapshot_version_minor}
|
|
%global patch_ver %{llvm_snapshot_version_patch}
|
|
%endif
|
|
|
|
Name: mlir
|
|
Version: %{mlir_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_vers:~%{llvm_snapshot_vers}}
|
|
Release: 1%{?dist}
|
|
Summary: Multi-Level Intermediate Representation Overview
|
|
|
|
License: ASL 2.0 with exceptions
|
|
URL: http://mlir.llvm.org
|
|
%if %{with snapshot_build}
|
|
Source0: https://github.com/kwk/llvm-project/releases/download/source-snapshot/llvm-project-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
|
%else
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{mlir_srcdir}.tar.xz
|
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:-rc%{rc_ver}}/%{mlir_srcdir}.tar.xz.sig
|
|
Source2: tstellar-gpg-key.asc
|
|
%endif
|
|
|
|
# Unexpected linking error: neither -j1, disabling lto, LD_LIBRARY_PATH, rpath work
|
|
ExcludeArch: armv7hl
|
|
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: cmake
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: llvm-devel = %{version}
|
|
BuildRequires: llvm-test = %{version}
|
|
|
|
# For origin certification
|
|
BuildRequires: gnupg2
|
|
|
|
%description
|
|
The MLIR project is a novel approach to building reusable and extensible
|
|
compiler infrastructure. MLIR aims to address software fragmentation,
|
|
improve compilation for heterogeneous hardware, significantly reduce
|
|
the cost of building domain specific compilers, and aid in connecting
|
|
existing compilers together.
|
|
|
|
%package static
|
|
Summary: MLIR static files
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description static
|
|
MLIR static files.
|
|
|
|
%package devel
|
|
Summary: MLIR development files
|
|
Requires: %{name}-static%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
MLIR development files.
|
|
|
|
%prep
|
|
%if %{without snapshot_build}
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
%endif
|
|
%autosetup -n %{mlir_srcdir}/%{name} -p2
|
|
# remove all but keep mlir
|
|
find ../* -maxdepth 0 ! -name '%{name}' -exec rm -rf {} +
|
|
|
|
|
|
%build
|
|
%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
|
-DLLVM_BUILD_LLVM_DYLIB=ON \
|
|
-DCMAKE_PREFIX_PATH=%{_libdir}/cmake/llvm/ \
|
|
-DLLVM_BUILD_UTILS:BOOL=ON \
|
|
-DMLIR_INCLUDE_DOCS:BOOL=ON \
|
|
-DMLIR_INCLUDE_TESTS:BOOL=OFF \
|
|
-DMLIR_INCLUDE_INTEGRATION_TESTS:BOOL=OFF \
|
|
-DBUILD_SHARED_LIBS=OFF \
|
|
%if 0%{?__isa_bits} == 64
|
|
-DLLVM_LIBDIR_SUFFIX=64
|
|
%else
|
|
-DLLVM_LIBDIR_SUFFIX=
|
|
%endif
|
|
# build process .exe tools normally use rpath or static linkage
|
|
export LD_LIBRARY_PATH=%{_builddir}/%{mlir_srcdir}/%{name}/%{_build}/%{_lib}
|
|
%cmake_build
|
|
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%check
|
|
# build process .exe tools normally use rpath or static linkage
|
|
%cmake_build --target check-mlir || true
|
|
|
|
%files
|
|
%license LICENSE.TXT
|
|
%{_libdir}/libmlir_runner_utils.so.%{maj_ver}*
|
|
%{_libdir}/libmlir_c_runner_utils.so.%{maj_ver}*
|
|
%{_libdir}/libmlir_async_runtime.so.%{maj_ver}*
|
|
%{_libdir}/libMLIR*.so.%{maj_ver}*
|
|
|
|
%files static
|
|
%{_libdir}/libMLIR*.a
|
|
|
|
%if %{without snapshot_build}
|
|
# This file is not longer there as a when building snapshots.
|
|
# Only these exist: libmlir_c_runner_utils.so libmlir_c_runner_utils.so.13
|
|
%{_libdir}/libmlir_c_runner_utils_static.a
|
|
%endif
|
|
|
|
%files devel
|
|
%{_bindir}/mlir-tblgen
|
|
%{_libdir}/libMLIR*.so
|
|
%{_libdir}/libmlir_runner_utils.so
|
|
%{_libdir}/libmlir_c_runner_utils.so
|
|
%{_libdir}//libmlir_async_runtime.so
|
|
%{_includedir}/mlir
|
|
%{_includedir}/mlir-c
|
|
%{_libdir}/cmake/mlir
|
|
|
|
%changelog
|
|
%if %{with snapshot_build}
|
|
* %{lua: print(os.date("%a %b %d %Y"))} LLVM snapshot build bot
|
|
- Snapshot build of %{version}
|
|
%endif
|
|
|
|
* Wed Jan 12 2022 Nikita Popov <npopov@redhat.com> - 13.0.1~rc1-1
|
|
- Update to LLVM 13.0.1rc1
|
|
|
|
* Wed Oct 06 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-2
|
|
- Rebuild for llvm soname bump
|
|
|
|
* Fri Oct 01 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
|
- 13.0.0 Release
|
|
|
|
* Wed Sep 22 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc3-1
|
|
- 13.0.0-rc3 Release
|
|
|
|
* Tue Aug 10 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-3
|
|
- Add -static requires back to -devel package
|
|
|
|
* Tue Aug 10 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-2
|
|
- Add back the -static sub-package
|
|
|
|
* Mon Aug 09 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-1
|
|
- 13.0.0-rc1 Release
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 12.0.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
* Tue Jul 13 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1-1
|
|
- 12.0.1 Release
|
|
|
|
* Thu Jul 01 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc3-1
|
|
- 12.0.1-rc3 Release
|
|
|
|
* Wed Jun 02 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1~rc1-1
|
|
- 12.0.1-rc1 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.7.rc5
|
|
- New upstream release candidate
|
|
|
|
* 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
|
|
|
|
* Thu Feb 18 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
|
|
- LLVM 11.0.1 final
|
|
|
|
* Tue Dec 22 2020 sguelton@redhat.com - 11.0.1-2.rc2
|
|
- llvm 11.0.1-rc2
|
|
|
|
* Tue Dec 01 2020 sguelton@redhat.com - 11.0.1-1.rc1
|
|
- llvm 11.0.1-rc1
|
|
|
|
* Thu Oct 15 2020 sguelton@redhat.com - 11.0.0-1
|
|
- 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
|
|
|
|
* Fri Oct 02 2020 sguelton@redhat.com - 11.0.0-0.4.rc5
|
|
- 11.0.0-rc5 Release
|
|
|
|
* Sun Sep 27 2020 sguelton@redhat.com - 11.0.0-0.3.rc3
|
|
- Fix NVR
|
|
|
|
* Thu Sep 24 2020 sguelton@redhat.com - 11.0.0-0.1.rc3
|
|
- 11.0.0-rc3 Release
|
|
|
|
* Wed Sep 02 2020 sguelton@redhat.com - 11.0.0-0.2.rc2
|
|
- Package mlir-tblgen
|
|
|
|
* Wed Aug 12 2020 Cristian Balint <cristian.balint@gmail.com> - 11.0.0-0.1.rc1
|
|
- Initial version.
|
|
|