compiler-rt-vl.spec 11 KB

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