2020-03-30 20:50:46 +00:00
|
|
|
#%%global rc_ver 6
|
2020-08-08 19:19:53 +00:00
|
|
|
%global baserelease 7
|
2018-11-27 10:55:16 +00:00
|
|
|
%global libomp_srcdir openmp-%{version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
|
|
|
|
2018-03-28 06:00:35 +00:00
|
|
|
%ifarch ppc64le
|
|
|
|
%global libomp_arch ppc64
|
|
|
|
%else
|
|
|
|
%global libomp_arch %{_arch}
|
|
|
|
%endif
|
|
|
|
|
2017-11-20 18:07:34 +00:00
|
|
|
Name: libomp
|
2020-02-06 20:47:17 +00:00
|
|
|
Version: 10.0.0
|
2019-08-22 22:25:16 +00:00
|
|
|
Release: %{baserelease}%{?rc_ver:.rc%{rc_ver}}%{?dist}
|
2017-11-20 18:07:34 +00:00
|
|
|
Summary: OpenMP runtime for clang
|
|
|
|
|
|
|
|
License: NCSA
|
|
|
|
URL: http://openmp.llvm.org
|
2020-03-30 20:50:46 +00:00
|
|
|
%if 0%{?rc_ver:1}
|
|
|
|
Source0: https://prereleases.llvm.org/%{version}/rc%{rc_ver}/%{libomp_srcdir}.tar.xz
|
|
|
|
Source3: https://prereleases.llvm.org/%{version}/rc%{rc_ver}/%{libomp_srcdir}.tar.xz.sig
|
|
|
|
%else
|
|
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{libomp_srcdir}.tar.xz
|
|
|
|
Source3: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{libomp_srcdir}.tar.xz.sig
|
|
|
|
%endif
|
2019-04-25 02:52:11 +00:00
|
|
|
Source1: run-lit-tests
|
|
|
|
Source2: lit.fedora.cfg.py
|
2020-02-06 20:47:17 +00:00
|
|
|
Source4: https://prereleases.llvm.org/%{version}/hans-gpg-key.asc
|
2017-11-20 18:07:34 +00:00
|
|
|
|
|
|
|
Patch0: 0001-CMake-Make-LIBOMP_HEADERS_INSTALL_PATH-a-cache-varia.patch
|
2020-02-18 13:29:15 +00:00
|
|
|
Patch1: 99b03c1c18.patch
|
2017-11-20 18:07:34 +00:00
|
|
|
|
|
|
|
BuildRequires: cmake
|
2020-07-20 13:15:44 +00:00
|
|
|
BuildRequires: ninja-build
|
2017-11-20 18:07:34 +00:00
|
|
|
BuildRequires: elfutils-libelf-devel
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-Data-Dumper
|
|
|
|
BuildRequires: perl-Encode
|
2018-03-28 06:00:35 +00:00
|
|
|
BuildRequires: libffi-devel
|
2017-11-20 18:07:34 +00:00
|
|
|
|
2020-07-20 13:15:44 +00:00
|
|
|
# For gpg source verification
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
|
2017-11-20 18:07:34 +00:00
|
|
|
Requires: elfutils-libelf%{?isa}
|
|
|
|
|
|
|
|
# libomp does not support s390x.
|
|
|
|
ExcludeArch: s390x
|
|
|
|
|
|
|
|
%description
|
|
|
|
OpenMP runtime for clang.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: OpenMP header files
|
|
|
|
Requires: clang-devel%{?isa} = %{version}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
OpenMP header files.
|
|
|
|
|
2018-03-28 06:01:07 +00:00
|
|
|
%package test
|
|
|
|
Summary: OpenMP regression tests
|
2020-06-16 11:51:35 +00:00
|
|
|
Requires: %{name}%{?isa} = %{version}-%{release}
|
2020-06-01 11:30:58 +00:00
|
|
|
Requires: %{name}-devel%{?isa} = %{version}-%{release}
|
2018-03-28 06:01:07 +00:00
|
|
|
Requires: clang
|
|
|
|
Requires: llvm
|
|
|
|
Requires: gcc
|
|
|
|
Requires: gcc-c++
|
|
|
|
Requires: python3-lit
|
|
|
|
|
|
|
|
%description test
|
|
|
|
OpenMP regression tests
|
|
|
|
|
2017-11-20 18:07:34 +00:00
|
|
|
%prep
|
2020-07-20 13:15:44 +00:00
|
|
|
%{gpgverify} --keyring='%{SOURCE4}' --signature='%{SOURCE3}' --data='%{SOURCE0}'
|
2020-03-30 20:50:46 +00:00
|
|
|
%autosetup -n %{libomp_srcdir} -p1
|
2017-11-20 18:07:34 +00:00
|
|
|
|
|
|
|
%build
|
2020-08-08 19:19:53 +00:00
|
|
|
# LTO causes build failures in this package. Disable LTO for now
|
|
|
|
%define _lto_cflags %{nil}
|
2017-11-20 18:07:34 +00:00
|
|
|
|
2020-07-20 13:15:44 +00:00
|
|
|
%cmake -GNinja \
|
2017-11-20 18:07:34 +00:00
|
|
|
-DLIBOMP_INSTALL_ALIASES=OFF \
|
|
|
|
-DLIBOMP_HEADERS_INSTALL_PATH:PATH=%{_libdir}/clang/%{version}/include \
|
|
|
|
%if 0%{?__isa_bits} == 64
|
2018-01-26 00:17:01 +00:00
|
|
|
-DOPENMP_LIBDIR_SUFFIX=64 \
|
2017-11-20 18:07:34 +00:00
|
|
|
%else
|
2018-01-26 00:17:01 +00:00
|
|
|
-DOPENMP_LIBDIR_SUFFIX= \
|
2017-11-20 18:07:34 +00:00
|
|
|
%endif
|
|
|
|
|
2020-07-20 13:15:44 +00:00
|
|
|
%cmake_build
|
2017-11-20 18:07:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2020-07-20 13:15:44 +00:00
|
|
|
%cmake_install
|
2017-11-20 18:07:34 +00:00
|
|
|
|
2018-03-28 06:01:07 +00:00
|
|
|
# Test package setup
|
|
|
|
%global libomp_srcdir %{_datadir}/libomp/src/
|
|
|
|
%global libomp_testdir %{libomp_srcdir}/runtime/test/
|
2019-04-25 02:52:11 +00:00
|
|
|
%global lit_cfg %{libomp_testdir}/%{_arch}.site.cfg.py
|
|
|
|
%global lit_fedora_cfg %{_datadir}/libomp/lit.fedora.cfg.py
|
2018-03-28 06:01:07 +00:00
|
|
|
|
|
|
|
install -d %{buildroot}%{libomp_srcdir}/runtime
|
|
|
|
cp -R runtime/test %{buildroot}%{libomp_srcdir}/runtime
|
|
|
|
cp -R runtime/src %{buildroot}%{libomp_srcdir}/runtime
|
|
|
|
|
2019-04-25 02:52:11 +00:00
|
|
|
# Generate lit config files. Strip off the last line that initiates the
|
|
|
|
# test run, so we can customize the configuration.
|
2020-07-20 13:15:44 +00:00
|
|
|
head -n -1 %{_vpath_builddir}/runtime/test/lit.site.cfg >> %{buildroot}%{lit_cfg}
|
2018-03-28 06:01:07 +00:00
|
|
|
|
2019-04-25 02:52:11 +00:00
|
|
|
# Install custom fedora config file
|
|
|
|
cp %{SOURCE2} %{buildroot}%{lit_fedora_cfg}
|
2018-03-28 06:01:07 +00:00
|
|
|
|
2019-04-25 02:52:11 +00:00
|
|
|
# Patch lit config files to load custom fedora config
|
|
|
|
echo "lit_config.load_config(config, '%{lit_fedora_cfg}')" >> %{buildroot}%{lit_cfg}
|
2018-03-28 06:01:07 +00:00
|
|
|
|
2019-04-25 02:52:11 +00:00
|
|
|
# Install test script
|
|
|
|
install -d %{buildroot}%{_libexecdir}/tests/libomp
|
|
|
|
install -m 0755 %{SOURCE1} %{buildroot}%{_libexecdir}/tests/libomp
|
2018-03-28 06:01:07 +00:00
|
|
|
|
2020-02-06 20:47:17 +00:00
|
|
|
# Remove static libraries with equivalent shared libraries
|
|
|
|
rm -rf %{buildroot}%{_libdir}/libarcher_static.a
|
|
|
|
|
2017-11-20 18:07:34 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%{_libdir}/libomp.so
|
2018-01-26 00:17:01 +00:00
|
|
|
%{_libdir}/libomptarget.so
|
2020-02-06 20:47:17 +00:00
|
|
|
%ifnarch %{arm}
|
|
|
|
%{_libdir}/libarcher.so
|
|
|
|
%endif
|
2018-03-28 06:00:35 +00:00
|
|
|
%ifnarch %{arm} %{ix86}
|
|
|
|
%{_libdir}/libomptarget.rtl.%{libomp_arch}.so
|
|
|
|
%endif
|
2017-11-20 18:07:34 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_libdir}/clang/%{version}/include/omp.h
|
2018-01-26 00:17:01 +00:00
|
|
|
%ifnarch %{arm}
|
2019-02-15 13:13:58 +00:00
|
|
|
%{_libdir}/clang/%{version}/include/omp-tools.h
|
2018-01-26 00:17:01 +00:00
|
|
|
%{_libdir}/clang/%{version}/include/ompt.h
|
|
|
|
%endif
|
2017-11-20 18:07:34 +00:00
|
|
|
|
2018-03-28 06:01:07 +00:00
|
|
|
%files test
|
|
|
|
%{_datadir}/libomp
|
2019-04-25 02:52:11 +00:00
|
|
|
%{_libexecdir}/tests/libomp/
|
2018-03-28 06:01:07 +00:00
|
|
|
|
2017-11-20 18:07:34 +00:00
|
|
|
%changelog
|
2020-08-08 19:19:53 +00:00
|
|
|
* Sat Aug 08 2020 Jeff Law <releng@fedoraproject.org> - 10.0.0-7
|
|
|
|
- Disable LTO for now
|
|
|
|
|
2020-08-01 04:05:19 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-6
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-28 05:16:11 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-20 13:15:44 +00:00
|
|
|
* Mon Jul 20 2020 sguelton@redhat.com - 10.0.0-4
|
|
|
|
- Use modern cmake macro
|
|
|
|
- Use gnupg verify
|
|
|
|
|
2020-06-16 11:51:35 +00:00
|
|
|
* Tue Jun 16 2020 sguelton@redhat.com - 10.0.0-3
|
|
|
|
- Add Requires: libomp = %{version}-%{release} to libomp-test to avoid
|
|
|
|
the need to test interoperability between the various combinations of old
|
|
|
|
and new subpackages.
|
|
|
|
|
2020-06-01 11:30:58 +00:00
|
|
|
* Mon Jun 01 2020 sguelton@redhat.com - 10.0.0-2
|
|
|
|
- Add Requires: libomp-devel = %{version}-%{release} to libomp-test to avoid
|
|
|
|
the need to test interoperability between the various combinations of old
|
|
|
|
and new subpackages.
|
|
|
|
|
2020-03-30 20:50:46 +00:00
|
|
|
* Mon Mar 30 2020 sguelton@redhat.com - 10.0.0-1
|
|
|
|
- 10.0.0 final
|
|
|
|
|
2020-03-25 11:01:31 +00:00
|
|
|
* Wed Mar 25 2020 sguelton@redhat.com - 10.0.0-0.6.rc6
|
|
|
|
- 10.0.0 rc6
|
|
|
|
|
2020-03-20 22:03:13 +00:00
|
|
|
* Fri Mar 20 2020 sguelton@redhat.com - 10.0.0-0.5.rc5
|
|
|
|
- 10.0.0 rc5
|
|
|
|
|
2020-03-15 18:57:12 +00:00
|
|
|
* Sun Mar 15 2020 sguelton@redhat.com - 10.0.0-0.4.rc4
|
|
|
|
- 10.0.0 rc4
|
|
|
|
|
2020-03-05 11:25:46 +00:00
|
|
|
* Thu Mar 05 2020 sguelton@redhat.com - 10.0.0-0.3.rc3
|
|
|
|
- 10.0.0 rc3
|
|
|
|
|
2020-02-14 09:43:22 +00:00
|
|
|
* Fri Feb 14 2020 sguelton@redhat.com - 10.0.0-0.2.rc2
|
|
|
|
- 10.0.0 rc2
|
|
|
|
|
2020-02-06 20:47:17 +00:00
|
|
|
* Fri Jan 31 2020 sguelton@redhat.com - 10.0.0-0.1.rc1
|
|
|
|
- 10.0.0 rc1
|
|
|
|
|
2020-01-29 09:57:38 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-12-20 02:42:09 +00:00
|
|
|
* Thu Dec 19 2019 Tom Stellard <tstellar@redhat.com> - 9.0.1-1
|
|
|
|
- 9.0.1 Release
|
|
|
|
|
2019-09-20 01:44:27 +00:00
|
|
|
* Thu Sep 19 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
|
|
|
|
- 9.0.0 Release
|
|
|
|
|
2019-08-22 22:25:16 +00:00
|
|
|
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.1.rc3
|
|
|
|
- 9.0.0-rc3 Release
|
|
|
|
|
2019-07-25 14:00:52 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-2.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-25 02:52:11 +00:00
|
|
|
* Thu Apr 25 2019 Tom Stellard <tstellar@redhat.com> - 8.0.0-2
|
|
|
|
- Simplify libomp-test package
|
|
|
|
|
2019-03-21 05:55:27 +00:00
|
|
|
* Wed Mar 20 2019 sguelton@redhat.com - 8.0.0-1
|
|
|
|
- 8.0.0 final
|
|
|
|
|
2019-03-12 14:15:43 +00:00
|
|
|
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.3.rc4
|
|
|
|
- 8.0.0 Release candidate 4
|
|
|
|
|
2019-02-22 08:22:05 +00:00
|
|
|
* Mon Feb 11 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
|
2019-02-13 15:56:02 +00:00
|
|
|
- 8.0.0 Release candidate 1
|
|
|
|
|
2019-02-01 07:51:08 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-1.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-11-27 10:55:16 +00:00
|
|
|
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-1
|
|
|
|
- 7.0.1 Release
|
|
|
|
|
2018-09-24 19:46:35 +00:00
|
|
|
* Wed Sep 12 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
|
|
|
|
- 7.0.1 Release
|
|
|
|
|
2018-09-12 00:13:54 +00:00
|
|
|
* Wed Sep 12 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.2.rc3
|
|
|
|
- 7.0.0-rc3 Release
|
|
|
|
|
2018-08-15 02:38:07 +00:00
|
|
|
* Tue Aug 14 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc1
|
|
|
|
- 7.0.1-rc1 Release
|
|
|
|
|
2018-07-13 08:34:55 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-04 22:14:36 +00:00
|
|
|
* Mon Jul 02 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-2
|
|
|
|
- Add -threads option to runtest.sh
|
|
|
|
|
2018-06-29 00:48:15 +00:00
|
|
|
* Thu Jun 28 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
|
|
|
|
- 6.0.1 Release
|
|
|
|
|
2018-05-11 23:27:15 +00:00
|
|
|
* Fri May 11 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
|
|
|
|
- 6.0.1-rc1 Release
|
|
|
|
|
2018-03-28 06:01:07 +00:00
|
|
|
* Wed Mar 28 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-3
|
|
|
|
- Add test package
|
|
|
|
|
2018-03-28 06:00:35 +00:00
|
|
|
* Wed Mar 28 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-2
|
|
|
|
- Enable libomptarget plugins
|
|
|
|
|
2018-03-09 23:24:39 +00:00
|
|
|
* Fri Mar 09 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
|
|
|
|
- 6.0.0 Release
|
|
|
|
|
2018-02-13 19:05:30 +00:00
|
|
|
* Tue Feb 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc2
|
|
|
|
- 6.0.0-rc2 Release
|
|
|
|
|
2018-02-07 22:55:05 +00:00
|
|
|
* Wed Feb 07 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-26 00:17:01 +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:46:12 +00:00
|
|
|
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
|
|
|
- 5.0.1 Release.
|
|
|
|
|
2017-11-20 18:07:34 +00:00
|
|
|
* Mon May 15 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
|
|
|
|
- Initial version.
|