|
|
@ -1,10 +1,31 @@
|
|
|
|
%global toolchain gcc
|
|
|
|
%bcond_with snapshot_build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
|
|
|
# Unlock LLVM Snapshot LUA functions
|
|
|
|
|
|
|
|
%{llvm_sb}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%global maj_ver 18
|
|
|
|
|
|
|
|
%global min_ver 1
|
|
|
|
|
|
|
|
%global libomp_version %{maj_ver}.%{min_ver}.8
|
|
|
|
|
|
|
|
#global rc_ver 4
|
|
|
|
|
|
|
|
%global libomp_srcdir openmp-%{libomp_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
|
|
|
%global so_suffix %{maj_ver}.%{min_ver}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
|
|
|
%undefine rc_ver
|
|
|
|
|
|
|
|
%global maj_ver %{llvm_snapshot_version_major}
|
|
|
|
|
|
|
|
%global libomp_version %{llvm_snapshot_version}
|
|
|
|
|
|
|
|
%global so_suffix %{maj_ver}.%{min_ver}%{llvm_snapshot_version_suffix}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%global maj_ver 16
|
|
|
|
|
|
|
|
%global libomp_version %{maj_ver}.0.6
|
|
|
|
|
|
|
|
%global libomp_srcdir openmp-%{libomp_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
%global libomp_srcdir openmp-%{libomp_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
%global cmake_srcdir cmake-%{libomp_version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%global toolchain clang
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Opt out of https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer
|
|
|
|
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=2158587
|
|
|
|
|
|
|
|
%undefine _include_frame_pointers
|
|
|
|
|
|
|
|
|
|
|
|
%ifarch ppc64le
|
|
|
|
%ifarch ppc64le
|
|
|
|
%global libomp_arch ppc64
|
|
|
|
%global libomp_arch ppc64
|
|
|
@ -13,21 +34,22 @@
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
Name: libomp
|
|
|
|
Name: libomp
|
|
|
|
Version: %{libomp_version}
|
|
|
|
Version: %{libomp_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: OpenMP runtime for clang
|
|
|
|
Summary: OpenMP runtime for clang
|
|
|
|
|
|
|
|
|
|
|
|
License: NCSA
|
|
|
|
License: Apache-2.0 WITH LLVM-exception OR NCSA
|
|
|
|
URL: http://openmp.llvm.org
|
|
|
|
URL: http://openmp.llvm.org
|
|
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libomp_version}/%{libomp_srcdir}.tar.xz
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libomp_version}/%{libomp_srcdir}.tar.xz.sig
|
|
|
|
Source0: %{llvm_snapshot_source_prefix}openmp-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
|
|
|
|
|
|
|
%{llvm_snapshot_extra_source_tags}
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libomp_version}%{?rc_ver:-rc%{rc_ver}}/%{libomp_srcdir}.tar.xz
|
|
|
|
|
|
|
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libomp_version}%{?rc_ver:-rc%{rc_ver}}/%{libomp_srcdir}.tar.xz.sig
|
|
|
|
Source2: release-keys.asc
|
|
|
|
Source2: release-keys.asc
|
|
|
|
Source3: run-lit-tests
|
|
|
|
%endif
|
|
|
|
Source4: lit.fedora.cfg.py
|
|
|
|
|
|
|
|
Source5: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libomp_version}%{?rc_ver:-rc%{rc_ver}}/%{cmake_srcdir}.tar.xz
|
|
|
|
|
|
|
|
Source6: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{libomp_version}%{?rc_ver:-rc%{rc_ver}}/%{cmake_srcdir}.tar.xz.sig
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BuildRequires: clang
|
|
|
|
BuildRequires: clang >= %{maj_ver}
|
|
|
|
# For clang-offload-packager
|
|
|
|
# For clang-offload-packager
|
|
|
|
BuildRequires: clang-tools-extra
|
|
|
|
BuildRequires: clang-tools-extra
|
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: cmake
|
|
|
@ -43,11 +65,11 @@ BuildRequires: gnupg2
|
|
|
|
|
|
|
|
|
|
|
|
# libomptarget needs the llvm cmake files
|
|
|
|
# libomptarget needs the llvm cmake files
|
|
|
|
BuildRequires: llvm-devel
|
|
|
|
BuildRequires: llvm-devel
|
|
|
|
|
|
|
|
BuildRequires: llvm-cmake-utils
|
|
|
|
|
|
|
|
|
|
|
|
Requires: elfutils-libelf%{?isa}
|
|
|
|
Requires: elfutils-libelf%{?isa}
|
|
|
|
|
|
|
|
|
|
|
|
# libomp does not support s390x.
|
|
|
|
Obsoletes: libomp-test < 18.1.8
|
|
|
|
ExcludeArch: s390x
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
%description
|
|
|
|
OpenMP runtime for clang.
|
|
|
|
OpenMP runtime for clang.
|
|
|
@ -60,43 +82,25 @@ Requires: clang-resource-filesystem%{?isa} = %{version}
|
|
|
|
%description devel
|
|
|
|
%description devel
|
|
|
|
OpenMP header files.
|
|
|
|
OpenMP header files.
|
|
|
|
|
|
|
|
|
|
|
|
%package test
|
|
|
|
|
|
|
|
Summary: OpenMP regression tests
|
|
|
|
|
|
|
|
Requires: %{name}%{?isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
Requires: %{name}-devel%{?isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
Requires: clang
|
|
|
|
|
|
|
|
Requires: llvm
|
|
|
|
|
|
|
|
Requires: python3-lit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description test
|
|
|
|
|
|
|
|
OpenMP regression tests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
|
|
|
|
%if %{without snapshot_build}
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
|
|
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE6}' --data='%{SOURCE5}'
|
|
|
|
%endif
|
|
|
|
%setup -T -q -b 5 -n %{cmake_srcdir}
|
|
|
|
|
|
|
|
# TODO: It would be more elegant to set -DLLVM_COMMON_CMAKE_UTILS=%{_builddir}/%{cmake_srcdir},
|
|
|
|
|
|
|
|
# but this is not a CACHED variable, so we can't actually set it externally :(
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
mv %{cmake_srcdir} cmake
|
|
|
|
|
|
|
|
%autosetup -n %{libomp_srcdir} -p2
|
|
|
|
%autosetup -n %{libomp_srcdir} -p2
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
|
|
|
|
|
|
|
|
|
%if "%toolchain" == "gcc"
|
|
|
|
|
|
|
|
# Building openmp with LTO fails with GCC but works with Clang
|
|
|
|
|
|
|
|
%define _lto_cflags %{nil}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%cmake -GNinja \
|
|
|
|
%cmake -GNinja \
|
|
|
|
-DLIBOMP_INSTALL_ALIASES=OFF \
|
|
|
|
-DLIBOMP_INSTALL_ALIASES=OFF \
|
|
|
|
-DCMAKE_MODULE_PATH=%{_libdir}/cmake/llvm \
|
|
|
|
-DCMAKE_MODULE_PATH=%{_datadir}/llvm/cmake/Modules \
|
|
|
|
-DLLVM_DIR=%{_libdir}/cmake/llvm \
|
|
|
|
-DLLVM_DIR=%{_libdir}/cmake/llvm \
|
|
|
|
-DCMAKE_INSTALL_INCLUDEDIR=%{_libdir}/clang/%{maj_ver}/include \
|
|
|
|
-DCMAKE_INSTALL_INCLUDEDIR=%{_prefix}/lib/clang/%{maj_ver}/include \
|
|
|
|
%if 0%{?__isa_bits} == 64
|
|
|
|
%if 0%{?__isa_bits} == 64
|
|
|
|
-DOPENMP_LIBDIR_SUFFIX=64 \
|
|
|
|
-DOPENMP_LIBDIR_SUFFIX=64 \
|
|
|
|
%else
|
|
|
|
%else
|
|
|
|
-DOPENMP_LIBDIR_SUFFIX= \
|
|
|
|
-DOPENMP_LIBDIR_SUFFIX= \
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with snapshot_build}
|
|
|
|
|
|
|
|
-DLLVM_VERSION_SUFFIX="%{llvm_snapshot_version_suffix}" \
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON
|
|
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON
|
|
|
|
|
|
|
|
|
|
|
@ -106,30 +110,6 @@ mv %{cmake_srcdir} cmake
|
|
|
|
%install
|
|
|
|
%install
|
|
|
|
%cmake_install
|
|
|
|
%cmake_install
|
|
|
|
|
|
|
|
|
|
|
|
# Test package setup
|
|
|
|
|
|
|
|
%global libomp_srcdir %{_datadir}/libomp/src/
|
|
|
|
|
|
|
|
%global libomp_testdir %{libomp_srcdir}/runtime/test/
|
|
|
|
|
|
|
|
%global lit_cfg %{libomp_testdir}/%{_arch}.site.cfg.py
|
|
|
|
|
|
|
|
%global lit_fedora_cfg %{_datadir}/libomp/lit.fedora.cfg.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
install -d %{buildroot}%{libomp_srcdir}/runtime
|
|
|
|
|
|
|
|
cp -R runtime/test %{buildroot}%{libomp_srcdir}/runtime
|
|
|
|
|
|
|
|
cp -R runtime/src %{buildroot}%{libomp_srcdir}/runtime
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Generate lit config files. Strip off the last line that initiates the
|
|
|
|
|
|
|
|
# test run, so we can customize the configuration.
|
|
|
|
|
|
|
|
head -n -1 %{_vpath_builddir}/runtime/test/lit.site.cfg >> %{buildroot}%{lit_cfg}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Install custom fedora config file
|
|
|
|
|
|
|
|
cp %{SOURCE4} %{buildroot}%{lit_fedora_cfg}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Patch lit config files to load custom fedora config
|
|
|
|
|
|
|
|
echo "lit_config.load_config(config, '%{lit_fedora_cfg}')" >> %{buildroot}%{lit_cfg}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Install test script
|
|
|
|
|
|
|
|
install -d %{buildroot}%{_libexecdir}/tests/libomp
|
|
|
|
|
|
|
|
install -m 0755 %{SOURCE3} %{buildroot}%{_libexecdir}/tests/libomp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Remove static libraries with equivalent shared libraries
|
|
|
|
# Remove static libraries with equivalent shared libraries
|
|
|
|
rm -rf %{buildroot}%{_libdir}/libarcher_static.a
|
|
|
|
rm -rf %{buildroot}%{_libdir}/libarcher_static.a
|
|
|
|
|
|
|
|
|
|
|
@ -144,41 +124,58 @@ rm -rf %{buildroot}%{_libdir}/libarcher_static.a
|
|
|
|
%{_libdir}/libarcher.so
|
|
|
|
%{_libdir}/libarcher.so
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%ifnarch %{ix86} %{arm}
|
|
|
|
%ifnarch %{ix86} %{arm}
|
|
|
|
%{_libdir}/libomptarget.rtl.amdgpu.so.%{maj_ver}
|
|
|
|
# libomptarget is not supported on 32-bit systems.
|
|
|
|
%{_libdir}/libomptarget.rtl.amdgpu.nextgen.so.%{maj_ver}
|
|
|
|
# s390x does not support the offloading plugins.
|
|
|
|
%{_libdir}/libomptarget.rtl.cuda.so.%{maj_ver}
|
|
|
|
%ifnarch s390x
|
|
|
|
%{_libdir}/libomptarget.rtl.cuda.nextgen.so.%{maj_ver}
|
|
|
|
%{_libdir}/libomptarget.rtl.amdgpu.so.%{so_suffix}
|
|
|
|
%{_libdir}/libomptarget.rtl.%{libomp_arch}.so.%{maj_ver}
|
|
|
|
%{_libdir}/libomptarget.rtl.cuda.so.%{so_suffix}
|
|
|
|
%{_libdir}/libomptarget.rtl.%{libomp_arch}.nextgen.so.%{maj_ver}
|
|
|
|
%{_libdir}/libomptarget.rtl.%{libomp_arch}.so.%{so_suffix}
|
|
|
|
%{_libdir}/libomptarget.so.%{maj_ver}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{_libdir}/libomptarget.so.%{so_suffix}
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%files devel
|
|
|
|
%{_libdir}/clang/%{maj_ver}/include/omp.h
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/include/omp.h
|
|
|
|
%{_libdir}/cmake/openmp/FindOpenMPTarget.cmake
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/include/ompx.h
|
|
|
|
%ifnarch %{arm}
|
|
|
|
%ifnarch %{arm}
|
|
|
|
%{_libdir}/clang/%{maj_ver}/include/omp-tools.h
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/include/omp-tools.h
|
|
|
|
%{_libdir}/clang/%{maj_ver}/include/ompt.h
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/include/ompt.h
|
|
|
|
%{_libdir}/clang/%{maj_ver}/include/ompt-multiplex.h
|
|
|
|
%{_prefix}/lib/clang/%{maj_ver}/include/ompt-multiplex.h
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{_libdir}/cmake/openmp/
|
|
|
|
%ifnarch %{ix86} %{arm}
|
|
|
|
%ifnarch %{ix86} %{arm}
|
|
|
|
|
|
|
|
# libomptarget is not supported on 32-bit systems.
|
|
|
|
|
|
|
|
# s390x does not support the offloading plugins.
|
|
|
|
|
|
|
|
%ifnarch s390x
|
|
|
|
%{_libdir}/libomptarget.rtl.amdgpu.so
|
|
|
|
%{_libdir}/libomptarget.rtl.amdgpu.so
|
|
|
|
%{_libdir}/libomptarget.rtl.amdgpu.nextgen.so
|
|
|
|
|
|
|
|
%{_libdir}/libomptarget.rtl.cuda.so
|
|
|
|
%{_libdir}/libomptarget.rtl.cuda.so
|
|
|
|
%{_libdir}/libomptarget.rtl.cuda.nextgen.so
|
|
|
|
|
|
|
|
%{_libdir}/libomptarget.rtl.%{libomp_arch}.so
|
|
|
|
%{_libdir}/libomptarget.rtl.%{libomp_arch}.so
|
|
|
|
%{_libdir}/libomptarget.rtl.%{libomp_arch}.nextgen.so
|
|
|
|
%endif
|
|
|
|
%{_libdir}/libomptarget.devicertl.a
|
|
|
|
%{_libdir}/libomptarget.devicertl.a
|
|
|
|
%{_libdir}/libomptarget-amdgpu-*.bc
|
|
|
|
%{_libdir}/libomptarget-amdgpu-*.bc
|
|
|
|
%{_libdir}/libomptarget-nvptx-*.bc
|
|
|
|
%{_libdir}/libomptarget-nvptx-*.bc
|
|
|
|
%{_libdir}/libomptarget.so
|
|
|
|
%{_libdir}/libomptarget.so
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%files test
|
|
|
|
|
|
|
|
%{_datadir}/libomp
|
|
|
|
|
|
|
|
%{_libexecdir}/tests/libomp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Wed Jul 17 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.8-1
|
|
|
|
|
|
|
|
- Update to 18.1.8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jun 05 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.6-3
|
|
|
|
|
|
|
|
- Rebuild against clang-18.1.6-2 which defaults to DWARF4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 03 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.6-1
|
|
|
|
|
|
|
|
- Update to 18.1.6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Dec 11 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.6-1
|
|
|
|
|
|
|
|
- Update to 17.0.6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Oct 20 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.1-2
|
|
|
|
|
|
|
|
- Add obsoletes for libomp-test package.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Sep 29 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.1-1
|
|
|
|
|
|
|
|
- Update to 17.0.1
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jul 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.6-1
|
|
|
|
* Wed Jul 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.6-1
|
|
|
|
- Update to LLVM 16.0.6
|
|
|
|
- Update to LLVM 16.0.6
|
|
|
|
|
|
|
|
|
|
|
|