libomp/libomp.spec

77 lines
1.5 KiB
RPMSpec
Raw Normal View History

2018-01-26 00:17:01 +00:00
%global rc_ver 1
2017-11-20 18:07:34 +00:00
Name: libomp
2018-01-26 00:17:01 +00:00
Version: 6.0.0
Release: 0.1.rc%{rc_ver}%{?dist}
2017-11-20 18:07:34 +00:00
Summary: OpenMP runtime for clang
License: NCSA
URL: http://openmp.llvm.org
2018-01-26 00:17:01 +00:00
Source0: http://llvm.org/releases/%{version}/openmp-%{version}%{?rc_ver:rc%{rc_ver}}.src.tar.xz
2017-11-20 18:07:34 +00:00
Patch0: 0001-CMake-Make-LIBOMP_HEADERS_INSTALL_PATH-a-cache-varia.patch
BuildRequires: cmake
BuildRequires: elfutils-libelf-devel
BuildRequires: perl
BuildRequires: perl-Data-Dumper
BuildRequires: perl-Encode
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.
%prep
2018-01-26 00:17:01 +00:00
%autosetup -n openmp-%{version}%{?rc_ver:rc%{rc_ver}}.src -p1
2017-11-20 18:07:34 +00:00
%build
mkdir -p _build
cd _build
%cmake .. \
-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
%make_build
%install
%make_install -C _build
%files
%{_libdir}/libomp.so
2018-01-26 00:17:01 +00:00
%{_libdir}/libomptarget.so
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}
%{_libdir}/clang/%{version}/include/ompt.h
%endif
2017-11-20 18:07:34 +00:00
%changelog
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.