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