libomp-vl.spec 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. %bcond_with test
  2. %global _lto_cflags %{nil}
  3. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  4. %define ver_suffix %(echo "%{version}" | cut -d . -f 1)
  5. %define _unpackaged_files_terminate_build 1
  6. Summary: OpenMP runtime for clang
  7. Summary(ja): clang用OpenMPランタイム
  8. Name: libomp
  9. Version: 20.1.4
  10. %define shortver %(echo %{version} | cut -d. -f1)
  11. Release: 1%{?_dist_release}
  12. Group: system
  13. Vendor: Project Vine
  14. Distribution: Vine Linux
  15. License: NCSA
  16. URL: https://llvm.org/
  17. Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/openmp-%{version}.src.tar.xz
  18. # patches
  19. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  20. BuildRequires: cmake
  21. BuildRequires: ninja
  22. BuildRequires: libffi-devel >= 3.3
  23. BuildRequires: elfutils-libelf-devel
  24. BuildRequires: clang-tools-extra
  25. # The AMDGCN device RTL requires clang and llvm-link to build
  26. BuildRequires: clang
  27. BuildRequires: llvm
  28. # libomptarget needs the llvm cmake files
  29. BuildRequires: llvm-devel
  30. BuildRequires: llvm-static
  31. %description
  32. The package contains the OpenMP runtime for clang.
  33. %package devel
  34. Summary: OpenMP header files
  35. Summary(ja): OpenMPヘッダファイル
  36. Group: programming
  37. Requires: clang-devel%{?isa} = %{version}
  38. %description devel
  39. The package contains the OpenMP header files.
  40. %debug_package
  41. %prep
  42. %autosetup -p2 -n openmp-%{version}.src
  43. %build
  44. %cmake \
  45. -GNinja \
  46. -DLIBOMP_INSTALL_ALIASES=OFF \
  47. -DCMAKE_MODULE_PATH=%{_datadir}/llvm/cmake/Modules \
  48. -DLLVM_DIR=%{_libdir}/cmake/llvm \
  49. -DCMAKE_INSTALL_INCLUDEDIR=%{_prefix}/lib/clang/%{shortver}/include \
  50. %if 0%{?__isa_bits} == 64
  51. -DOPENMP_LIBDIR_SUFFIX=64 \
  52. %else
  53. -DOPENMP_LIBDIR_SUFFIX= \
  54. %endif
  55. -DCMAKE_SKIP_RPATH:BOOL=ON \
  56. -DLIBOMP_HAVE_VERSION_SCRIPT_FLAG:BOOL=ON
  57. %cmake_build
  58. %install
  59. rm -rf %{buildroot}
  60. %cmake_install
  61. # Remove static libraries with equivalent shared libraries
  62. rm -f %{buildroot}%{_libdir}/libarcher_static.a
  63. %if %{with test}
  64. %check
  65. %cmake_build --target check-openmp
  66. %endif
  67. %files
  68. %license LICENSE.TXT
  69. %{_libdir}/libarcher.so
  70. %{_libdir}/libomp.so
  71. %{_libdir}/libompd.so
  72. %if 0
  73. %{_libdir}/libomptarget.so.*
  74. %{_libdir}/libomptarget.rtl.*.so*
  75. %endif
  76. %files devel
  77. %{_prefix}/lib/clang/%{shortver}/include/omp.h
  78. %{_prefix}/lib/clang/%{shortver}/include/ompx.h
  79. %{_prefix}/lib/clang/%{shortver}/include/omp-tools.h
  80. %{_prefix}/lib/clang/%{shortver}/include/ompt.h
  81. %{_prefix}/lib/clang/%{shortver}/include/ompt-multiplex.h
  82. %{_libdir}/cmake/openmp/FindOpenMPTarget.cmake
  83. %if 0
  84. %{_libdir}/libomptarget.devicertl.a
  85. %{_libdir}/libomptarget.so
  86. %{_libdir}/libomptarget.rtl.*.so
  87. %{_libdir}/libomptarget-*.bc
  88. %endif
  89. %changelog
  90. * Wed May 7 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 20.1.4-1
  91. - new upstream release.
  92. * Sun Apr 6 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 20.1.2-1
  93. - new upstream release.
  94. * Fri Nov 15 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 19.1.3-1
  95. - new upstream release.
  96. * Sat May 04 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 18.1.5-1
  97. - new upstream release.
  98. * Sat Oct 07 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 17.0.2-1
  99. - new upstream release.
  100. * Sun Oct 01 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 17.0.1-1
  101. - new upstream release.
  102. * Mon May 29 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 16.0.4-1
  103. - new upstream release.
  104. * Fri Dec 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 15.0.6-1
  105. - new upstream release.
  106. * Thu Oct 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 15.0.2-1
  107. - new upstream release.
  108. * Thu Sep 08 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 15.0.0-1
  109. - new upstream release.
  110. * Thu Jun 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 14.0.5-1
  111. - new upstream release.
  112. - updated Patch0.
  113. * Thu Feb 03 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 13.0.1-1
  114. - new upstream release.
  115. * Fri Oct 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 13.0.0-1
  116. - new upstream release.
  117. * Wed Aug 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 12.0.1-1
  118. - new upstream release.
  119. * Sat Apr 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 12.0.0-1
  120. - devided libomp from llvm.
  121. - new upstream release.
  122. * Fri Oct 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.0.0-2
  123. - enabled to build utils.
  124. * Thu Oct 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 11.0.0-1
  125. - new upstream release.
  126. * Mon Aug 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.1-1
  127. - new upstream release.
  128. * Thu Apr 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.0-2
  129. - rebuilt with libffi-3.3.
  130. * Fri Mar 27 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.0.0-1
  131. - new upstream release.
  132. * Sun Dec 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.1-1
  133. - new upstream release.
  134. * Sun Sep 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0-2
  135. - dropped all patches.
  136. - switched build-system to ninja.
  137. - switched python to python3.
  138. * Fri Sep 20 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0-1
  139. - new upstream release.
  140. - added OpenMP.
  141. * Sun Dec 16 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.1-1
  142. - fixed %%files.
  143. * Wed Dec 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 7.0.0-1
  144. - new upstream release.
  145. - dropped Patch0, 4, 5, 100 and 200.
  146. - imported Patch3, 7, 12, 15, 100, 101, 102 and 400 from rawhide.
  147. - renamed a subpackage "llvm-libs".
  148. - added a subpackage "lld".
  149. * Tue Jan 02 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.0.1-2
  150. - added subpackages "llvm-static", "python-lldb" and "python-clang".
  151. * Mon Jan 01 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.0.1-1
  152. - new upstream release.
  153. - dropped Patch1 and 2: fixed in upstream.
  154. - imported Patch0, 3-5, 100 and 200 from rawhide.
  155. - disabled Patch1002: no longer needed?
  156. * Fri Aug 5 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.8.1-1
  157. - new upstream release.
  158. - switched to cmake.
  159. - disable ocaml binding as default.
  160. - updated Patch1000 and 1002.
  161. - disabled Patch1000 as default.
  162. - cleanup patches.
  163. * Thu Jun 30 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.2-2
  164. - rebuild with gcc-5.4.0
  165. * Sat Sep 5 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 3.6.2-1
  166. - new upstream release
  167. - added BR: ocaml-ctypes
  168. * Thu Jun 4 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 3.6.1-1
  169. - new upstream release
  170. - dropt Patch 1, 201 and 1001
  171. - updated Patch 1000
  172. * Tue Mar 24 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 3.5.1-1
  173. - updated to 3.5.1
  174. - added Patch1, 2, 100, 101, 200, 201 and 202 from Fedora
  175. - added clang-libs, lldb, lldb-devel and compat32-llvm-libs subpackage
  176. - obsoleted clang-doc
  177. - built with ocaml 4.02.1
  178. * Sat Nov 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.5.0-2
  179. - fix <BTS:2832>
  180. - fix configure option "--with-c-include-dirs"
  181. - update Patch1000: clang-3.5.0-driver-ld.gold.patch
  182. - update Patch1001: clang-3.5.0-driver-lib64.patch
  183. - update Patch1002: clang-3.5.0-driver-vine.patch
  184. * Tue Oct 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.5.0-1
  185. - update to 3.5.0
  186. - remove Patch11 (clang-hardfloat-hack.patch)
  187. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3-2
  188. - rebuild with libffi-3.0.13
  189. * Mon Oct 28 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 3.3-1
  190. - update to 3.3
  191. * Mon Dec 03 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1-2
  192. - ld.gold (patch1000,1001)
  193. - add /%{_lib} to ld search path
  194. - add support *-vine-linux gcc (patch1002)
  195. * Fri Nov 30 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1-1
  196. - update to 3.1
  197. * Tue Jan 24 2012 NAKAMURA Kenta <kenta@vinelinux.org> - 3.0-1
  198. - updated to 3.0 release
  199. * Sun Jan 15 2012 NAKAMURA Kenta <kenta@vinelinux.org> - 2.9-3
  200. - added patch 2-4 to support -O4 link-time optimization
  201. * Fri Sep 9 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.9-2
  202. - disable -fno-var-tracking-assignments on ppc
  203. (seems like gcc-4.4.5 still doesn't support this)
  204. * Thu Aug 25 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.9-1
  205. - new upstream release
  206. - add BR: libffi-devel
  207. - add R: libffi-devel to -devel
  208. * Sun May 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7-1
  209. - initial build for Vine Linux
  210. * Sun May 2 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-1
  211. - Update to final 2.7 release
  212. * Sun Mar 28 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-0.1.pre1
  213. - Update to first 2.7 pre-release
  214. * Fri Sep 18 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.6.pre2
  215. - Update to 2.6 pre-release2
  216. - -devel subpackage now virtually provides -static
  217. * Wed Sep 9 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.5.pre1
  218. - Disable var tracking assignments on PPC
  219. * Wed Sep 9 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.4.pre1
  220. - Don't adjust clang include dir; files there are noarch (bz#521893)
  221. - Enable clang unit tests
  222. - clang and clang-analyzer renamed; no longer depend on llvm at runtime
  223. * Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.3.pre1
  224. - Package Clang's static analyzer tools
  225. * Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.2.pre1
  226. - PIC is now enabled by default; explicitly disable on %%{ix86}
  227. * Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.1.pre1
  228. - First 2.6 prerelease
  229. - Enable Clang front-end
  230. - Enable debuginfo generation
  231. * Sat Sep 5 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-6
  232. - Disable assertions (needed by OpenGTL, bz#521261)
  233. - Align spec file with upstream build instructions
  234. - Enable unit tests
  235. * Sat Aug 22 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-5
  236. - Only disable PIC on %%ix86; ppc actually needs it
  237. * Sat Aug 22 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-4
  238. - Disable use of position-independent code on 32-bit platforms
  239. (buggy in LLVM <= 2.5)
  240. * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-3
  241. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  242. * Wed Mar 4 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-2
  243. - Remove build scripts; they require the build directory to work
  244. * Wed Mar 4 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-1
  245. - Update to 2.5
  246. - Package build scripts (bug #457881)
  247. * Tue Dec 2 2008 Michel Salim <salimma@fedoraproject.org> - 2.4-2
  248. - Patched build process for the OCaml binding
  249. * Tue Dec 2 2008 Michel Salim <salimma@fedoraproject.org> - 2.4-1
  250. - Update to 2.4
  251. - Package Ocaml binding
  252. * Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.3-2
  253. - Add dependency on groff
  254. * Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.3-1
  255. - LLVM 2.3
  256. * Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.2-4
  257. - fix license tags
  258. * Wed Mar 5 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.2-3
  259. - Fix compilation problems with gcc 4.3
  260. * Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2-2
  261. - Autorebuild for GCC 4.3
  262. * Sun Jan 20 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.1-2
  263. - Fix review comments
  264. * Sun Jan 20 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.1-1
  265. - Initial version