Compare commits

...

11 Commits

Author SHA1 Message Date
openeuler-ci-bot
979aea71a3
!21 adopt to new cmake macro
From: @fundawang 
Reviewed-by: @liyunfei33 
Signed-off-by: @liyunfei33
2024-11-25 11:25:33 +00:00
Funda Wang
ea0ee1262f adopt to new cmake macro 2024-11-10 23:40:52 +08:00
openeuler-ci-bot
4346107d10
!11 [sync] PR-10: fix build error for loongarch64
From: @openeuler-sync-bot 
Reviewed-by: @liyunfei33 
Signed-off-by: @liyunfei33
2024-09-04 09:19:47 +00:00
liyunfei
14b67e4725 Merge branch 'master' of gitee.com:src-openeuler/openmp into sync-pr10-openEuler-24.03-LTS-to-master 2024-09-04 07:55:15 +00:00
openeuler-ci-bot
f6f0d7c59d
!14 Add BiSheng Autotuner support
From: @liyunfei33 
Reviewed-by: @cf-zhao 
Signed-off-by: @cf-zhao
2024-08-21 03:02:03 +00:00
liyunfei
342ab565d0 Add BiSheng Autotuner support
Signed-off-by: liyunfei <liyunfei33@huawei.com>
2024-08-20 20:29:23 +08:00
openeuler-ci-bot
105bd4ff11
!12 Add toolchain_clang build support
From: @liyunfei33 
Reviewed-by: @cf-zhao 
Signed-off-by: @cf-zhao
2024-07-15 03:31:48 +00:00
liyunfei
a536092b15 Add toolchain_clang build support
Signed-off-by: liyunfei <liyunfei33@huawei.com>
2024-07-08 11:45:41 +08:00
Wenlong Zhang
fa145039a8 fix build error for loongarch64
(cherry picked from commit da435d2efd40809128058f3cb72036f2e69f1829)
2024-06-13 20:09:36 +08:00
openeuler-ci-bot
0e38c565cb
!9 Update to 17.0.6
From: @zj94 
Reviewed-by: @liyunfei33, @cf-zhao 
Signed-off-by: @cf-zhao
2024-01-09 11:49:01 +00:00
zhoujing
22a630b7ed Update to 17.0.6
1. Change version
2. Change devel file location
3. Use llvm-cmake-utils package
2024-01-09 15:29:48 +08:00
6 changed files with 73 additions and 51 deletions

View File

@ -3,21 +3,6 @@
#### Description #### Description
LLVM OpenMP Libraries LLVM OpenMP Libraries
#### Software Architecture
Software architecture description
#### Installation
1. xxxx
2. xxxx
3. xxxx
#### Instructions
1. xxxx
2. xxxx
3. xxxx
#### Contribution #### Contribution
1. Fork the repository 1. Fork the repository
@ -25,7 +10,6 @@ Software architecture description
3. Commit your code 3. Commit your code
4. Create Pull Request 4. Create Pull Request
#### Gitee Feature #### Gitee Feature
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md 1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md

View File

@ -3,22 +3,6 @@
#### 介绍 #### 介绍
LLVM OpenMP Libraries LLVM OpenMP Libraries
#### 软件架构
软件架构说明
#### 安装教程
1. xxxx
2. xxxx
3. xxxx
#### 使用说明
1. xxxx
2. xxxx
3. xxxx
#### 参与贡献 #### 参与贡献
1. Fork 本仓库 1. Fork 本仓库
@ -26,7 +10,6 @@ LLVM OpenMP Libraries
3. 提交代码 3. 提交代码
4. 新建 Pull Request 4. 新建 Pull Request
#### 特技 #### 特技
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md

Binary file not shown.

BIN
openmp-17.0.6.src.tar.xz Normal file

Binary file not shown.

View File

@ -1,18 +1,28 @@
%bcond_with sys_llvm %bcond_without sys_llvm
%bcond_with check %bcond_with check
%bcond_without toolchain_clang
%bcond_without bisheng_autotuner
%global maj_ver 12 %if %{with toolchain_clang}
%global toolchain clang
%endif
%global toolchain clang
%global maj_ver 17
%global min_ver 0 %global min_ver 0
%global patch_ver 1 %global patch_ver 6
%global openmp_version %{maj_ver}.%{min_ver}.%{patch_ver} %global openmp_version %{maj_ver}.%{min_ver}.%{patch_ver}
%global openmp_srcdir openmp-%{openmp_version}.src %global openmp_srcdir openmp-%{openmp_version}.src
%if %{with sys_llvm} %if %{with sys_llvm}
%global pkg_name libomp %global pkg_name libomp
%global install_prefix %{_prefix} %global install_prefix %{_prefix}
%global install_datadir %{_datadir}
%else %else
%global pkg_name libomp%{maj_ver} %global pkg_name libomp%{maj_ver}
%global install_prefix %{_libdir}/llvm%{maj_ver} %global install_prefix %{_libdir}/llvm%{maj_ver}
%global install_datadir %{install_prefix}/share
%endif %endif
%global install_includedir %{install_prefix}/include %global install_includedir %{install_prefix}/include
@ -28,11 +38,11 @@
Name: %{pkg_name} Name: %{pkg_name}
Version: %{openmp_version} Version: %{openmp_version}
Release: 1 Release: 5
Summary: OpenMP runtime for clang Summary: OpenMP runtime for clang
License: Apache License 2.0 License: Apache-2.0
URL: http://openmp.llvm.org URL: https://openmp.llvm.org
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{openmp_version}/%{openmp_srcdir}.tar.xz Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{openmp_version}/%{openmp_srcdir}.tar.xz
BuildRequires: gcc gcc-c++ BuildRequires: gcc gcc-c++
@ -50,9 +60,11 @@ BuildRequires: clang-tools-extra
%if %{with sys_llvm} %if %{with sys_llvm}
BuildRequires: llvm-devel llvm-test BuildRequires: llvm-devel llvm-test
BuildRequires: llvm-cmake-utils = %{version}
%else %else
BuildRequires: llvm%{maj_ver}-devel BuildRequires: llvm%{maj_ver}-devel
BuildRequires: llvm%{maj_ver}-test BuildRequires: llvm%{maj_ver}-test
BuildRequires: llvm%{maj_ver}-cmake-utils = %{version}
%endif %endif
Requires: elfutils-libelf%{?isa} Requires: elfutils-libelf%{?isa}
@ -71,8 +83,7 @@ Requires: clang%{maj_ver}-resource-filesystem%{?isa} = %{version}
%description devel %description devel
OpenMP header files. OpenMP header files.
%prep %prep
%autosetup -n %{openmp_srcdir} -p2 %autosetup -n %{openmp_srcdir} -p2
@ -81,38 +92,78 @@ OpenMP header files.
%cmake -GNinja \ %cmake -GNinja \
-DCMAKE_INSTALL_PREFIX=%{install_prefix} \ -DCMAKE_INSTALL_PREFIX=%{install_prefix} \
-DLIBOMP_INSTALL_ALIASES=OFF \ -DLIBOMP_INSTALL_ALIASES=OFF \
-DCMAKE_MODULE_PATH=%{install_libdir}/cmake/llvm \ -DCMAKE_MODULE_PATH=%{install_datadir}/llvm/cmake/Modules \
-DLLVM_DIR=%{install_libdir}/cmake/llvm \ -DLLVM_DIR=%{install_libdir}/cmake/llvm \
-DCMAKE_INSTALL_INCLUDEDIR=%{install_libdir}/clang/%{openmp_version}/include \ -DCMAKE_INSTALL_INCLUDEDIR=%{install_libdir}/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 "%{toolchain}" == "clang"
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
%endif
%if %{with bisheng_autotuner}
-DLLVM_ENABLE_AUTOTUNER=ON \
%endif %endif
-DCMAKE_SKIP_RPATH:BOOL=ON -DCMAKE_SKIP_RPATH:BOOL=ON
%ninja_build %cmake_build
%install %install
%ninja_install %cmake_install
rm -rf %{buildroot}%{install_libdir}/libarcher_static.a rm -rf %{buildroot}%{install_libdir}/libarcher_static.a
%check
%files %files
%license LICENSE.TXT
%{install_libdir}/libomp.so %{install_libdir}/libomp.so
%{install_libdir}/libompd.so
%ifnarch %{arm} %ifnarch %{arm}
%{install_libdir}/libarcher.so %{install_libdir}/libarcher.so
%endif %endif
%ifnarch %{ix86} %{arm} riscv64 loongarch64
%{install_libdir}/libomptarget.rtl.amdgpu.so.%{maj_ver}
%{install_libdir}/libomptarget.rtl.cuda.so.%{maj_ver}
%{install_libdir}/libomptarget.rtl.%{libomp_arch}.so.%{maj_ver}
%endif
%{install_libdir}/libomptarget.so.%{maj_ver}
%files devel %files devel
%{install_includedir}/omp.h %{install_libdir}/clang/%{maj_ver}/include/omp.h
%{install_libdir}/cmake/openmp/FindOpenMPTarget.cmake
%ifnarch %{arm} %ifnarch %{arm}
%{install_includedir}/omp-tools.h %{install_libdir}/clang/%{maj_ver}/include/omp-tools.h
%{install_includedir}/ompt.h %{install_libdir}/clang/%{maj_ver}/include/ompt.h
%{install_includedir}/ompt-multiplex.h %{install_libdir}/clang/%{maj_ver}/include/ompt-multiplex.h
%endif %endif
%ifnarch %{ix86} %{arm}
%ifnarch riscv64 loongarch64
%{install_libdir}/libomptarget.rtl.amdgpu.so
%{install_libdir}/libomptarget.rtl.cuda.so
%{install_libdir}/libomptarget.rtl.%{libomp_arch}.so
%endif
%{install_libdir}/libomptarget.devicertl.a
%{install_libdir}/libomptarget-amdgpu-*.bc
%{install_libdir}/libomptarget-nvptx-*.bc
%endif
%{install_libdir}/libomptarget.so
%changelog %changelog
* Sun Nov 10 2024 Funda Wang <fundawang@yeah.net> - 17.0.6-5
- adopt to new cmake macro
* Tue Aug 20 2024 liyunfei <liyunfei33@huawei.com> - 17.0.6-4
- Add BiSheng Autotuner support.
* Fri Jul 5 2024 liyunfei <liyunfei33@huawei.com> - 17.0.6-3
- Add toolchain_clang build support
* Wed Jun 05 2024 Wenlong Zhang <zhangwenlong@loongson.cn> - 17.0.6-2
- fix build error for loongarch64
* Mon Dec 4 2023 zhoujing <zhoujing106@huawei.com> - 17.0.6-1
- Update to 17.0.6
* Sat Aug 26 2023 cf-zhao <zhaochuanfeng@huawei.com> - 12.0.1-1 * Sat Aug 26 2023 cf-zhao <zhaochuanfeng@huawei.com> - 12.0.1-1
- Initial version to 12.0.1 - Initial version to 12.0.1

4
openmp.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: llvm/llvm-project
tag_prefix: ^llvmorg-
separator: .