]> git.pld-linux.org Git - packages/llvm.git/blob - llvm.spec
863cc4eaefbb4d6b829ef549c97b1aa28b30e714
[packages/llvm.git] / llvm.spec
1 #
2 # NOTE:
3 #  - normal build (x86_64) requires about 80 GB of disk space
4 #
5 # TODO:
6 # - move and package:
7 #       %{_datadir}/clang/bash-autocomplete.sh
8 #       %{_datadir}/clang/clang-format-sublime.py - sublime plugin
9 #       %{_datadir}/clang/clang-format.el - clang tools emacs integration
10 #       %{_datadir}/clang/clang-include-fixer.el
11 #       %{_datadir}/clang/clang-rename.el
12 # - no content in doc package (it used to contain parts of clang apidocs and some examples)
13 # - system isl in polly?
14 #
15 # Conditional build:
16 %bcond_without  lldb                    # LLDB debugger
17 %bcond_without  polly                   # Polly cache-locality optimization, auto-parallelism and vectorization
18 %bcond_without  rt                      # compiler-rt libraries
19 %bcond_without  multilib                # compiler-rt multilib libraries
20 %bcond_without  ocaml                   # OCaml binding
21 %bcond_without  z3                      # Z3 constraint solver support in Clang Static Analyzer
22 %bcond_without  doc                     # HTML docs and man pages
23 %bcond_without  target_aarch64          # AArch64 target support
24 %bcond_without  target_amdgpu           # AMDGPU target support
25 %bcond_without  target_arm              # ARM target support
26 %bcond_without  target_avr              # AVR target support
27 %bcond_without  target_bpf              # BPF target support
28 %bcond_without  target_hexagon          # Hexagon target support
29 %bcond_without  target_lanai            # Lanai target support
30 %bcond_without  target_mips             # Mips target support
31 %bcond_without  target_msp430           # MSP430 target support
32 %bcond_without  target_nvptx            # NVPTX target support
33 %bcond_without  target_powerpc          # PowerPC target support
34 %bcond_without  target_riscv            # RISCV target support
35 %bcond_without  target_sparc            # Sparc target support
36 %bcond_without  target_systemz          # SystemZ target support
37 %bcond_without  target_webassembly      # WebAssembly target support
38 %bcond_without  target_x86              # X86 target support
39 %bcond_without  target_xcore            # XCore target support
40 %bcond_with     flang                   # flang (Fortran18) compiler (broken as of 11.0.1)
41 %bcond_with     cxxmodules              # C++20 modules (requires support in bootstrap compiler)
42 %bcond_with     apidocs                 # doxygen docs (HUGE, so they are not built by default)
43 %bcond_with     tests                   # run tests
44 %bcond_with     lowmem                  # lower memory requirements
45
46 # No ocaml on other arches or no native ocaml (required for ocaml-ctypes)
47 %ifnarch %{ix86} %{x8664} %{arm} aarch64 ppc sparc sparcv9
48 %undefine       with_ocaml
49 %endif
50
51 %ifarch armv3l armv4b armv4l armv4tl armv5tl armv5tel armv5tejl armv6l armv6hl
52 %undefine       with_rt
53 %endif
54
55 %ifarch %{arm} aarch64
56 %define         with_lowmem             1
57 %endif
58
59 %define         targets_to_build        %{?with_target_aarch64:AArch64;}%{?with_target_amdgpu:AMDGPU;}%{?with_target_arm:ARM;}%{?with_target_avr:AVR;}%{?with_target_bpf:BPF;}%{?with_target_hexagon:Hexagon;}%{?with_target_lanai:Lanai;}%{?with_target_mips:Mips;}%{?with_target_msp430:MSP430;}%{?with_target_nvptx:NVPTX;}%{?with_target_powerpc:PowerPC;}%{?with_target_riscv:RISCV;}%{?with_target_sparc:Sparc;}%{?with_target_systemz:SystemZ;}%{?with_target_webassembly:WebAssembly;}%{?with_target_x86:X86;}%{?with_target_xcore:XCore;}
60
61 Summary:        The Low Level Virtual Machine (An Optimizing Compiler Infrastructure)
62 Summary(pl.UTF-8):      Niskopoziomowa maszyna wirtualna (infrastruktura kompilatora optymalizującego)
63 Name:           llvm
64 Version:        13.0.0
65 Release:        3
66 License:        University of Illinois/NCSA Open Source License
67 Group:          Development/Languages
68 #Source0Download: https://github.com/llvm/llvm-project/releases/
69 Source0:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{name}-%{version}.src.tar.xz
70 # Source0-md5:  8c24626dce3ee9d87d1079ebf0897db5
71 Source1:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/clang-%{version}.src.tar.xz
72 # Source1-md5:  020cbac6e5786094fe4f96f72e290763
73 Source2:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/compiler-rt-%{version}.src.tar.xz
74 # Source2-md5:  e2e136656d27d60c5f40e20260f63c07
75 Source3:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/lldb-%{version}.src.tar.xz
76 # Source3-md5:  0956c6078d1fd3bee22d064e2addd784
77 Source4:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/polly-%{version}.src.tar.xz
78 # Source4-md5:  4bde9e5c4d739576cf2d804d50c822d6
79 Source5:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/clang-tools-extra-%{version}.src.tar.xz
80 # Source5-md5:  f86778fc0d97508b4d7c244d93ebf944
81 Source6:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/lld-%{version}.src.tar.xz
82 # Source6-md5:  e4f95d6cb895ebedf2c3224585682159
83 Source7:        https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/flang-%{version}.src.tar.xz
84 # Source7-md5:  4125a570905dd2755748e6f33442b74d
85 # "mlir" subdir extracted from https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/llvm-project-13.0.0.src.tar.xz
86 Source8:        mlir-%{version}.tar.xz
87 # Source8-md5:  de6a9476ef2a52b59d7c29a8bb786719
88 Patch1:         %{name}-pld.patch
89 Patch2:         %{name}-python-modules.patch
90 Patch3:         x32-gcc-toolchain.patch
91 Patch4:         cmake-buildtype.patch
92 Patch5:         %{name}-ocaml-shared.patch
93 Patch6:         %{name}-flang.patch
94 Patch7:         llvm12-build_fixes.patch
95 Patch8:         %{name}-selective_bindings.patch
96 URL:            http://llvm.org/
97 BuildRequires:  bash
98 BuildRequires:  binutils-devel
99 BuildRequires:  bison
100 BuildRequires:  cmake >= 3.13.4
101 BuildRequires:  flex
102 BuildRequires:  groff
103 BuildRequires:  libedit-devel
104 BuildRequires:  libltdl-devel
105 BuildRequires:  libpfm-devel
106 BuildRequires:  libstdc++-devel >= 6:5
107 BuildRequires:  libxml2-devel >= 2
108 BuildRequires:  ncurses-devel
109 %if %{with ocaml}
110 BuildRequires:  ocaml >= 4.00.0
111 BuildRequires:  ocaml-ctypes-devel >= 0.4
112 BuildRequires:  ocaml-findlib
113 BuildRequires:  ocaml-ocamldoc
114 %{?with_tests:BuildRequires:    ocaml-ounit >= 2}
115 %endif
116 BuildRequires:  perl-base >= 1:5.6
117 BuildRequires:  perl-tools-pod
118 BuildRequires:  python3 >= 1:3
119 BuildRequires:  python3-PyYAML
120 BuildRequires:  python3-pygments >= 2.0
121 BuildRequires:  rpm-pythonprov
122 BuildRequires:  rpmbuild(macros) >= 1.742
123 %{?with_doc:BuildRequires:      sphinx-pdg}
124 BuildRequires:  tar >= 1:1.22
125 BuildRequires:  xar-devel
126 BuildRequires:  xz
127 %{?with_z3:BuildRequires:       z3-devel >= 4.7.1}
128 BuildRequires:  zlib-devel
129 %if %{with apidocs}
130 BuildRequires:  doxygen
131 BuildRequires:  graphviz
132 %endif
133 %if %{with tests}
134 BuildRequires:  dejagnu
135 BuildRequires:  tcl-devel
136 %endif
137 %if %{with rt} && %{with multilib}
138 %ifarch %{x8664}
139 BuildRequires:  gcc-c++-multilib-32
140 BuildRequires:  libstdc++-multilib-32-devel
141 %endif
142 %ifarch x32
143 BuildRequires:  gcc-c++-multilib-32
144 BuildRequires:  gcc-c++-multilib-64
145 BuildRequires:  glibc-devel(x86_64)
146 BuildRequires:  libstdc++-multilib-32-devel
147 BuildRequires:  libstdc++-multilib-64-devel
148 %endif
149 %endif
150 %if %{with lldb}
151 BuildRequires:  epydoc
152 %ifarch i386 i486 %{arm}
153 BuildRequires:  libatomic-devel
154 %endif
155 BuildRequires:  libxml2-devel >= 2
156 BuildRequires:  lua-devel
157 BuildRequires:  ncurses-ext-devel
158 BuildRequires:  python3-devel >= 1:3.2
159 %{?with_doc:BuildRequires:      python3-recommonmark}
160 BuildRequires:  swig-python >= 3.0.11
161 BuildRequires:  xz-devel
162 %endif
163 %if %{with polly}
164 #BuildRequires: gmp-devel or imath-devel (private copy in polly/lib/External/isl/imath)
165 # private copy in polly/lib/External/isl
166 #BuildRequires: isl-devel >= 0.22.1
167 #TODO (bcond): cuda-devel (with POLLY_ENABLE_GPGPU_CODEGEN=ON)
168 %{?with_target_nvptx:BuildRequires:     ocl-icd-libOpenCL-devel}
169 %endif
170 %if %{with ocaml}
171 BuildConflicts: llvm-ocaml
172 %endif
173 Requires:       %{name}-libs = %{version}-%{release}
174 # LLVM is not supported on PPC64
175 # http://llvm.org/bugs/show_bug.cgi?id=3729
176 ExcludeArch:    ppc64
177 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
178
179 %define         abi     13
180 %define         _sysconfdir     /etc/%{name}
181
182 %define         specflags_ppc   -fno-var-tracking-assignments
183
184 # objcopy: BFD (GNU Binutils) 2.32 assertion fail format.c:459
185 # objcopy: error: .../libLLVM-8.so(.debug_gnu_pubtypes) is too large (0x1ceee347 bytes)
186 # objcopy: .../libLLVM-8.so[.debug_gnu_pubtypes]: memory exhausted
187 %ifarch x32
188 %define         _enable_debug_packages  0
189 %endif
190 # ix86 and x32 - the same issue as https://llvm.org/bugs/show_bug.cgi?id=27237
191 # use -gsplit-dwarf only when building packages with debuginfo
192 # to avoid excessive disk space usage
193 %if 0%{?_enable_debug_packages}
194 %define         specflags       -gsplit-dwarf
195 %endif
196
197 # strip corrupts: $RPM_BUILD_ROOT/usr/lib64/llvm-gcc/bin/llvm-c++ ...
198 %define         _noautostrip    .*/\\(libmud.*\\.a\\|bin/llvm-.*\\|lib.*++\\.a\\)
199
200 # clang doesn't know -fvar-tracking-assignments, and leaving it here would pollute llvm-config
201 # -Werror=format-security is for swig
202 # TODO: add - -Werror=format-security to tools/lldb/scripts/LLDBWrapPython.cpp
203 %define         filterout_c     -fvar-tracking-assignments
204 %define         filterout_cxx   -fvar-tracking-assignments -Werror=format-security
205 %define         filterout_ccpp  -fvar-tracking-assignments
206
207 %description
208 LLVM is a compiler infrastructure designed for compile-time,
209 link-time, runtime, and idle-time optimization of programs from
210 arbitrary programming languages. LLVM is written in C++ and has been
211 developed since 2000 at the University of Illinois and Apple. It
212 currently supports compilation of C and C++ programs using clang
213 frontend.
214
215 %description -l pl.UTF-8
216 LLVM to infrastruktura kompilatora zaprojektowana do optymalizacji
217 czasu kompilowania, linkowania, działania i bezczynności programów w
218 dowolnych językach programowania. Jest napisana w C++, rozwijana od
219 roku 2000 przez Uniwersytet w Illinois i Apple. Aktualnie obsługuje
220 kompilację programów w C i C++ przy użyciu frontendu clang.
221
222 %package libs
223 Summary:        LLVM shared libraries
224 Summary(pl.UTF-8):      Biblioteki współdzielone LLVM-a
225 Group:          Libraries
226 Conflicts:      llvm < 3.2
227
228 %description libs
229 LLVM shared libraries.
230
231 %description libs -l pl.UTF-8
232 Biblioteki współdzielone LLVM-a.
233
234 %package devel
235 Summary:        Static libraries and header files for LLVM
236 Summary(pl.UTF-8):      Biblioteki statyczne i pliki nagłówkowe dla LLVM-a
237 Group:          Development/Languages
238 Requires:       %{name}-libs = %{version}-%{release}
239 Requires:       libstdc++-devel >= 6:3.4
240
241 %description devel
242 This package contains static libraries and header files needed to
243 develop new native programs that use the LLVM infrastructure.
244
245 %description devel -l pl.UTF-8
246 Ten pakiet zawiera biblioteki statyczne oraz pliki nagłówkowe
247 potrzebne do tworzenia nowych programów natywnych wykorzystujących
248 infrastrukturę LLVM.
249
250 %package doc
251 Summary:        Documentation for LLVM
252 Summary(pl.UTF-8):      Dokumentacja do LLVM-a
253 Group:          Documentation
254 # does not require base
255
256 %description doc
257 Documentation for the LLVM compiler infrastructure.
258
259 %description doc -l pl.UTF-8
260 Dokumentacja do infrastruktury kompilatorów LLVM.
261
262 %package apidocs
263 Summary:        API documentation for LLVM
264 Summary(pl.UTF-8):      Dokumentacja API LLVM-a
265 Group:          Development/Languages
266 Requires:       %{name}-doc = %{version}-%{release}
267
268 %description apidocs
269 API documentation for the LLVM compiler infrastructure.
270
271 %description apidocs -l pl.UTF-8
272 Dokumentacja API infrastruktury kompilatorów LLVM.
273
274 %package polly
275 Summary:        Polyhedral optimizations for LLVM
276 Summary(pl.UTF-8):      Optymalizacje wielościanowe dla LLVM-a
277 Group:          Development/Tools
278 URL:            http://polly.llvm.org/
279 Requires:       %{name} = %{version}-%{release}
280
281 %description polly
282 Polly is a high-level loop and data-locality optimizer and
283 optimization infrastructure for LLVM. It uses an abstract mathematical
284 representation based on integer polyhedra to analyze and optimize the
285 memory access pattern of a program.
286
287 %description polly -l pl.UTF-8
288 Polly to wysokopoziomowy optymalizator i infrastruktura LLVM-a do
289 optymalizacji pętli i położenia danych. Wykorzystuje abstrakcyjną
290 reprezentację matematyczną opartą na wielościanach całkowitoliczbowych
291 do analizy i optymalizacji wzorców dostępu do pamięci przez program.
292
293 %package polly-devel
294 Summary:        Header files for LLVM Polly optimization infrastructure
295 Summary(pl.UTF-8):      Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly
296 Group:          Development/Libraries
297 URL:            http://polly.llvm.org/
298 Requires:       %{name}-devel = %{version}-%{release}
299 Requires:       %{name}-polly = %{version}-%{release}
300
301 %description polly-devel
302 Header files for LLVM Polly optimization infrastructure.
303
304 %description polly-devel -l pl.UTF-8
305 Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly.
306
307 %package -n clang
308 Summary:        A C language family frontend for LLVM
309 Summary(pl.UTF-8):      Frontend LLVM-a do języków z rodziny C
310 License:        NCSA
311 Group:          Development/Languages
312 Requires:       %{name} = %{version}-%{release}
313 Requires:       clang-libs = %{version}-%{release}
314
315 %description -n clang
316 clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
317 of a crane or goose. 3. C-language family front-end toolkit.
318
319 The goal of the Clang project is to create a new C, C++, Objective C
320 and Objective C++ front-end for the LLVM compiler. Its tools are built
321 as libraries and designed to be loosely-coupled and extendable.
322
323 %description -n clang -l pl.UTF-8
324 clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
325 piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
326 z rodziny C.
327
328 Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
329 LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
330 budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
331 i rozszerzaniu.
332
333 %package -n clang-libs
334 Summary:        Clang shared libraries
335 Summary(pl.UTF-8):      Biblioteki współdzielone Clanga
336 Group:          Libraries
337
338 %description -n clang-libs
339 Clang shared libraries.
340
341 %description -n clang-libs -l pl.UTF-8
342 Biblioteki współdzielone Clanga.
343
344 %package -n clang-multilib
345 Summary:        A C language family frontend for LLVM - 32-bit support
346 Summary(pl.UTF-8):      Frontend LLVM-a do języków z rodziny C - obsługa binariów 32-bitowych
347 License:        NCSA
348 Group:          Development/Languages
349 Requires:       clang = %{version}-%{release}
350
351 %description -n clang-multilib
352 clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
353 of a crane or goose. 3. C-language family front-end toolkit.
354
355 The goal of the Clang project is to create a new C, C++, Objective C
356 and Objective C++ front-end for the LLVM compiler. Its tools are built
357 as libraries and designed to be loosely-coupled and extendable.
358
359 This package contains the C compiler support for producing 32-bit
360 programs on 64-bit host.
361
362 %description -n clang-multilib -l pl.UTF-8
363 clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
364 piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
365 z rodziny C.
366
367 Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
368 LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
369 budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
370 i rozszerzaniu.
371
372 Ten pakiet zawiera rozszerzenie kompilatora C o obsługę tworzenia
373 programów 32-bitowych na maszynie 64-bitowej.
374
375 %package -n clang-analyzer
376 Summary:        A source code analysis framework
377 Summary(pl.UTF-8):      Szkielet do analizy kodu źródłowego
378 License:        NCSA
379 Group:          Development/Languages
380 Requires:       clang = %{version}-%{release}
381 # not picked up automatically since files are currently not instaled
382 # in standard Python hierarchies yet
383 Requires:       python3
384
385 %description -n clang-analyzer
386 The Clang Static Analyzer consists of both a source code analysis
387 framework and a standalone tool that finds bugs in C and Objective-C
388 programs. The standalone tool is invoked from the command-line, and is
389 intended to run in tandem with a build of a project or code base.
390
391 %description -n clang-analyzer -l pl.UTF-8
392 Clang Static Analyzer składa się ze szkieletu do analizy kodu
393 źródłowego oraz samodzielnego narzędzia znajdującego błędy w
394 programach w C i C++. Narzędzie jest wywoływane z linii poleceń, z
395 myślą o uruchamianiu wraz z kompilacją projektu lub kodu.
396
397 %package -n clang-devel
398 Summary:        Header files for Clang
399 Summary(pl.UTF-8):      Pliki nagłówkowe Clanga
400 Group:          Development/Languages
401 Requires:       %{name}-devel = %{version}-%{release}
402 Requires:       clang = %{version}-%{release}
403 %{?with_polly:Requires: llvm-polly-devel = %{version}-%{release}}
404
405 %description -n clang-devel
406 This package contains header files for the Clang compiler.
407
408 %description -n clang-devel -l pl.UTF-8
409 Ten pakiet zawiera pliki nagłówkowe kompilatora Clang.
410
411 %package -n clang-doc
412 Summary:        Documentation for Clang
413 Summary(pl.UTF-8):      Dokumentacja do Clanga
414 Group:          Documentation
415 Requires:       %{name} = %{version}-%{release}
416
417 %description -n clang-doc
418 Documentation for the Clang compiler front-end.
419
420 %description -n clang-doc -l pl.UTF-8
421 Dokumentacja do frontendu kompilatora Clang.
422
423 %package -n clang-apidocs
424 Summary:        API documentation for Clang
425 Summary(pl.UTF-8):      Dokumentacja API Clanga
426 Group:          Development/Languages
427 Requires:       clang-doc = %{version}-%{release}
428
429 %description -n clang-apidocs
430 API documentation for the Clang compiler.
431
432 %description -n clang-apidocs -l pl.UTF-8
433 Dokumentacja API kompilatora Clang.
434
435 %package -n clang-tools-extra
436 Summary:        Extra tools for Clang
437 Summary(pl.UTF-8):      Dodatkowe narzędzia do kompilatora Clang
438 Group:          Development/Tools
439 URL:            http://clang.llvm.org/docs/ClangTools.html
440 Requires:       clang = %{version}-%{release}
441
442 %description -n clang-tools-extra
443 Extra tools for Clang.
444
445 %description -n clang-tools-extra -l pl.UTF-8
446 Dodatkowe narzędzia do kompilatora Clang.
447
448 %package -n lld
449 Summary:        The LLVM linker
450 Summary(pl.UTF-8):      Konsolidator z projektu LLVM
451 Group:          Development/Libraries
452 URL:            http://lld.llvm.org/
453 Requires:       %{name} = %{version}-%{release}
454
455 %description -n lld
456 lld is a new set of modular code for creating linker tools.
457
458 %description -n lld -l pl.UTF-8
459 lld to nowy zbiór modularnego kodu do tworzenia narzędzi
460 konsolidujących.
461
462 %package -n lld-devel
463 Summary:        Development files for LLD linker tools
464 Summary(pl.UTF-8):      Pliki programistyczne narzędzi konsolidujących LLD
465 Group:          Development/Tools
466 URL:            http://lld.llvm.org/
467 Requires:       %{name}-devel = %{version}-%{release}
468 Requires:       xar-devel
469
470 %description -n lld-devel
471 Development files for LLD linker tools.
472
473 %description -n lld-devel -l pl.UTF-8
474 Pliki programistyczne narzędzi konsolidujących LLD.
475
476 %package -n lldb
477 Summary:        Next generation high-performance debugger
478 Summary(pl.UTF-8):      Wydajny debugger nowej generacji
479 Group:          Development/Debuggers
480 URL:            http://lldb.llvm.org/
481 Requires:       %{name} = %{version}-%{release}
482 Requires:       python3-six
483
484 %description -n lldb
485 LLDB is a next generation, high-performance debugger. It is built as a
486 set of reusable components which highly leverage existing libraries in
487 the larger LLVM Project, such as the Clang expression parser and LLVM
488 disassembler.
489
490 %description -n lldb -l pl.UTF-8
491 LLDB to wydajny debugger nowej generacji. Jest zbudowany w oparciu o
492 komponenty wielokrotnego użytku, wykorzystujące istniejące biblioteki
493 w projekcie LLVM, takie jak analizator wyrażeń kompilatora Clang oraz
494 disasembler LLVM.
495
496 %package -n lldb-devel
497 Summary:        Development files for LLDB debugger
498 Summary(pl.UTF-8):      Pliki programistyczne debuggera LLDB
499 Group:          Development/Libraries
500 URL:            http://lldb.llvm.org/
501 Requires:       %{name}-devel = %{version}-%{release}
502 Requires:       clang-devel = %{version}-%{release}
503 Requires:       lldb = %{version}-%{release}
504
505 %description -n lldb-devel
506 Development files for LLDB debugger.
507
508 %description -n lldb-devel -l pl.UTF-8
509 Pliki programistyczne debuggera LLDB.
510
511 %package ocaml
512 Summary:        OCaml binding for LLVM
513 Summary(pl.UTF-8):      Wiązanie OCamla do LLVM-a
514 Group:          Libraries
515 Requires:       %{name} = %{version}-%{release}
516 %if %{with ocaml}
517 %requires_eq    ocaml-runtime
518 %endif
519
520 %description ocaml
521 OCaml binding for LLVM.
522
523 %description ocaml -l pl.UTF-8
524 Wiązanie OCamla do LLVM-a.
525
526 %package ocaml-devel
527 Summary:        Development files for LLVM OCaml binding
528 Summary(pl.UTF-8):      Pliki programistyczne wiązania OCamla do LLVM-a
529 Group:          Development/Libraries
530 Requires:       %{name}-devel = %{version}-%{release}
531 Requires:       %{name}-ocaml = %{version}-%{release}
532
533 %description ocaml-devel
534 The llvm-ocaml-devel package contains libraries and signature files
535 for developing applications that use llvm-ocaml binding.
536
537 %description ocaml-devel -l pl.UTF-8
538 Ten pakiet zawiera biblioteki i pliki sygnatur do tworzenia aplikacji
539 wykorzystujących wiązanie llvm-ocaml.
540
541 %package ocaml-doc
542 Summary:        Documentation for LLVM's OCaml binding
543 Summary(pl.UTF-8):      Dokumentacja wiązania OCamla do LLVM-a
544 Group:          Documentation
545 Requires:       %{name}-ocaml = %{version}-%{release}
546
547 %description ocaml-doc
548 HTML documentation for LLVM's OCaml binding.
549
550 %description ocaml-doc -l pl.UTF-8
551 Dokumentacja HTML wiązania OCamla do LLVM-a.
552
553 %package opt-viewer
554 Summary:        Optimization records visualization tools
555 Summary(pl.UTF-8):      Narzędzia do wizualizacji rekordów optymalizacji
556 Group:          Development/Tools
557 Requires:       %{name} = %{version}
558 BuildArch:      noarch
559
560 %description opt-viewer
561 Optimization records visualization tools.
562
563 %description opt-viewer -l pl.UTF-8
564 Narzędzia do wizualizacji rekordów optymalizacji.
565
566 %package -n vim-plugin-clang
567 Summary:        Clang format and rename integration for Vim
568 Summary(pl.UTF-8):      Integracja narzędzi Clang do formatowania i zmiany nazw z Vimem
569 Group:          Applications/Editors/Vim
570 Requires:       vim-rt >= 4:7.0
571 BuildArch:      noarch
572
573 %description -n vim-plugin-clang
574 Clang format and rename integration for Vim.
575
576 %description -n vim-plugin-clang -l pl.UTF-8
577 Integracja narzędzi Clang do formatowania i zmiany nazw z Vimem.
578
579 %prep
580 %setup -q -n %{name}-%{version}.src -a1 %{?with_rt:-a2} %{?with_lldb:-a3} %{?with_polly:-a4} -a5 -a6 %{?with_flang:-a7 -a8}
581 %{__mv} clang-%{version}.src tools/clang
582 %{?with_rt:%{__mv} compiler-rt-%{version}.src projects/compiler-rt}
583 %{?with_lldb:%{__mv} lldb-%{version}.src tools/lldb}
584 %{?with_polly:%{__mv} polly-%{version}.src tools/polly}
585 %{__mv} clang-tools-extra-%{version}.src tools/clang/tools/extra
586 %{__mv} lld-%{version}.src tools/lld
587 %if %{with flang}
588 %{__mv} flang-%{version}.src tools/flang
589 %{__mv} mlir tools/mlir
590 %endif
591
592 %patch1 -p1
593 %patch2 -p1
594 %patch3 -p1
595 %patch4 -p1
596 %patch5 -p1
597 %if %{with flang}
598 %patch6 -p1
599 %endif
600 %patch7 -p1
601 %patch8 -p1
602
603 grep -rl /usr/bin/env projects tools utils | xargs sed -i -e '1{
604         s,^#!.*bin/env python,#!%{__python3},
605         s,^#!.*bin/env perl,#!%{__perl},
606 }'
607
608 find -name '*.py' -print0 | xargs -0 sed -i -e '1{
609         s,^#!.*bin/python.*,#!%{__python3},
610 }'
611
612 %build
613 install -d build
614
615 # Disabling assertions now, rec. by pure and needed for OpenGTL
616 # TESTFIX no PIC on ix86: http://llvm.org/bugs/show_bug.cgi?id=3801
617 cd build
618 CPPFLAGS="%{rpmcppflags} -D_FILE_OFFSET_BITS=64"
619
620 %if %{with lowmem}
621 export CFLAGS="%{rpmcflags} -g0"
622 export CXXFLAGS="%{rpmcxxflags} -g0"
623 export LDFLAGS="%{rpmldflags} -Wl,--reduce-memory-overheads"
624 %endif
625
626 %cmake .. \
627         -DBUILD_SHARED_LIBS:BOOL=OFF \
628         -DENABLE_LINKER_BUILD_ID:BOOL=ON \
629         -DLLVM_BINDINGS_LIST:LIST="%{?with_ocaml:ocaml}" \
630         -DLLVM_BINUTILS_INCDIR:STRING=%{_includedir} \
631         -DLLVM_BUILD_LLVM_DYLIB:BOOL=ON \
632         -DLLVM_ENABLE_ASSERTIONS:BOOL=OFF \
633 %if %{with apidocs}
634         -DLLVM_ENABLE_DOXYGEN:BOOL=ON \
635 %endif
636         %{?with_cxxmodules:-DLLVM_ENABLE_MODULES:BOOL=ON} \
637         -DLLVM_ENABLE_PIC:BOOL=ON \
638         -DLLVM_ENABLE_RTTI:BOOL=ON \
639 %if %{with doc}
640         -DLLVM_ENABLE_SPHINX:BOOL=ON \
641 %endif
642         %{?with_z3:-DLLVM_ENABLE_Z3_SOLVER:BOOL=ON} \
643 %if "%{_lib}" == "lib64"
644         -DLLVM_LIBDIR_SUFFIX:STRING=64 \
645 %endif
646 %if "%{_lib}" == "libx32"
647         -DLLVM_LIBDIR_SUFFIX:STRING=x32 \
648 %endif
649         -DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
650         -DLLVM_DEFAULT_TARGET_TRIPLE:STRING=%{_target_platform} \
651 %if %{with lowmem}
652         -DLLVM_PARALLEL_LINK_JOBS:STRING=1 \
653 %endif
654         -DLLVM_TARGETS_TO_BUILD="%{targets_to_build}" \
655 %if %{with polly}
656         %{cmake_on_off target_nvptx POLLY_ENABLE_GPGPU_CODEGEN} \
657 %endif
658         -DSPHINX_WARNINGS_AS_ERRORS=OFF
659
660 %{__make} \
661         VERBOSE=1 \
662         OPTIMIZE_OPTION="%{rpmcflags} %{rpmcppflags}"
663
664 %if %{with tests}
665 %{__make} check 2>&1 | tee llvm-testlog.txt
666 %{__make} -C tools/clang test 2>&1 | tee clang-testlog.txt
667 %endif
668
669 %if %{with doc}
670 %{__make} -C docs docs-llvm-html
671 %{__make} -C docs docs-llvm-man
672 %if %{with ocaml}
673 %{__make} -C docs ocaml_doc
674 %endif
675 %{__make} -C tools/clang/docs docs-clang-html
676 %{__make} -C tools/clang/docs docs-clang-man
677 %{__make} -C tools/lld/docs docs-lld-html
678 # workaround failed import of _lldb
679 cp -pnL %{_lib}/python%{py3_ver}/site-packages/lldb/_lldb.so tools/lldb/docs/lldb
680 %{__make} \
681         LD_LIBRARY_PATH=$(pwd)/%{_lib} \
682         -C tools/lldb/docs lldb-python-doc-package
683 %{__make} -C tools/lldb/docs lldb-cpp-doc
684 %endif
685
686 %install
687 rm -rf $RPM_BUILD_ROOT
688
689 %{__make} -j1 -C build install \
690         DESTDIR=$RPM_BUILD_ROOT
691
692 # only some .pyc files are created by make install
693 %py3_comp $RPM_BUILD_ROOT%{py3_sitedir}
694 %py3_ocomp $RPM_BUILD_ROOT%{py3_sitedir}
695
696 # Adjust static analyzer installation
697 # http://clang-analyzer.llvm.org/installation#OtherPlatforms
698 install -d $RPM_BUILD_ROOT%{_libdir}/scan-build
699 %{__mv} $RPM_BUILD_ROOT%{_prefix}/libexec/c??-analyzer $RPM_BUILD_ROOT%{_libdir}/scan-build
700 %{__sed} -i -e 's,/\.\./libexec/,/../%{_lib}/scan-build/,' $RPM_BUILD_ROOT%{_bindir}/scan-build
701 %py3_comp $RPM_BUILD_ROOT%{_datadir}/scan-view
702 %py3_ocomp $RPM_BUILD_ROOT%{_datadir}/scan-view
703
704 # not installed by cmake buildsystem
705 install build/bin/pp-trace $RPM_BUILD_ROOT%{_bindir}
706
707 %if %{with doc}
708 cp -p build/docs/man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
709 # these tools are not installed
710 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/FileCheck.1
711 # make links
712 echo '.so llvm-ar.1' > $RPM_BUILD_ROOT%{_mandir}/man1/llvm-ranlib.1
713 %endif
714
715 # Move documentation back to build directory
716 %if %{with ocaml}
717 rm -rf ocamldocs
718 %{__mv} $RPM_BUILD_ROOT%{_docdir}/llvm/ocaml-html ocamldocs
719 %endif
720
721 # and separate the apidoc
722 %if %{with apidocs}
723 rm -rf clang-apidoc
724 cp -a build/tools/clang/docs/html clang-apidoc
725 %endif
726
727 # And prepare Clang documentation
728 rm -rf clang-docs
729 install -d clang-docs
730 for f in LICENSE.TXT NOTES.txt README.txt; do
731         ln tools/clang/$f clang-docs
732 done
733
734 %{__rm} $RPM_BUILD_ROOT%{_bindir}/{c-index-test,llvm-c-test}
735 # not this OS
736 %{__rm} $RPM_BUILD_ROOT%{_datadir}/clang/clang-format-bbedit.applescript
737 # use system six
738 %{?with_lldb:%{__rm} $RPM_BUILD_ROOT%{py3_sitedir}/{,__pycache__/}six*.py*}
739 # it seems it is used internally by an extra clang tool
740 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libfindAllSymbols.a
741
742 # disable completeness check incompatible with split packaging
743 %{__sed} -i -e '/^foreach(target .*IMPORT_CHECK_TARGETS/,/^endforeach/d; /^unset(_IMPORT_CHECK_TARGETS)/d' $RPM_BUILD_ROOT%{_libdir}/cmake/llvm/LLVMExports.cmake
744
745 %clean
746 rm -rf $RPM_BUILD_ROOT
747
748 %post   libs -p /sbin/ldconfig
749 %postun libs -p /sbin/ldconfig
750
751 %post   -n clang-libs -p /sbin/ldconfig
752 %postun -n clang-libs -p /sbin/ldconfig
753
754 %post   -n lldb -p /sbin/ldconfig
755 %postun -n lldb -p /sbin/ldconfig
756
757 %files
758 %defattr(644,root,root,755)
759 %doc CREDITS.TXT LICENSE.TXT README.txt %{?with_tests:llvm-testlog.txt}
760 %attr(755,root,root) %{_bindir}/bugpoint
761 %attr(755,root,root) %{_bindir}/dsymutil
762 %attr(755,root,root) %{_bindir}/llc
763 %attr(755,root,root) %{_bindir}/lli
764 %attr(755,root,root) %{_bindir}/llvm-addr2line
765 %attr(755,root,root) %{_bindir}/llvm-ar
766 %attr(755,root,root) %{_bindir}/llvm-as
767 %attr(755,root,root) %{_bindir}/llvm-bcanalyzer
768 %attr(755,root,root) %{_bindir}/llvm-bitcode-strip
769 %attr(755,root,root) %{_bindir}/llvm-cat
770 %attr(755,root,root) %{_bindir}/llvm-cfi-verify
771 %attr(755,root,root) %{_bindir}/llvm-cov
772 %attr(755,root,root) %{_bindir}/llvm-cvtres
773 %attr(755,root,root) %{_bindir}/llvm-cxxdump
774 %attr(755,root,root) %{_bindir}/llvm-cxxfilt
775 %attr(755,root,root) %{_bindir}/llvm-cxxmap
776 %attr(755,root,root) %{_bindir}/llvm-diff
777 %attr(755,root,root) %{_bindir}/llvm-dis
778 %attr(755,root,root) %{_bindir}/llvm-dlltool
779 %attr(755,root,root) %{_bindir}/llvm-dwarfdump
780 %attr(755,root,root) %{_bindir}/llvm-dwp
781 %attr(755,root,root) %{_bindir}/llvm-exegesis
782 %attr(755,root,root) %{_bindir}/llvm-extract
783 %attr(755,root,root) %{_bindir}/llvm-gsymutil
784 %attr(755,root,root) %{_bindir}/llvm-ifs
785 %attr(755,root,root) %{_bindir}/llvm-install-name-tool
786 %attr(755,root,root) %{_bindir}/llvm-jitlink
787 %attr(755,root,root) %{_bindir}/llvm-lib
788 %attr(755,root,root) %{_bindir}/llvm-libtool-darwin
789 %attr(755,root,root) %{_bindir}/llvm-link
790 %attr(755,root,root) %{_bindir}/llvm-lipo
791 %attr(755,root,root) %{_bindir}/llvm-lto
792 %attr(755,root,root) %{_bindir}/llvm-lto2
793 %attr(755,root,root) %{_bindir}/llvm-mc
794 %attr(755,root,root) %{_bindir}/llvm-mca
795 %attr(755,root,root) %{_bindir}/llvm-ml
796 %attr(755,root,root) %{_bindir}/llvm-modextract
797 %attr(755,root,root) %{_bindir}/llvm-mt
798 %attr(755,root,root) %{_bindir}/llvm-nm
799 %attr(755,root,root) %{_bindir}/llvm-objcopy
800 %attr(755,root,root) %{_bindir}/llvm-objdump
801 %attr(755,root,root) %{_bindir}/llvm-opt-report
802 %attr(755,root,root) %{_bindir}/llvm-otool
803 %attr(755,root,root) %{_bindir}/llvm-pdbutil
804 %attr(755,root,root) %{_bindir}/llvm-profdata
805 %attr(755,root,root) %{_bindir}/llvm-profgen
806 %attr(755,root,root) %{_bindir}/llvm-ranlib
807 %attr(755,root,root) %{_bindir}/llvm-rc
808 %attr(755,root,root) %{_bindir}/llvm-readelf
809 %attr(755,root,root) %{_bindir}/llvm-readobj
810 %attr(755,root,root) %{_bindir}/llvm-reduce
811 %attr(755,root,root) %{_bindir}/llvm-rtdyld
812 %attr(755,root,root) %{_bindir}/llvm-sim
813 %attr(755,root,root) %{_bindir}/llvm-size
814 %attr(755,root,root) %{_bindir}/llvm-split
815 %attr(755,root,root) %{_bindir}/llvm-strip
816 %attr(755,root,root) %{_bindir}/llvm-stress
817 %attr(755,root,root) %{_bindir}/llvm-strings
818 %attr(755,root,root) %{_bindir}/llvm-symbolizer
819 %attr(755,root,root) %{_bindir}/llvm-tapi-diff
820 %attr(755,root,root) %{_bindir}/llvm-tblgen
821 %attr(755,root,root) %{_bindir}/llvm-undname
822 %attr(755,root,root) %{_bindir}/llvm-windres
823 %attr(755,root,root) %{_bindir}/llvm-xray
824 %attr(755,root,root) %{_bindir}/opt
825 %attr(755,root,root) %{_bindir}/sancov
826 %attr(755,root,root) %{_bindir}/sanstats
827 %attr(755,root,root) %{_bindir}/split-file
828 %attr(755,root,root) %{_bindir}/verify-uselistorder
829 %if %{with doc}
830 %{_mandir}/man1/bugpoint.1*
831 %{_mandir}/man1/dsymutil.1*
832 %{_mandir}/man1/lit.1*
833 %{_mandir}/man1/llc.1*
834 %{_mandir}/man1/lli.1*
835 %{_mandir}/man1/llvm-addr2line.1*
836 %{_mandir}/man1/llvm-ar.1*
837 %{_mandir}/man1/llvm-as.1*
838 %{_mandir}/man1/llvm-bcanalyzer.1*
839 %{_mandir}/man1/llvm-cov.1*
840 %{_mandir}/man1/llvm-cxxfilt.1*
841 %{_mandir}/man1/llvm-cxxmap.1*
842 %{_mandir}/man1/llvm-diff.1*
843 %{_mandir}/man1/llvm-dis.1*
844 %{_mandir}/man1/llvm-dwarfdump.1*
845 %{_mandir}/man1/llvm-exegesis.1*
846 %{_mandir}/man1/llvm-extract.1*
847 %{_mandir}/man1/llvm-install-name-tool.1*
848 %{_mandir}/man1/llvm-lib.1*
849 %{_mandir}/man1/llvm-libtool-darwin.1*
850 %{_mandir}/man1/llvm-link.1*
851 %{_mandir}/man1/llvm-lipo.1*
852 %{_mandir}/man1/llvm-locstats.1*
853 %{_mandir}/man1/llvm-mca.1*
854 %{_mandir}/man1/llvm-nm.1*
855 %{_mandir}/man1/llvm-objcopy.1*
856 %{_mandir}/man1/llvm-objdump.1*
857 %{_mandir}/man1/llvm-otool.1*
858 %{_mandir}/man1/llvm-pdbutil.1*
859 %{_mandir}/man1/llvm-profdata.1*
860 %{_mandir}/man1/llvm-profgen.1*
861 %{_mandir}/man1/llvm-ranlib.1*
862 %{_mandir}/man1/llvm-readelf.1*
863 %{_mandir}/man1/llvm-readobj.1*
864 %{_mandir}/man1/llvm-size.1*
865 %{_mandir}/man1/llvm-stress.1*
866 %{_mandir}/man1/llvm-strings.1*
867 %{_mandir}/man1/llvm-strip.1*
868 %{_mandir}/man1/llvm-symbolizer.1*
869 %{_mandir}/man1/llvm-tblgen.1*
870 %{_mandir}/man1/opt.1*
871 %endif
872
873 %files libs
874 %defattr(644,root,root,755)
875 %attr(755,root,root) %{_libdir}/LLVMgold.so
876 %attr(755,root,root) %{_libdir}/libLLVM-%{abi}.so
877 # non-soname symlink
878 %attr(755,root,root) %{_libdir}/libLLVM-%{version}.so
879 %attr(755,root,root) %{_libdir}/libLTO.so.13
880 %attr(755,root,root) %{_libdir}/libRemarks.so.13
881 %attr(755,root,root) %{_libdir}/libclang-cpp.so.13
882
883 %files devel
884 %defattr(644,root,root,755)
885 %attr(755,root,root) %{_bindir}/llvm-config
886 %attr(755,root,root) %{_libdir}/libLLVM.so
887 %attr(755,root,root) %{_libdir}/libLTO.so
888 %attr(755,root,root) %{_libdir}/libRemarks.so
889 %attr(755,root,root) %{_libdir}/libclang-cpp.so
890 %{_libdir}/libLLVM*.a
891 %{_includedir}/llvm
892 %{_includedir}/llvm-c
893 %{_libdir}/cmake/llvm
894 %if %{with doc}
895 %{_mandir}/man1/llvm-config.1*
896 %endif
897
898 #%files doc
899 #%defattr(644,root,root,755)
900
901 %if %{with apidocs}
902 %files apidocs
903 %defattr(644,root,root,755)
904 %doc apidoc/*
905 %endif
906
907 %if %{with polly}
908 %files polly
909 %defattr(644,root,root,755)
910 %doc tools/polly/{CREDITS.txt,LICENSE.TXT,README} tools/polly/www/{bugs,changelog,contributors}.html
911 %attr(755,root,root) %{_libdir}/LLVMPolly.so
912 %{?with_target_nvptx:%attr(755,root,root) %{_libdir}/libGPURuntime.so}
913
914 %files polly-devel
915 %defattr(644,root,root,755)
916 %{_libdir}/libPolly.a
917 %{_libdir}/libPollyISL.a
918 %{?with_target_nvptx:%{_libdir}/libPollyPPCG.a}
919 %{_includedir}/polly
920 %{_libdir}/cmake/polly
921 %endif
922
923 %files -n clang
924 %defattr(644,root,root,755)
925 %doc clang-docs/{LICENSE.TXT,NOTES.txt,README.txt} %{?with_tests:clang-testlog.txt}
926 %attr(755,root,root) %{_bindir}/clang
927 %attr(755,root,root) %{_bindir}/clang++
928 %attr(755,root,root) %{_bindir}/clang-%{abi}
929 %attr(755,root,root) %{_bindir}/clang-check
930 %attr(755,root,root) %{_bindir}/clang-cl
931 %attr(755,root,root) %{_bindir}/clang-cpp
932 %attr(755,root,root) %{_bindir}/clang-doc
933 %attr(755,root,root) %{_bindir}/clang-format
934 %attr(755,root,root) %{_bindir}/clang-offload-bundler
935 %attr(755,root,root) %{_bindir}/clang-offload-wrapper
936 %attr(755,root,root) %{_bindir}/clang-repl
937 %attr(755,root,root) %{_bindir}/git-clang-format
938 %dir %{_libdir}/clang
939 %dir %{_libdir}/clang/%{version}
940 %{_libdir}/clang/%{version}/include
941 %if %{with rt}
942 %ifarch %{x8664} aarch64
943 %dir %{_libdir}/clang/%{version}/bin
944 %attr(755,root,root) %{_libdir}/clang/%{version}/bin/hwasan_symbolize
945 %endif
946 %ifarch %{ix86} %{x8664} aarch64 armv7hl armv7hnl
947 %dir %{_libdir}/clang/%{version}/lib
948 %dir %{_libdir}/clang/%{version}/lib/linux
949 %dir %{_libdir}/clang/%{version}/share
950 %endif
951 %ifarch x32
952 %if %{with multilib}
953 %dir %{_libdir}/clang/%{version}/lib
954 %dir %{_libdir}/clang/%{version}/lib/linux
955 %dir %{_libdir}/clang/%{version}/share
956 %endif
957 %endif
958 %ifarch %{ix86}
959 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-i*86.o
960 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-i*86.a
961 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-i*86.so
962 %endif
963 %ifarch %{x8664}
964 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-x86_64.o
965 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.a
966 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.so
967 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.a.syms
968 %endif
969 %ifarch aarch64
970 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-aarch64.o
971 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-aarch64.a
972 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-aarch64.so
973 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-aarch64.a.syms
974 %endif
975 %ifarch armv7hl armv7hnl
976 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-armhf.o
977 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-armhf.a
978 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-armhf.so
979 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-armhf.a.syms
980 %endif
981 %ifarch %{ix86} %{x8664} %{arm} aarch64 mips mips64 ppc64
982 %{_libdir}/clang/%{version}/share/asan_ignorelist.txt
983 %endif
984 %ifarch %{ix86} %{x8664} mips64 aarch64 armv7hl armv7hnl
985 %{_libdir}/clang/%{version}/share/cfi_ignorelist.txt
986 %endif
987 %ifarch %{x8664} aarch64 mips64
988 %{_libdir}/clang/%{version}/share/dfsan_abilist.txt
989 %{_libdir}/clang/%{version}/share/msan_ignorelist.txt
990 %endif
991 %ifarch %{x8664} aarch64
992 %{_libdir}/clang/%{version}/share/hwasan_ignorelist.txt
993 %endif
994 %ifarch x32
995 %if %{with multilib}
996 %{_libdir}/clang/%{version}/share/asan_ignorelist.txt
997 %{_libdir}/clang/%{version}/share/cfi_ignorelist.txt
998 %{_libdir}/clang/%{version}/share/dfsan_abilist.txt
999 %{_libdir}/clang/%{version}/share/msan_ignorelist.txt
1000 %{_libdir}/clang/%{version}/share/hwasan_ignorelist.txt
1001 %endif
1002 %endif
1003 %endif
1004 %dir %{_datadir}/clang
1005 %{_datadir}/clang/clang-format-diff.py
1006
1007 %files -n clang-libs
1008 %defattr(644,root,root,755)
1009 %attr(755,root,root) %{_libdir}/libclang.so.%{abi}
1010 %attr(755,root,root) %{_libdir}/libclang.so.*.*.*
1011
1012 %if %{with rt} && %{with multilib}
1013 %ifarch %{x8664} x32
1014 %files -n clang-multilib
1015 %defattr(644,root,root,755)
1016 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-i386.o
1017 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-i386.a
1018 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-i386.so
1019 %endif
1020 %ifarch x32
1021 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-x86_64.o
1022 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.a
1023 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.so
1024 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.a.syms
1025 %endif
1026 %endif
1027
1028 %files -n clang-analyzer
1029 %defattr(644,root,root,755)
1030 %attr(755,root,root) %{_bindir}/analyze-build
1031 %attr(755,root,root) %{_bindir}/intercept-build
1032 %attr(755,root,root) %{_bindir}/scan-build
1033 %attr(755,root,root) %{_bindir}/scan-build-py
1034 %attr(755,root,root) %{_bindir}/scan-view
1035 %attr(755,root,root) %{_libexecdir}/analyze-c++
1036 %attr(755,root,root) %{_libexecdir}/analyze-cc
1037 %attr(755,root,root) %{_libexecdir}/intercept-c++
1038 %attr(755,root,root) %{_libexecdir}/intercept-cc
1039 %{_prefix}/lib/libear
1040 %{_prefix}/lib/libscanbuild
1041 %{_datadir}/scan-build
1042 %{_datadir}/scan-view
1043 %{_mandir}/man1/scan-build.1*
1044 %dir %{_libdir}/scan-build
1045 %attr(755,root,root) %{_libdir}/scan-build/c++-analyzer
1046 %attr(755,root,root) %{_libdir}/scan-build/ccc-analyzer
1047
1048 %files -n clang-devel
1049 %defattr(644,root,root,755)
1050 %attr(755,root,root) %{_libdir}/libclang.so
1051 %{_libdir}/libclang*.a
1052 %{_includedir}/clang
1053 %{_includedir}/clang-c
1054 %{_includedir}/clang-tidy
1055 %{_libdir}/cmake/clang
1056
1057 %files -n clang-doc
1058 %defattr(644,root,root,755)
1059 %doc tools/clang/docs/*.{html,png,txt}
1060
1061 %if %{with apidocs}
1062 %files -n clang-apidocs
1063 %defattr(644,root,root,755)
1064 %doc clang-apidoc/*
1065 %endif
1066
1067 %files -n clang-tools-extra
1068 %defattr(644,root,root,755)
1069 %doc tools/clang/tools/extra/{CODE_OWNERS.TXT,README.txt}
1070 %attr(755,root,root) %{_bindir}/clang-apply-replacements
1071 %attr(755,root,root) %{_bindir}/clang-change-namespace
1072 %attr(755,root,root) %{_bindir}/clang-extdef-mapping
1073 %attr(755,root,root) %{_bindir}/clang-include-fixer
1074 %attr(755,root,root) %{_bindir}/clang-move
1075 %attr(755,root,root) %{_bindir}/clang-query
1076 %attr(755,root,root) %{_bindir}/clang-refactor
1077 %attr(755,root,root) %{_bindir}/clang-rename
1078 %attr(755,root,root) %{_bindir}/clang-reorder-fields
1079 %attr(755,root,root) %{_bindir}/clang-scan-deps
1080 %attr(755,root,root) %{_bindir}/clang-tidy
1081 %attr(755,root,root) %{_bindir}/clangd
1082 %attr(755,root,root) %{_bindir}/diagtool
1083 %attr(755,root,root) %{_bindir}/find-all-symbols
1084 %attr(755,root,root) %{_bindir}/hmaptool
1085 %attr(755,root,root) %{_bindir}/modularize
1086 %attr(755,root,root) %{_bindir}/pp-trace
1087 %attr(755,root,root) %{_bindir}/run-clang-tidy
1088 %{_datadir}/clang/clang-include-fixer.py
1089 %{_datadir}/clang/clang-tidy-diff.py
1090 %{_datadir}/clang/run-find-all-symbols.py
1091
1092 %files -n lld
1093 %defattr(644,root,root,755)
1094 %doc tools/lld/{LICENSE.TXT,README.md}
1095 %attr(755,root,root) %{_bindir}/ld.lld
1096 %attr(755,root,root) %{_bindir}/ld64.lld
1097 %attr(755,root,root) %{_bindir}/ld64.lld.darwinnew
1098 %attr(755,root,root) %{_bindir}/lld
1099 %attr(755,root,root) %{_bindir}/lld-link
1100 %attr(755,root,root) %{_bindir}/wasm-ld
1101
1102 %files -n lld-devel
1103 %defattr(644,root,root,755)
1104 %{_libdir}/liblld[ACDEHMRWXY]*.a
1105 %{_includedir}/lld
1106 %{_libdir}/cmake/lld
1107
1108 %if %{with lldb}
1109 %files -n lldb
1110 %defattr(644,root,root,755)
1111 %attr(755,root,root) %{_bindir}/lldb
1112 %attr(755,root,root) %{_bindir}/lldb-argdumper
1113 %attr(755,root,root) %{_bindir}/lldb-instr
1114 %attr(755,root,root) %{_bindir}/lldb-server
1115 %attr(755,root,root) %{_bindir}/lldb-vscode
1116 %attr(755,root,root) %{_libdir}/liblldb.so.%{version}
1117 %attr(755,root,root) %ghost %{_libdir}/liblldb.so.13
1118 %attr(755,root,root) %ghost %{_libdir}/liblldbIntelFeatures.so.13
1119 %dir %{py3_sitedir}/lldb
1120 %attr(755,root,root) %{py3_sitedir}/lldb/lldb-argdumper
1121 %{py3_sitedir}/lldb/formatters
1122 %{py3_sitedir}/lldb/utils
1123 %{py3_sitedir}/lldb/__init__.py
1124 %{py3_sitedir}/lldb/__pycache__
1125 %{py3_sitedir}/lldb/embedded_interpreter.py
1126 %dir %{py3_sitedir}/lldb/plugins
1127 %{py3_sitedir}/lldb/plugins/__pycache__
1128 %{py3_sitedir}/lldb/plugins/__init__.py
1129 %{py3_sitedir}/lldb/plugins/scripted_process.py
1130 %attr(755,root,root) %{py3_sitedir}/lldb/_lldb.so
1131
1132 %files -n lldb-devel
1133 %defattr(644,root,root,755)
1134 %attr(755,root,root) %{_libdir}/liblldb.so
1135 %attr(755,root,root) %{_libdir}/liblldbIntelFeatures.so
1136 %{_includedir}/lldb
1137 %endif
1138
1139 %if %{with ocaml}
1140 %files ocaml
1141 %defattr(644,root,root,755)
1142 %attr(755,root,root) %{_libdir}/ocaml/stublibs/dllllvm*.so
1143 %dir %{_libdir}/ocaml/llvm
1144 %{_libdir}/ocaml/llvm/llvm*.cma
1145 %{_libdir}/ocaml/llvm/llvm*.cmi
1146 %{_libdir}/ocaml/META.llvm*
1147
1148 %files ocaml-devel
1149 %defattr(644,root,root,755)
1150 %{_libdir}/ocaml/llvm/libllvm*.a
1151 %{_libdir}/ocaml/llvm/llvm*.a
1152 %{_libdir}/ocaml/llvm/llvm*.cmx
1153 %{_libdir}/ocaml/llvm/llvm*.cmxa
1154 %{_libdir}/ocaml/llvm/llvm*.mli
1155
1156 %files ocaml-doc
1157 %defattr(644,root,root,755)
1158 %doc ocamldocs/*
1159 %endif
1160
1161 %files opt-viewer
1162 %defattr(644,root,root,755)
1163 %{_datadir}/opt-viewer
1164
1165 %files -n vim-plugin-clang
1166 %defattr(644,root,root,755)
1167 %{_datadir}/clang/clang-format.py
1168 %{_datadir}/clang/clang-rename.py
This page took 0.229848 seconds and 3 git commands to generate.