]> git.pld-linux.org Git - packages/llvm.git/blob - llvm.spec
relax BC: to llvm-devel instead of llvm-libs
[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:        2
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 BuildRequires:  ocl-icd-libOpenCL-devel
169 %endif
170 %if %{with ocaml}
171 BuildConflicts: llvm-devel
172 BuildConflicts: llvm-ocaml
173 %endif
174 Requires:       %{name}-libs = %{version}-%{release}
175 # LLVM is not supported on PPC64
176 # http://llvm.org/bugs/show_bug.cgi?id=3729
177 ExcludeArch:    ppc64
178 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
179
180 %define         abi     13
181 %define         _sysconfdir     /etc/%{name}
182
183 %define         specflags_ppc   -fno-var-tracking-assignments
184
185 # objcopy: BFD (GNU Binutils) 2.32 assertion fail format.c:459
186 # objcopy: error: .../libLLVM-8.so(.debug_gnu_pubtypes) is too large (0x1ceee347 bytes)
187 # objcopy: .../libLLVM-8.so[.debug_gnu_pubtypes]: memory exhausted
188 %ifarch x32
189 %define         _enable_debug_packages  0
190 %endif
191 # ix86 and x32 - the same issue as https://llvm.org/bugs/show_bug.cgi?id=27237
192 # use -gsplit-dwarf only when building packages with debuginfo
193 # to avoid excessive disk space usage
194 %if 0%{?_enable_debug_packages}
195 %define         specflags       -gsplit-dwarf
196 %endif
197
198 # strip corrupts: $RPM_BUILD_ROOT/usr/lib64/llvm-gcc/bin/llvm-c++ ...
199 %define         _noautostrip    .*/\\(libmud.*\\.a\\|bin/llvm-.*\\|lib.*++\\.a\\)
200
201 # clang doesn't know -fvar-tracking-assignments, and leaving it here would pollute llvm-config
202 # -Werror=format-security is for swig
203 # TODO: add - -Werror=format-security to tools/lldb/scripts/LLDBWrapPython.cpp
204 %define         filterout_c     -fvar-tracking-assignments
205 %define         filterout_cxx   -fvar-tracking-assignments -Werror=format-security
206 %define         filterout_ccpp  -fvar-tracking-assignments
207
208 %description
209 LLVM is a compiler infrastructure designed for compile-time,
210 link-time, runtime, and idle-time optimization of programs from
211 arbitrary programming languages. LLVM is written in C++ and has been
212 developed since 2000 at the University of Illinois and Apple. It
213 currently supports compilation of C and C++ programs using clang
214 frontend.
215
216 %description -l pl.UTF-8
217 LLVM to infrastruktura kompilatora zaprojektowana do optymalizacji
218 czasu kompilowania, linkowania, działania i bezczynności programów w
219 dowolnych językach programowania. Jest napisana w C++, rozwijana od
220 roku 2000 przez Uniwersytet w Illinois i Apple. Aktualnie obsługuje
221 kompilację programów w C i C++ przy użyciu frontendu clang.
222
223 %package libs
224 Summary:        LLVM shared libraries
225 Summary(pl.UTF-8):      Biblioteki współdzielone LLVM-a
226 Group:          Libraries
227 Conflicts:      llvm < 3.2
228
229 %description libs
230 LLVM shared libraries.
231
232 %description libs -l pl.UTF-8
233 Biblioteki współdzielone LLVM-a.
234
235 %package devel
236 Summary:        Static libraries and header files for LLVM
237 Summary(pl.UTF-8):      Biblioteki statyczne i pliki nagłówkowe dla LLVM-a
238 Group:          Development/Languages
239 Requires:       %{name}-libs = %{version}-%{release}
240 Requires:       libstdc++-devel >= 6:3.4
241
242 %description devel
243 This package contains static libraries and header files needed to
244 develop new native programs that use the LLVM infrastructure.
245
246 %description devel -l pl.UTF-8
247 Ten pakiet zawiera biblioteki statyczne oraz pliki nagłówkowe
248 potrzebne do tworzenia nowych programów natywnych wykorzystujących
249 infrastrukturę LLVM.
250
251 %package doc
252 Summary:        Documentation for LLVM
253 Summary(pl.UTF-8):      Dokumentacja do LLVM-a
254 Group:          Documentation
255 # does not require base
256
257 %description doc
258 Documentation for the LLVM compiler infrastructure.
259
260 %description doc -l pl.UTF-8
261 Dokumentacja do infrastruktury kompilatorów LLVM.
262
263 %package apidocs
264 Summary:        API documentation for LLVM
265 Summary(pl.UTF-8):      Dokumentacja API LLVM-a
266 Group:          Development/Languages
267 Requires:       %{name}-doc = %{version}-%{release}
268
269 %description apidocs
270 API documentation for the LLVM compiler infrastructure.
271
272 %description apidocs -l pl.UTF-8
273 Dokumentacja API infrastruktury kompilatorów LLVM.
274
275 %package polly
276 Summary:        Polyhedral optimizations for LLVM
277 Summary(pl.UTF-8):      Optymalizacje wielościanowe dla LLVM-a
278 Group:          Development/Tools
279 URL:            http://polly.llvm.org/
280 Requires:       %{name} = %{version}-%{release}
281
282 %description polly
283 Polly is a high-level loop and data-locality optimizer and
284 optimization infrastructure for LLVM. It uses an abstract mathematical
285 representation based on integer polyhedra to analyze and optimize the
286 memory access pattern of a program.
287
288 %description polly -l pl.UTF-8
289 Polly to wysokopoziomowy optymalizator i infrastruktura LLVM-a do
290 optymalizacji pętli i położenia danych. Wykorzystuje abstrakcyjną
291 reprezentację matematyczną opartą na wielościanach całkowitoliczbowych
292 do analizy i optymalizacji wzorców dostępu do pamięci przez program.
293
294 %package polly-devel
295 Summary:        Header files for LLVM Polly optimization infrastructure
296 Summary(pl.UTF-8):      Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly
297 Group:          Development/Libraries
298 URL:            http://polly.llvm.org/
299 Requires:       %{name}-devel = %{version}-%{release}
300 Requires:       %{name}-polly = %{version}-%{release}
301
302 %description polly-devel
303 Header files for LLVM Polly optimization infrastructure.
304
305 %description polly-devel -l pl.UTF-8
306 Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly.
307
308 %package -n clang
309 Summary:        A C language family frontend for LLVM
310 Summary(pl.UTF-8):      Frontend LLVM-a do języków z rodziny C
311 License:        NCSA
312 Group:          Development/Languages
313 Requires:       %{name} = %{version}-%{release}
314 Requires:       clang-libs = %{version}-%{release}
315
316 %description -n clang
317 clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
318 of a crane or goose. 3. C-language family front-end toolkit.
319
320 The goal of the Clang project is to create a new C, C++, Objective C
321 and Objective C++ front-end for the LLVM compiler. Its tools are built
322 as libraries and designed to be loosely-coupled and extendable.
323
324 %description -n clang -l pl.UTF-8
325 clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
326 piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
327 z rodziny C.
328
329 Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
330 LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
331 budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
332 i rozszerzaniu.
333
334 %package -n clang-libs
335 Summary:        Clang shared libraries
336 Summary(pl.UTF-8):      Biblioteki współdzielone Clanga
337 Group:          Libraries
338
339 %description -n clang-libs
340 Clang shared libraries.
341
342 %description -n clang-libs -l pl.UTF-8
343 Biblioteki współdzielone Clanga.
344
345 %package -n clang-multilib
346 Summary:        A C language family frontend for LLVM - 32-bit support
347 Summary(pl.UTF-8):      Frontend LLVM-a do języków z rodziny C - obsługa binariów 32-bitowych
348 License:        NCSA
349 Group:          Development/Languages
350 Requires:       clang = %{version}-%{release}
351
352 %description -n clang-multilib
353 clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
354 of a crane or goose. 3. C-language family front-end toolkit.
355
356 The goal of the Clang project is to create a new C, C++, Objective C
357 and Objective C++ front-end for the LLVM compiler. Its tools are built
358 as libraries and designed to be loosely-coupled and extendable.
359
360 This package contains the C compiler support for producing 32-bit
361 programs on 64-bit host.
362
363 %description -n clang-multilib -l pl.UTF-8
364 clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
365 piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
366 z rodziny C.
367
368 Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
369 LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
370 budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
371 i rozszerzaniu.
372
373 Ten pakiet zawiera rozszerzenie kompilatora C o obsługę tworzenia
374 programów 32-bitowych na maszynie 64-bitowej.
375
376 %package -n clang-analyzer
377 Summary:        A source code analysis framework
378 Summary(pl.UTF-8):      Szkielet do analizy kodu źródłowego
379 License:        NCSA
380 Group:          Development/Languages
381 Requires:       clang = %{version}-%{release}
382 # not picked up automatically since files are currently not instaled
383 # in standard Python hierarchies yet
384 Requires:       python3
385
386 %description -n clang-analyzer
387 The Clang Static Analyzer consists of both a source code analysis
388 framework and a standalone tool that finds bugs in C and Objective-C
389 programs. The standalone tool is invoked from the command-line, and is
390 intended to run in tandem with a build of a project or code base.
391
392 %description -n clang-analyzer -l pl.UTF-8
393 Clang Static Analyzer składa się ze szkieletu do analizy kodu
394 źródłowego oraz samodzielnego narzędzia znajdującego błędy w
395 programach w C i C++. Narzędzie jest wywoływane z linii poleceń, z
396 myślą o uruchamianiu wraz z kompilacją projektu lub kodu.
397
398 %package -n clang-devel
399 Summary:        Header files for Clang
400 Summary(pl.UTF-8):      Pliki nagłówkowe Clanga
401 Group:          Development/Languages
402 Requires:       %{name}-devel = %{version}-%{release}
403 Requires:       clang = %{version}-%{release}
404 %{?with_polly:Requires: llvm-polly-devel = %{version}-%{release}}
405
406 %description -n clang-devel
407 This package contains header files for the Clang compiler.
408
409 %description -n clang-devel -l pl.UTF-8
410 Ten pakiet zawiera pliki nagłówkowe kompilatora Clang.
411
412 %package -n clang-doc
413 Summary:        Documentation for Clang
414 Summary(pl.UTF-8):      Dokumentacja do Clanga
415 Group:          Documentation
416 Requires:       %{name} = %{version}-%{release}
417
418 %description -n clang-doc
419 Documentation for the Clang compiler front-end.
420
421 %description -n clang-doc -l pl.UTF-8
422 Dokumentacja do frontendu kompilatora Clang.
423
424 %package -n clang-apidocs
425 Summary:        API documentation for Clang
426 Summary(pl.UTF-8):      Dokumentacja API Clanga
427 Group:          Development/Languages
428 Requires:       clang-doc = %{version}-%{release}
429
430 %description -n clang-apidocs
431 API documentation for the Clang compiler.
432
433 %description -n clang-apidocs -l pl.UTF-8
434 Dokumentacja API kompilatora Clang.
435
436 %package -n clang-tools-extra
437 Summary:        Extra tools for Clang
438 Summary(pl.UTF-8):      Dodatkowe narzędzia do kompilatora Clang
439 Group:          Development/Tools
440 URL:            http://clang.llvm.org/docs/ClangTools.html
441 Requires:       clang = %{version}-%{release}
442
443 %description -n clang-tools-extra
444 Extra tools for Clang.
445
446 %description -n clang-tools-extra -l pl.UTF-8
447 Dodatkowe narzędzia do kompilatora Clang.
448
449 %package -n lld
450 Summary:        The LLVM linker
451 Summary(pl.UTF-8):      Konsolidator z projektu LLVM
452 Group:          Development/Libraries
453 URL:            http://lld.llvm.org/
454 Requires:       %{name} = %{version}-%{release}
455
456 %description -n lld
457 lld is a new set of modular code for creating linker tools.
458
459 %description -n lld -l pl.UTF-8
460 lld to nowy zbiór modularnego kodu do tworzenia narzędzi
461 konsolidujących.
462
463 %package -n lld-devel
464 Summary:        Development files for LLD linker tools
465 Summary(pl.UTF-8):      Pliki programistyczne narzędzi konsolidujących LLD
466 Group:          Development/Tools
467 URL:            http://lld.llvm.org/
468 Requires:       %{name}-devel = %{version}-%{release}
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
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 %{ix86} %{x8664} %{arm} aarch64 mips mips64 ppc64
976 %{_libdir}/clang/%{version}/share/asan_ignorelist.txt
977 %endif
978 %ifarch %{ix86} %{x8664} mips64 aarch64
979 %{_libdir}/clang/%{version}/share/cfi_ignorelist.txt
980 %endif
981 %ifarch %{x8664} aarch64 mips64
982 %{_libdir}/clang/%{version}/share/dfsan_abilist.txt
983 %{_libdir}/clang/%{version}/share/msan_ignorelist.txt
984 %endif
985 %ifarch %{x8664} aarch64
986 %{_libdir}/clang/%{version}/share/hwasan_ignorelist.txt
987 %endif
988 %ifarch x32
989 %if %{with multilib}
990 %{_libdir}/clang/%{version}/share/asan_ignorelist.txt
991 %{_libdir}/clang/%{version}/share/cfi_ignorelist.txt
992 %{_libdir}/clang/%{version}/share/dfsan_abilist.txt
993 %{_libdir}/clang/%{version}/share/msan_ignorelist.txt
994 %{_libdir}/clang/%{version}/share/hwasan_ignorelist.txt
995 %endif
996 %endif
997 %endif
998 %dir %{_datadir}/clang
999 %{_datadir}/clang/clang-format-diff.py
1000
1001 %files -n clang-libs
1002 %defattr(644,root,root,755)
1003 %attr(755,root,root) %{_libdir}/libclang.so.%{abi}
1004 %attr(755,root,root) %{_libdir}/libclang.so.*.*.*
1005
1006 %if %{with rt} && %{with multilib}
1007 %ifarch %{x8664} x32
1008 %files -n clang-multilib
1009 %defattr(644,root,root,755)
1010 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-i386.o
1011 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-i386.a
1012 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-i386.so
1013 %endif
1014 %ifarch x32
1015 %{_libdir}/clang/%{version}/lib/linux/clang_rt.*-x86_64.o
1016 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.a
1017 %attr(755,root,root) %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.so
1018 %{_libdir}/clang/%{version}/lib/linux/libclang_rt.*-x86_64.a.syms
1019 %endif
1020 %endif
1021
1022 %files -n clang-analyzer
1023 %defattr(644,root,root,755)
1024 %attr(755,root,root) %{_bindir}/analyze-build
1025 %attr(755,root,root) %{_bindir}/intercept-build
1026 %attr(755,root,root) %{_bindir}/scan-build
1027 %attr(755,root,root) %{_bindir}/scan-build-py
1028 %attr(755,root,root) %{_bindir}/scan-view
1029 %attr(755,root,root) %{_libexecdir}/analyze-c++
1030 %attr(755,root,root) %{_libexecdir}/analyze-cc
1031 %attr(755,root,root) %{_libexecdir}/intercept-c++
1032 %attr(755,root,root) %{_libexecdir}/intercept-cc
1033 %{_prefix}/lib/libear
1034 %{_prefix}/lib/libscanbuild
1035 %{_datadir}/scan-build
1036 %{_datadir}/scan-view
1037 %{_mandir}/man1/scan-build.1*
1038 %dir %{_libdir}/scan-build
1039 %attr(755,root,root) %{_libdir}/scan-build/c++-analyzer
1040 %attr(755,root,root) %{_libdir}/scan-build/ccc-analyzer
1041
1042 %files -n clang-devel
1043 %defattr(644,root,root,755)
1044 %attr(755,root,root) %{_libdir}/libclang.so
1045 %{_libdir}/libclang*.a
1046 %{_includedir}/clang
1047 %{_includedir}/clang-c
1048 %{_includedir}/clang-tidy
1049 %{_libdir}/cmake/clang
1050
1051 %files -n clang-doc
1052 %defattr(644,root,root,755)
1053 %doc tools/clang/docs/*.{html,png,txt}
1054
1055 %if %{with apidocs}
1056 %files -n clang-apidocs
1057 %defattr(644,root,root,755)
1058 %doc clang-apidoc/*
1059 %endif
1060
1061 %files -n clang-tools-extra
1062 %defattr(644,root,root,755)
1063 %doc tools/clang/tools/extra/{CODE_OWNERS.TXT,README.txt}
1064 %attr(755,root,root) %{_bindir}/clang-apply-replacements
1065 %attr(755,root,root) %{_bindir}/clang-change-namespace
1066 %attr(755,root,root) %{_bindir}/clang-extdef-mapping
1067 %attr(755,root,root) %{_bindir}/clang-include-fixer
1068 %attr(755,root,root) %{_bindir}/clang-move
1069 %attr(755,root,root) %{_bindir}/clang-query
1070 %attr(755,root,root) %{_bindir}/clang-refactor
1071 %attr(755,root,root) %{_bindir}/clang-rename
1072 %attr(755,root,root) %{_bindir}/clang-reorder-fields
1073 %attr(755,root,root) %{_bindir}/clang-scan-deps
1074 %attr(755,root,root) %{_bindir}/clang-tidy
1075 %attr(755,root,root) %{_bindir}/clangd
1076 %attr(755,root,root) %{_bindir}/diagtool
1077 %attr(755,root,root) %{_bindir}/find-all-symbols
1078 %attr(755,root,root) %{_bindir}/hmaptool
1079 %attr(755,root,root) %{_bindir}/modularize
1080 %attr(755,root,root) %{_bindir}/pp-trace
1081 %attr(755,root,root) %{_bindir}/run-clang-tidy
1082 %{_datadir}/clang/clang-include-fixer.py
1083 %{_datadir}/clang/clang-tidy-diff.py
1084 %{_datadir}/clang/run-find-all-symbols.py
1085
1086 %files -n lld
1087 %defattr(644,root,root,755)
1088 %doc tools/lld/{LICENSE.TXT,README.md}
1089 %attr(755,root,root) %{_bindir}/ld.lld
1090 %attr(755,root,root) %{_bindir}/ld64.lld
1091 %attr(755,root,root) %{_bindir}/ld64.lld.darwinnew
1092 %attr(755,root,root) %{_bindir}/lld
1093 %attr(755,root,root) %{_bindir}/lld-link
1094 %attr(755,root,root) %{_bindir}/wasm-ld
1095
1096 %files -n lld-devel
1097 %defattr(644,root,root,755)
1098 %{_libdir}/liblld[ACDEHMRWXY]*.a
1099 %{_includedir}/lld
1100 %{_libdir}/cmake/lld
1101
1102 %if %{with lldb}
1103 %files -n lldb
1104 %defattr(644,root,root,755)
1105 %attr(755,root,root) %{_bindir}/lldb
1106 %attr(755,root,root) %{_bindir}/lldb-argdumper
1107 %attr(755,root,root) %{_bindir}/lldb-instr
1108 %attr(755,root,root) %{_bindir}/lldb-server
1109 %attr(755,root,root) %{_bindir}/lldb-vscode
1110 %attr(755,root,root) %{_libdir}/liblldb.so.%{version}
1111 %attr(755,root,root) %ghost %{_libdir}/liblldb.so.13
1112 %attr(755,root,root) %ghost %{_libdir}/liblldbIntelFeatures.so.13
1113 %dir %{py3_sitedir}/lldb
1114 %attr(755,root,root) %{py3_sitedir}/lldb/lldb-argdumper
1115 %{py3_sitedir}/lldb/formatters
1116 %{py3_sitedir}/lldb/utils
1117 %{py3_sitedir}/lldb/__init__.py
1118 %{py3_sitedir}/lldb/__pycache__
1119 %{py3_sitedir}/lldb/embedded_interpreter.py
1120 %dir %{py3_sitedir}/lldb/plugins
1121 %{py3_sitedir}/lldb/plugins/__pycache__
1122 %{py3_sitedir}/lldb/plugins/__init__.py
1123 %{py3_sitedir}/lldb/plugins/scripted_process.py
1124 %attr(755,root,root) %{py3_sitedir}/lldb/_lldb.so
1125
1126 %files -n lldb-devel
1127 %defattr(644,root,root,755)
1128 %attr(755,root,root) %{_libdir}/liblldb.so
1129 %attr(755,root,root) %{_libdir}/liblldbIntelFeatures.so
1130 %{_includedir}/lldb
1131 %endif
1132
1133 %if %{with ocaml}
1134 %files ocaml
1135 %defattr(644,root,root,755)
1136 %attr(755,root,root) %{_libdir}/ocaml/stublibs/dllllvm*.so
1137 %dir %{_libdir}/ocaml/llvm
1138 %{_libdir}/ocaml/llvm/llvm*.cma
1139 %{_libdir}/ocaml/llvm/llvm*.cmi
1140 %{_libdir}/ocaml/META.llvm*
1141
1142 %files ocaml-devel
1143 %defattr(644,root,root,755)
1144 %{_libdir}/ocaml/llvm/libllvm*.a
1145 %{_libdir}/ocaml/llvm/llvm*.a
1146 %{_libdir}/ocaml/llvm/llvm*.cmx
1147 %{_libdir}/ocaml/llvm/llvm*.cmxa
1148 %{_libdir}/ocaml/llvm/llvm*.mli
1149
1150 %files ocaml-doc
1151 %defattr(644,root,root,755)
1152 %doc ocamldocs/*
1153 %endif
1154
1155 %files opt-viewer
1156 %defattr(644,root,root,755)
1157 %{_datadir}/opt-viewer
1158
1159 %files -n vim-plugin-clang
1160 %defattr(644,root,root,755)
1161 %{_datadir}/clang/clang-format.py
1162 %{_datadir}/clang/clang-rename.py
This page took 0.358914 seconds and 3 git commands to generate.