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