]> git.pld-linux.org Git - packages/llvm.git/blame - llvm.spec
fix files when building with target_nvptx
[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:
7# %{_datadir}/clang/clang-format-sublime.py - sublime plugin
5013c7ea
JB
8# %{_datadir}/clang/clang-format.el - clang tools emacs integration
9# %{_datadir}/clang/clang-include-fixer.el
10# %{_datadir}/clang/clang-rename.el
6df3b432 11# - no content in doc package (it used to contain parts of clang apidocs and some examples)
6c2b1a44 12# - system isl in polly?
90b20139 13# - dependencies and files for lua module
970c3a73 14# %{_libdir}/lua/5.3/lldb.so
90b20139 15# - figure out whether we need obj.MLIRCAPIIR files
313f7f73
JP
16# - cmake dependencies mess (LLVMExports.cmake appears to require all -devels):
17# with llvm-devel and spirv-tools-devel installed but without llvm-mlir (or other packages):
18# $ cat CMakeLists.txt
19# find_package(LLVM)
20# find_package(SPIRV-Tools)
21# $ cmake -B build
22# ...
23# The imported target "mlir-tblgen" references the file
24#
25# "/usr/bin/mlir-tblgen"
26#
27# but this file does not exist. Possible reasons include:
28# ...
bc88141a 29#
9556f4c9 30# Conditional build:
a531db5e 31%bcond_without lldb # LLDB debugger
d27b2b77 32%bcond_without mlir # MLIR libraries and tools (required for Flang)
20451c6c 33%bcond_with flang # Flang (Fortran18) compiler (heavy memory requirements during build)
a531db5e
JP
34%bcond_without polly # Polly cache-locality optimization, auto-parallelism and vectorization
35%bcond_without rt # compiler-rt libraries
36%bcond_without multilib # compiler-rt multilib libraries
37%bcond_without ocaml # OCaml binding
38%bcond_without z3 # Z3 constraint solver support in Clang Static Analyzer
39%bcond_without doc # HTML docs and man pages
40%bcond_without target_aarch64 # AArch64 target support
41%bcond_without target_amdgpu # AMDGPU target support
42%bcond_without target_arm # ARM target support
43%bcond_without target_avr # AVR target support
44%bcond_without target_bpf # BPF target support
45%bcond_without target_hexagon # Hexagon target support
46%bcond_without target_lanai # Lanai target support
8c2b8be4 47%bcond_without target_loongarch # LoongArch target support
a531db5e
JP
48%bcond_without target_mips # Mips target support
49%bcond_without target_msp430 # MSP430 target support
50%bcond_without target_nvptx # NVPTX target support
51%bcond_without target_powerpc # PowerPC target support
52%bcond_without target_riscv # RISCV target support
53%bcond_without target_sparc # Sparc target support
54%bcond_without target_systemz # SystemZ target support
90b20139 55%bcond_without target_ve # VE target support
a531db5e
JP
56%bcond_without target_webassembly # WebAssembly target support
57%bcond_without target_x86 # X86 target support
58%bcond_without target_xcore # XCore target support
a531db5e
JP
59%bcond_with cxxmodules # C++20 modules (requires support in bootstrap compiler)
60%bcond_with apidocs # doxygen docs (HUGE, so they are not built by default)
61%bcond_with tests # run tests
62%bcond_with lowmem # lower memory requirements
9556f4c9 63
4ba3b2b3 64# No ocaml on other arches or no native ocaml (required for ocaml-ctypes)
5013c7ea 65%ifnarch %{ix86} %{x8664} %{arm} aarch64 ppc sparc sparcv9
9556f4c9
ER
66%undefine with_ocaml
67%endif
68
927fe779 69%ifarch armv3l %{armv4} %{armv5} %{armv6}
bdd7e0f7
JP
70%undefine with_rt
71%endif
72
927fe779 73%ifarch i386 i486 armv3l %{armv4} %{armv5} %{armv6}
58b1e490
JP
74%define with_libatomic 1
75%endif
76
8c2b8be4 77%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_loongarch:LoongArch;}%{?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_ve:VE;}%{?with_target_webassembly:WebAssembly;}%{?with_target_x86:X86;}%{?with_target_xcore:XCore;}
a531db5e 78
d27b2b77
JB
79%if %{without mlir}
80%undefine with_flang
81%endif
82
aa11c230 83Summary: The Low Level Virtual Machine (An Optimizing Compiler Infrastructure)
2326a99f 84Summary(pl.UTF-8): Niskopoziomowa maszyna wirtualna (infrastruktura kompilatora optymalizującego)
aa11c230 85Name: llvm
64ff6369 86Version: 17.0.2
c5d78472 87Release: 1
77d2fdeb 88License: Apache 2.0 with LLVM exceptions
aa11c230 89Group: Development/Languages
44d18de7
JB
90#Source0Download: https://github.com/llvm/llvm-project/releases/
91Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{name}-%{version}.src.tar.xz
64ff6369 92# Source0-md5: ad114e00a5350c96de9d7ca4866d8d01
44d18de7 93Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/clang-%{version}.src.tar.xz
64ff6369 94# Source1-md5: da00c6de5a1946fcc0b6419ee5600a65
44d18de7 95Source2: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/compiler-rt-%{version}.src.tar.xz
64ff6369 96# Source2-md5: b0ce0f1c7e687f96e9d775c4aa3978c1
44d18de7 97Source3: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/lldb-%{version}.src.tar.xz
64ff6369 98# Source3-md5: a51abb56e09a172fe9c5a795e0890cf3
44d18de7 99Source4: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/polly-%{version}.src.tar.xz
64ff6369 100# Source4-md5: 24843481f9e054de13f5335a07883eaf
44d18de7 101Source5: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/clang-tools-extra-%{version}.src.tar.xz
64ff6369 102# Source5-md5: 6862a7a0af802291c929d2f104ecf909
44d18de7 103Source6: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/lld-%{version}.src.tar.xz
64ff6369 104# Source6-md5: 7389729b6ea88a71bc69d20aec8a4ea8
1a356f89 105Source7: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/flang-%{version}.src.tar.xz
64ff6369 106# Source7-md5: 9eb16034e79717d54be3a69d9673f5d5
d4ee5c50 107Source8: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/mlir-%{version}.src.tar.xz
64ff6369 108# Source8-md5: bf6d5e89bc58b880b01b38878af7e20f
0fd19552 109Source9: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/cmake-%{version}.src.tar.xz
64ff6369 110# Source9-md5: fa05d0b40615544f0e421a28f173d634
9f7b77bd 111Patch1: %{name}-pld.patch
9f7b77bd 112Patch3: x32-gcc-toolchain.patch
d706a70d 113Patch5: %{name}-ocaml-shared.patch
1a356f89 114Patch6: %{name}-flang.patch
40bef2a3 115Patch7: llvm12-build_fixes.patch
4a967aa9 116Patch8: %{name}-selective_bindings.patch
e25801fb 117Patch9: %{name}-libexecdir.patch
90b20139 118Patch10: compiler-rt-paths.patch
0fd19552 119Patch11: cmake-utils-path-override.patch
91cd1ec7 120Patch12: x32-compiler-rt.patch
77d2fdeb 121URL: https://llvm.org/
bc88141a 122BuildRequires: bash
803f8d9b 123BuildRequires: binutils-devel
d997b14b 124BuildRequires: bison
64ff6369 125BuildRequires: cmake >= 3.20.0
d997b14b 126BuildRequires: flex
d997b14b 127BuildRequires: groff
58b1e490 128%{?with_libatomic:BuildRequires: libatomic-devel}
6c2b1a44 129BuildRequires: libedit-devel
bc88141a 130BuildRequires: libltdl-devel
44d18de7 131BuildRequires: libpfm-devel
ad697ab7 132BuildRequires: libstdc++-devel >= 6:5
44d18de7 133BuildRequires: libxml2-devel >= 2
6c2b1a44 134BuildRequires: ncurses-devel
2bbd0701 135%if %{with ocaml}
5013c7ea 136BuildRequires: ocaml >= 4.00.0
c6c890ee 137BuildRequires: ocaml-ctypes-devel >= 0.4
2bbd0701 138BuildRequires: ocaml-findlib
77c13dab 139BuildRequires: ocaml-ocamldoc
85ae1a18 140%{?with_tests:BuildRequires: ocaml-ounit >= 2}
2bbd0701 141%endif
8132e62b 142BuildRequires: perl-base >= 1:5.6
8c156e7d 143BuildRequires: perl-tools-pod
134d4fc5 144BuildRequires: python3 >= 1:3
40bef2a3 145BuildRequires: python3-PyYAML
b27e1e48 146BuildRequires: python3-modules
40bef2a3 147BuildRequires: python3-pygments >= 2.0
1aabdf46 148BuildRequires: rpm-build >= 4.6
8c156e7d 149BuildRequires: rpm-pythonprov
927fe779 150BuildRequires: rpmbuild(macros) >= 2.007
b0068ae4 151%{?with_doc:BuildRequires: sphinx-pdg}
b883cf1e 152BuildRequires: tar >= 1:1.22
78991aba 153BuildRequires: xar-devel >= 1.6
b883cf1e 154BuildRequires: xz
200602f4 155%{?with_z3:BuildRequires: z3-devel >= 4.7.1}
6c2b1a44 156BuildRequires: zlib-devel
42c822a1 157BuildRequires: zstd-devel
dd9350c7
JB
158%if %{with apidocs}
159BuildRequires: doxygen
160BuildRequires: graphviz
161%endif
162%if %{with tests}
163BuildRequires: dejagnu
dd9350c7 164BuildRequires: tcl-devel
356a0bbd 165%endif
589b92f5
JB
166%if %{with rt} && %{with multilib}
167%ifarch %{x8664}
168BuildRequires: gcc-c++-multilib-32
90b20139 169BuildRequires: glibc-devel(ix86)
589b92f5
JB
170BuildRequires: libstdc++-multilib-32-devel
171%endif
fe705967 172%ifarch x32
3b28b31d
JB
173BuildRequires: gcc-c++-multilib-32
174BuildRequires: gcc-c++-multilib-64
90b20139 175BuildRequires: glibc-devel(ix86)
07f61ae5 176BuildRequires: glibc-devel(x86_64)
3b28b31d
JB
177BuildRequires: libstdc++-multilib-32-devel
178BuildRequires: libstdc++-multilib-64-devel
fe705967 179%endif
589b92f5 180%endif
b883cf1e 181%if %{with lldb}
c6c890ee 182BuildRequires: epydoc
b883cf1e 183BuildRequires: libxml2-devel >= 2
ad697ab7 184BuildRequires: lua-devel
b883cf1e 185BuildRequires: ncurses-ext-devel
134d4fc5 186BuildRequires: python3-devel >= 1:3.2
c330693d 187%{?with_doc:BuildRequires: python3-recommonmark}
12aa4b7a 188BuildRequires: swig-python >= 3.0.11
ad697ab7 189BuildRequires: xz-devel
b883cf1e 190%endif
b0068ae4 191%if %{with polly}
6c2b1a44
JB
192#BuildRequires: gmp-devel or imath-devel (private copy in polly/lib/External/isl/imath)
193# private copy in polly/lib/External/isl
ad697ab7 194#BuildRequires: isl-devel >= 0.22.1
6c2b1a44 195#TODO (bcond): cuda-devel (with POLLY_ENABLE_GPGPU_CODEGEN=ON)
9b8c1bd2 196%{?with_target_nvptx:BuildRequires: ocl-icd-libOpenCL-devel}
b0068ae4 197%endif
634a3e5b
JB
198%if %{with ocaml}
199BuildConflicts: llvm-ocaml
200%endif
8c514f23 201Requires: %{name}-libs = %{version}-%{release}
9556f4c9
ER
202# LLVM is not supported on PPC64
203# http://llvm.org/bugs/show_bug.cgi?id=3729
204ExcludeArch: ppc64
aa11c230 205BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
206
64ff6369 207%define abi 17
356a0bbd 208%define _sysconfdir /etc/%{name}
021b3c3d 209
9556f4c9 210%define specflags_ppc -fno-var-tracking-assignments
7a1e73fa
JP
211
212# objcopy: BFD (GNU Binutils) 2.32 assertion fail format.c:459
213# objcopy: error: .../libLLVM-8.so(.debug_gnu_pubtypes) is too large (0x1ceee347 bytes)
214# objcopy: .../libLLVM-8.so[.debug_gnu_pubtypes]: memory exhausted
215%ifarch x32
216%define _enable_debug_packages 0
217%endif
af221038 218# ix86 and x32 - the same issue as https://llvm.org/bugs/show_bug.cgi?id=27237
5013c7ea
JB
219# use -gsplit-dwarf only when building packages with debuginfo
220# to avoid excessive disk space usage
50fe0adf
JB
221%if 0%{?_enable_debug_packages}
222%define specflags -gsplit-dwarf
223%endif
9556f4c9 224
6832a5c5
ER
225# strip corrupts: $RPM_BUILD_ROOT/usr/lib64/llvm-gcc/bin/llvm-c++ ...
226%define _noautostrip .*/\\(libmud.*\\.a\\|bin/llvm-.*\\|lib.*++\\.a\\)
227
782c6e1e
ER
228# clang doesn't know -fvar-tracking-assignments, and leaving it here would pollute llvm-config
229# -Werror=format-security is for swig
230# TODO: add - -Werror=format-security to tools/lldb/scripts/LLDBWrapPython.cpp
4a1d21cc 231%define filterout_c -fvar-tracking-assignments
782c6e1e 232%define filterout_cxx -fvar-tracking-assignments -Werror=format-security
4a1d21cc
JR
233%define filterout_ccpp -fvar-tracking-assignments
234
aa11c230 235%description
236LLVM is a compiler infrastructure designed for compile-time,
237link-time, runtime, and idle-time optimization of programs from
238arbitrary programming languages. LLVM is written in C++ and has been
239developed since 2000 at the University of Illinois and Apple. It
621ec11f
JB
240currently supports compilation of C and C++ programs using clang
241frontend.
aa11c230 242
2326a99f
JB
243%description -l pl.UTF-8
244LLVM to infrastruktura kompilatora zaprojektowana do optymalizacji
245czasu kompilowania, linkowania, działania i bezczynności programów w
246dowolnych językach programowania. Jest napisana w C++, rozwijana od
247roku 2000 przez Uniwersytet w Illinois i Apple. Aktualnie obsługuje
621ec11f 248kompilację programów w C i C++ przy użyciu frontendu clang.
2326a99f 249
8c514f23 250%package libs
87977e26
JR
251Summary: LLVM shared libraries
252Summary(pl.UTF-8): Biblioteki współdzielone LLVM-a
8c514f23
JB
253Group: Libraries
254Conflicts: llvm < 3.2
255
256%description libs
87977e26 257LLVM shared libraries.
8c514f23
JB
258
259%description libs -l pl.UTF-8
87977e26 260Biblioteki współdzielone LLVM-a.
8c514f23 261
bc88141a 262%package devel
621ec11f
JB
263Summary: Static libraries and header files for LLVM
264Summary(pl.UTF-8): Biblioteki statyczne i pliki nagłówkowe dla LLVM-a
bc88141a 265Group: Development/Languages
369cfc1c 266Requires: %{name}-libs%{?_isa} = %{version}-%{release}
335a154d 267%{?with_libatomic:Requires: libatomic-devel}
bc88141a 268Requires: libstdc++-devel >= 6:3.4
335a154d
JP
269Requires: ncurses-devel
270%{?with_z3:Requires: z3-devel}
271Requires: zlib-devel
272Requires: zstd-devel
bc88141a
ER
273
274%description devel
621ec11f
JB
275This package contains static libraries and header files needed to
276develop new native programs that use the LLVM infrastructure.
277
278%description devel -l pl.UTF-8
279Ten pakiet zawiera biblioteki statyczne oraz pliki nagłówkowe
280potrzebne do tworzenia nowych programów natywnych wykorzystujących
281infrastrukturę LLVM.
bc88141a 282
9556f4c9
ER
283%package doc
284Summary: Documentation for LLVM
621ec11f 285Summary(pl.UTF-8): Dokumentacja do LLVM-a
9556f4c9
ER
286Group: Documentation
287# does not require base
bc88141a 288
9556f4c9
ER
289%description doc
290Documentation for the LLVM compiler infrastructure.
bc88141a 291
621ec11f
JB
292%description doc -l pl.UTF-8
293Dokumentacja do infrastruktury kompilatorów LLVM.
294
9556f4c9
ER
295%package apidocs
296Summary: API documentation for LLVM
621ec11f 297Summary(pl.UTF-8): Dokumentacja API LLVM-a
9556f4c9
ER
298Group: Development/Languages
299Requires: %{name}-doc = %{version}-%{release}
d089395f 300BuildArch: noarch
bc88141a 301
9556f4c9
ER
302%description apidocs
303API documentation for the LLVM compiler infrastructure.
bc88141a 304
621ec11f
JB
305%description apidocs -l pl.UTF-8
306Dokumentacja API infrastruktury kompilatorów LLVM.
307
d27b2b77
JB
308%package mlir
309Summary: LLVM Multi-Level Intermediate Representation libraries and tools
310Summary(pl.UTF-8): Biblioteki i narzędzia wielopoziomowej reprezentacji pośredniej LLVM
311Group: Development/Tools
312URL: https://mlir.llvm.org/
313Requires: %{name} = %{version}-%{release}
314
315%description mlir
316LLVM Multi-Level Intermediate Representation libraries and tools.
317
318%description mlir -l pl.UTF-8
319Biblioteki i narzędzia wielopoziomowej reprezentacji pośredniej LLVM.
320
321%package mlir-devel
322Summary: LLVM Multi-Level Intermediate Representation development files
323Summary(pl.UTF-8): Pliki do programowania z użyciem wielopoziomowej reprezentacji pośredniej LLVM
324Group: Development/Tools
325URL: https://mlir.llvm.org/
326Requires: %{name}-devel = %{version}-%{release}
327Requires: %{name}-mlir = %{version}-%{release}
328
329%description mlir-devel
330LLVM Multi-Level Intermediate Representation development files.
331
332%description mlir-devel -l pl.UTF-8
333Pliki do programowania z użyciem wielopoziomowej reprezentacji
334pośredniej LLVM.
335
b0068ae4
JB
336%package polly
337Summary: Polyhedral optimizations for LLVM
338Summary(pl.UTF-8): Optymalizacje wielościanowe dla LLVM-a
339Group: Development/Tools
77d2fdeb 340URL: https://polly.llvm.org/
b0068ae4
JB
341Requires: %{name} = %{version}-%{release}
342
343%description polly
344Polly is a high-level loop and data-locality optimizer and
345optimization infrastructure for LLVM. It uses an abstract mathematical
346representation based on integer polyhedra to analyze and optimize the
347memory access pattern of a program.
348
349%description polly -l pl.UTF-8
350Polly to wysokopoziomowy optymalizator i infrastruktura LLVM-a do
351optymalizacji pętli i położenia danych. Wykorzystuje abstrakcyjną
352reprezentację matematyczną opartą na wielościanach całkowitoliczbowych
353do analizy i optymalizacji wzorców dostępu do pamięci przez program.
354
355%package polly-devel
356Summary: Header files for LLVM Polly optimization infrastructure
357Summary(pl.UTF-8): Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly
358Group: Development/Libraries
77d2fdeb 359URL: https://polly.llvm.org/
b0068ae4
JB
360Requires: %{name}-devel = %{version}-%{release}
361Requires: %{name}-polly = %{version}-%{release}
362
363%description polly-devel
364Header files for LLVM Polly optimization infrastructure.
365
366%description polly-devel -l pl.UTF-8
367Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly.
368
d997b14b
AM
369%package -n clang
370Summary: A C language family frontend for LLVM
621ec11f 371Summary(pl.UTF-8): Frontend LLVM-a do języków z rodziny C
d997b14b 372Group: Development/Languages
77d2fdeb 373URL: https://clang.llvm.org/
8c514f23 374Requires: %{name} = %{version}-%{release}
87977e26 375Requires: clang-libs = %{version}-%{release}
d997b14b
AM
376
377%description -n clang
378clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
379of a crane or goose. 3. C-language family front-end toolkit.
380
381The goal of the Clang project is to create a new C, C++, Objective C
382and Objective C++ front-end for the LLVM compiler. Its tools are built
383as libraries and designed to be loosely-coupled and extendable.
384
621ec11f
JB
385%description -n clang -l pl.UTF-8
386clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
387piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
388z rodziny C.
389
390Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
391LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
392budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
393i rozszerzaniu.
394
9eefd942
JR
395%package -n clang-multilib
396Summary: A C language family frontend for LLVM - 32-bit support
397Summary(pl.UTF-8): Frontend LLVM-a do języków z rodziny C - obsługa binariów 32-bitowych
9eefd942 398Group: Development/Languages
77d2fdeb 399URL: https://clang.llvm.org/
9eefd942
JR
400Requires: clang = %{version}-%{release}
401
402%description -n clang-multilib
403clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
404of a crane or goose. 3. C-language family front-end toolkit.
405
406The goal of the Clang project is to create a new C, C++, Objective C
407and Objective C++ front-end for the LLVM compiler. Its tools are built
408as libraries and designed to be loosely-coupled and extendable.
409
410This package contains the C compiler support for producing 32-bit
411programs on 64-bit host.
412
413%description -n clang-multilib -l pl.UTF-8
414clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
415piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
416z rodziny C.
417
418Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
419LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
420budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
421i rozszerzaniu.
422
423Ten pakiet zawiera rozszerzenie kompilatora C o obsługę tworzenia
424programów 32-bitowych na maszynie 64-bitowej.
425
cb7d0198
JB
426%package -n clang-libs
427Summary: Clang shared libraries
428Summary(pl.UTF-8): Biblioteki współdzielone Clanga
429Group: Libraries
430URL: https://clang.llvm.org/
d997b14b 431
cb7d0198
JB
432%description -n clang-libs
433Clang shared libraries.
d997b14b 434
cb7d0198
JB
435%description -n clang-libs -l pl.UTF-8
436Biblioteki współdzielone Clanga.
621ec11f 437
9556f4c9 438%package -n clang-devel
621ec11f
JB
439Summary: Header files for Clang
440Summary(pl.UTF-8): Pliki nagłówkowe Clanga
9556f4c9 441Group: Development/Languages
77d2fdeb 442URL: https://clang.llvm.org/
8c514f23 443Requires: %{name}-devel = %{version}-%{release}
9556f4c9 444Requires: clang = %{version}-%{release}
07de6be6 445%{?with_polly:Requires: llvm-polly-devel = %{version}-%{release}}
9556f4c9
ER
446
447%description -n clang-devel
448This package contains header files for the Clang compiler.
449
621ec11f
JB
450%description -n clang-devel -l pl.UTF-8
451Ten pakiet zawiera pliki nagłówkowe kompilatora Clang.
452
9556f4c9
ER
453%package -n clang-doc
454Summary: Documentation for Clang
621ec11f 455Summary(pl.UTF-8): Dokumentacja do Clanga
77d2fdeb 456URL: https://clang.llvm.org/
9556f4c9
ER
457Group: Documentation
458Requires: %{name} = %{version}-%{release}
d089395f 459BuildArch: noarch
9556f4c9
ER
460
461%description -n clang-doc
462Documentation for the Clang compiler front-end.
463
621ec11f
JB
464%description -n clang-doc -l pl.UTF-8
465Dokumentacja do frontendu kompilatora Clang.
466
9556f4c9
ER
467%package -n clang-apidocs
468Summary: API documentation for Clang
621ec11f 469Summary(pl.UTF-8): Dokumentacja API Clanga
77d2fdeb 470URL: https://clang.llvm.org/
9556f4c9
ER
471Group: Development/Languages
472Requires: clang-doc = %{version}-%{release}
d089395f 473BuildArch: noarch
9556f4c9
ER
474
475%description -n clang-apidocs
476API documentation for the Clang compiler.
477
621ec11f
JB
478%description -n clang-apidocs -l pl.UTF-8
479Dokumentacja API kompilatora Clang.
480
cb7d0198
JB
481%package -n clang-analyzer
482Summary: A source code analysis framework
483Summary(pl.UTF-8): Szkielet do analizy kodu źródłowego
484Group: Development/Languages
485URL: https://clang-analyzer.llvm.org/
486Requires: clang = %{version}-%{release}
487# not picked up automatically since files are currently not instaled
488# in standard Python hierarchies yet
489Requires: python3
490
491%description -n clang-analyzer
492The Clang Static Analyzer consists of both a source code analysis
493framework and a standalone tool that finds bugs in C and Objective-C
494programs. The standalone tool is invoked from the command-line, and is
495intended to run in tandem with a build of a project or code base.
496
497%description -n clang-analyzer -l pl.UTF-8
498Clang Static Analyzer składa się ze szkieletu do analizy kodu
499źródłowego oraz samodzielnego narzędzia znajdującego błędy w
500programach w C i C++. Narzędzie jest wywoływane z linii poleceń, z
501myślą o uruchamianiu wraz z kompilacją projektu lub kodu.
502
b0068ae4
JB
503%package -n clang-tools-extra
504Summary: Extra tools for Clang
505Summary(pl.UTF-8): Dodatkowe narzędzia do kompilatora Clang
506Group: Development/Tools
77d2fdeb 507URL: https://clang.llvm.org/docs/ClangTools.html
b0068ae4
JB
508Requires: clang = %{version}-%{release}
509
510%description -n clang-tools-extra
511Extra tools for Clang.
512
513%description -n clang-tools-extra -l pl.UTF-8
514Dodatkowe narzędzia do kompilatora Clang.
515
d13e7dd0
JB
516%package -n bash-completion-clang
517Summary: Bash completion for clang command
518Summary(pl.UTF-8): Bashowe dopełnianie składni polecenia clang
519Group: Applications/Shells
d60cad67 520Requires: bash-completion >= 1:2.0
d13e7dd0 521Requires: clang = %{version}-%{release}
d089395f 522BuildArch: noarch
d13e7dd0
JB
523
524%description -n bash-completion-clang
525Bash completion for clang command.
526
527%description -n bash-completion-clang -l pl.UTF-8
528Bashowe dopełnianie składni polecenia clang.
529
d27b2b77
JB
530%package -n flang
531Summary: Fortran frontend for LLVM
532Summary(pl.UTF-8): Frontend LLVM-a do Fortranu
533Group: Development/Languages
534URL: http://flang.llvm.org/
535Requires: %{name}-mlir = %{version}-%{release}
536
537%description -n flang
538Flang is a ground-up implementation of a Fortran front end written in
539modern C++.
540
541%description -n flang -l pl.UTF-8
542Flang to napisana od podstaw we współczesnym C++ implementacja
543frontendu do Fortranu.
544
545%package -n flang-devel
546Summary: Fortran frontend for LLVM - development files
547Summary(pl.UTF-8): Frontend LLVM-a do Fortranu - pliki programistyczne
548Group: Development/Languages
549URL: http://flang.llvm.org/
550Requires: %{name}-mlir-devel = %{version}-%{release}
551Requires: flang-devel = %{version}-%{release}
552
553%description -n flang-devel
554Development files for LLVM Fortran frontend.
555
556%description -n flang-devel -l pl.UTF-8
557Pliki prosramistyczne frontendu LLVM do Fortranu.
558
ba1cf74d
JB
559%package -n lld
560Summary: The LLVM linker
561Summary(pl.UTF-8): Konsolidator z projektu LLVM
562Group: Development/Libraries
77d2fdeb 563URL: https://lld.llvm.org/
ba1cf74d
JB
564Requires: %{name} = %{version}-%{release}
565
566%description -n lld
567lld is a new set of modular code for creating linker tools.
568
569%description -n lld -l pl.UTF-8
570lld to nowy zbiór modularnego kodu do tworzenia narzędzi
571konsolidujących.
572
573%package -n lld-devel
574Summary: Development files for LLD linker tools
575Summary(pl.UTF-8): Pliki programistyczne narzędzi konsolidujących LLD
576Group: Development/Tools
77d2fdeb 577URL: https://lld.llvm.org/
ba1cf74d 578Requires: %{name}-devel = %{version}-%{release}
78991aba 579Requires: xar-devel >= 1.6
ba1cf74d
JB
580
581%description -n lld-devel
582Development files for LLD linker tools.
583
584%description -n lld-devel -l pl.UTF-8
585Pliki programistyczne narzędzi konsolidujących LLD.
586
5a7ac479
JB
587%package -n lldb
588Summary: Next generation high-performance debugger
589Summary(pl.UTF-8): Wydajny debugger nowej generacji
590Group: Development/Debuggers
77d2fdeb 591URL: https://lldb.llvm.org/
5a7ac479 592Requires: %{name} = %{version}-%{release}
40bef2a3 593Requires: python3-six
5a7ac479
JB
594
595%description -n lldb
596LLDB is a next generation, high-performance debugger. It is built as a
597set of reusable components which highly leverage existing libraries in
598the larger LLVM Project, such as the Clang expression parser and LLVM
599disassembler.
600
601%description -n lldb -l pl.UTF-8
602LLDB to wydajny debugger nowej generacji. Jest zbudowany w oparciu o
603komponenty wielokrotnego użytku, wykorzystujące istniejące biblioteki
604w projekcie LLVM, takie jak analizator wyrażeń kompilatora Clang oraz
605disasembler LLVM.
606
607%package -n lldb-devel
ba1cf74d
JB
608Summary: Development files for LLDB debugger
609Summary(pl.UTF-8): Pliki programistyczne debuggera LLDB
5a7ac479 610Group: Development/Libraries
77d2fdeb 611URL: https://lldb.llvm.org/
5a7ac479
JB
612Requires: %{name}-devel = %{version}-%{release}
613Requires: clang-devel = %{version}-%{release}
614Requires: lldb = %{version}-%{release}
615
616%description -n lldb-devel
ba1cf74d 617Development files for LLDB debugger.
5a7ac479
JB
618
619%description -n lldb-devel -l pl.UTF-8
ba1cf74d 620Pliki programistyczne debuggera LLDB.
5a7ac479 621
9556f4c9
ER
622%package ocaml
623Summary: OCaml binding for LLVM
621ec11f
JB
624Summary(pl.UTF-8): Wiązanie OCamla do LLVM-a
625Group: Libraries
9556f4c9 626Requires: %{name} = %{version}-%{release}
c450bf27 627%if %{with ocaml}
9556f4c9 628%requires_eq ocaml-runtime
c450bf27 629%endif
9556f4c9 630
621ec11f 631%description ocaml
9556f4c9
ER
632OCaml binding for LLVM.
633
621ec11f
JB
634%description ocaml -l pl.UTF-8
635Wiązanie OCamla do LLVM-a.
636
9556f4c9 637%package ocaml-devel
621ec11f
JB
638Summary: Development files for LLVM OCaml binding
639Summary(pl.UTF-8): Pliki programistyczne wiązania OCamla do LLVM-a
9556f4c9
ER
640Group: Development/Libraries
641Requires: %{name}-devel = %{version}-%{release}
642Requires: %{name}-ocaml = %{version}-%{release}
643
644%description ocaml-devel
645The llvm-ocaml-devel package contains libraries and signature files
621ec11f
JB
646for developing applications that use llvm-ocaml binding.
647
648%description ocaml-devel -l pl.UTF-8
649Ten pakiet zawiera biblioteki i pliki sygnatur do tworzenia aplikacji
650wykorzystujących wiązanie llvm-ocaml.
651
9556f4c9
ER
652%package ocaml-doc
653Summary: Documentation for LLVM's OCaml binding
621ec11f 654Summary(pl.UTF-8): Dokumentacja wiązania OCamla do LLVM-a
9556f4c9
ER
655Group: Documentation
656Requires: %{name}-ocaml = %{version}-%{release}
d089395f 657BuildArch: noarch
9556f4c9
ER
658
659%description ocaml-doc
660HTML documentation for LLVM's OCaml binding.
661
621ec11f
JB
662%description ocaml-doc -l pl.UTF-8
663Dokumentacja HTML wiązania OCamla do LLVM-a.
664
d7447383
JR
665%package opt-viewer
666Summary: Optimization records visualization tools
83d2be6c 667Summary(pl.UTF-8): Narzędzia do wizualizacji rekordów optymalizacji
d7447383
JR
668Group: Development/Tools
669Requires: %{name} = %{version}
8e9fbe9e 670BuildArch: noarch
d7447383
JR
671
672%description opt-viewer
673Optimization records visualization tools.
674
83d2be6c
JB
675%description opt-viewer -l pl.UTF-8
676Narzędzia do wizualizacji rekordów optymalizacji.
677
d7447383 678%package -n vim-plugin-clang
83d2be6c
JB
679Summary: Clang format and rename integration for Vim
680Summary(pl.UTF-8): Integracja narzędzi Clang do formatowania i zmiany nazw z Vimem
d7447383
JR
681Group: Applications/Editors/Vim
682Requires: vim-rt >= 4:7.0
683BuildArch: noarch
684
685%description -n vim-plugin-clang
83d2be6c
JB
686Clang format and rename integration for Vim.
687
688%description -n vim-plugin-clang -l pl.UTF-8
689Integracja narzędzi Clang do formatowania i zmiany nazw z Vimem.
d7447383 690
aa11c230 691%prep
0fd19552 692%setup -q -n %{name}-%{version}.src -a1 %{?with_rt:-a2} %{?with_lldb:-a3} %{?with_polly:-a4} -a5 -a6 %{?with_flang:-a7} %{?with_mlir:-a8} -a9
44d18de7 693%{__mv} clang-%{version}.src tools/clang
5013c7ea
JB
694%{?with_rt:%{__mv} compiler-rt-%{version}.src projects/compiler-rt}
695%{?with_lldb:%{__mv} lldb-%{version}.src tools/lldb}
696%{?with_polly:%{__mv} polly-%{version}.src tools/polly}
d706a70d
JB
697%{__mv} clang-tools-extra-%{version}.src tools/clang/tools/extra
698%{__mv} lld-%{version}.src tools/lld
1a356f89
JB
699%if %{with flang}
700%{__mv} flang-%{version}.src tools/flang
d27b2b77
JB
701%endif
702%if %{with mlir}
d4ee5c50 703%{__mv} mlir-%{version}.src tools/mlir
1a356f89 704%endif
0fd19552 705%{__mv} cmake-%{version}.src cmake-utils
5a7ac479 706
9f7b77bd 707%patch1 -p1
9f7b77bd 708%patch3 -p1
d706a70d 709%patch5 -p1
1a356f89
JB
710%if %{with flang}
711%patch6 -p1
712%endif
40bef2a3 713%patch7 -p1
4a967aa9 714%patch8 -p1
e25801fb 715%patch9 -p1
90b20139
JP
716%if %{with rt}
717%patch10 -p1
91cd1ec7 718%patch12 -p1
90b20139 719%endif
0fd19552 720%patch11 -p1
ce9cc204 721
ef49a424 722grep -rl /usr/bin/env projects tools utils | xargs sed -i -e '1{
90b20139 723 s,^#!.*bin/env python3\?,#!%{__python3},
bacc8b96
ER
724 s,^#!.*bin/env perl,#!%{__perl},
725}'
726
d7447383 727find -name '*.py' -print0 | xargs -0 sed -i -e '1{
40bef2a3 728 s,^#!.*bin/python.*,#!%{__python3},
d7447383
JR
729}'
730
d27b2b77 731%if %{with flang}
07f61ae5 732%{__sed} -i -e '1s,/usr/bin/env bash,/bin/bash,' tools/flang/tools/f18/flang-to-external-fc.in
d27b2b77
JB
733%endif
734
d756c460 735%build
41876fe7 736install -d build
ebde279d 737
d997b14b 738# Disabling assertions now, rec. by pure and needed for OpenGTL
9556f4c9 739# TESTFIX no PIC on ix86: http://llvm.org/bugs/show_bug.cgi?id=3801
41876fe7 740cd build
5e689738 741CPPFLAGS="%{rpmcppflags} -D_FILE_OFFSET_BITS=64"
2bbd0701 742
1431eb62 743%if %{with lowmem}
1b6050f4
JP
744export CFLAGS="%{rpmcflags} -NDEBUG -g0"
745export CXXFLAGS="%{rpmcxxflags} -NDEBUG -g0"
eb891a99 746if echo 'int main(){}' | %{__cc} -x c %{rpmldflags} -Wl,--reduce-memory-overheads -o /dev/null - > /dev/null 2>&1; then
1431eb62 747export LDFLAGS="%{rpmldflags} -Wl,--reduce-memory-overheads"
eb891a99 748fi
1431eb62
JP
749%endif
750
200602f4
JB
751%cmake .. \
752 -DBUILD_SHARED_LIBS:BOOL=OFF \
200602f4 753 -DENABLE_LINKER_BUILD_ID:BOOL=ON \
0fd19552 754 -DLLVM_COMMON_CMAKE_UTILS="%{_builddir}/%{buildsubdir}/cmake-utils" \
200602f4
JB
755 -DLLVM_BINDINGS_LIST:LIST="%{?with_ocaml:ocaml}" \
756 -DLLVM_BINUTILS_INCDIR:STRING=%{_includedir} \
757 -DLLVM_BUILD_LLVM_DYLIB:BOOL=ON \
758 -DLLVM_ENABLE_ASSERTIONS:BOOL=OFF \
0fd19552 759 -DLLVM_INSTALL_PACKAGE_DIR=%(realpath -m "--relative-to=%{_prefix}" "%{_libdir}/cmake/llvm") \
90b20139 760 -DLLVM_TOOLS_INSTALL_DIR=%(realpath -m "--relative-to=%{_prefix}" "%{_bindir}") \
9556f4c9 761%if %{with apidocs}
41876fe7 762 -DLLVM_ENABLE_DOXYGEN:BOOL=ON \
d997b14b 763%endif
44d18de7 764 %{?with_cxxmodules:-DLLVM_ENABLE_MODULES:BOOL=ON} \
200602f4
JB
765 -DLLVM_ENABLE_PIC:BOOL=ON \
766 -DLLVM_ENABLE_RTTI:BOOL=ON \
41876fe7
JR
767%if %{with doc}
768 -DLLVM_ENABLE_SPHINX:BOOL=ON \
769%endif
90b20139 770 -DLLVM_INCLUDE_BENCHMARKS:BOOL=OFF \
ad697ab7 771 %{?with_z3:-DLLVM_ENABLE_Z3_SOLVER:BOOL=ON} \
200602f4
JB
772%if "%{_lib}" == "lib64"
773 -DLLVM_LIBDIR_SUFFIX:STRING=64 \
774%endif
775%if "%{_lib}" == "libx32"
776 -DLLVM_LIBDIR_SUFFIX:STRING=x32 \
777%endif
9a23736f 778 -DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
4cc5652a 779 -DLLVM_TARGET_ARCH:STRING=%{_target_base_arch} \
67331d50 780 -DLLVM_DEFAULT_TARGET_TRIPLE:STRING=%{_target_platform} \
1431eb62
JP
781%if %{with lowmem}
782 -DLLVM_PARALLEL_LINK_JOBS:STRING=1 \
783%endif
a531db5e 784 -DLLVM_TARGETS_TO_BUILD="%{targets_to_build}" \
8c2b8be4 785 -DLLVM_INCLUDE_TESTS:BOOL=OFF \
8d52ede4 786%if %{with polly}
a5fe2ce1 787 %{cmake_on_off target_nvptx POLLY_ENABLE_GPGPU_CODEGEN} \
8d52ede4 788%endif
cfaa3167
JP
789 -DSPHINX_WARNINGS_AS_ERRORS=OFF \
790%if %{with rt}
8c2b8be4 791 -DCOMPILER_RT_INCLUDE_TESTS:BOOL=OFF \
cfaa3167
JP
792%ifarch x32
793 -DCOMPILER_RT_BUILD_MEMPROF:BOOL=OFF
794%endif
795%endif
41876fe7 796
d997b14b 797%{__make} \
1628dc68 798 VERBOSE=1 \
d997b14b 799 OPTIMIZE_OPTION="%{rpmcflags} %{rpmcppflags}"
aa11c230 800
827664e9 801%if %{with tests}
9556f4c9
ER
802%{__make} check 2>&1 | tee llvm-testlog.txt
803%{__make} -C tools/clang test 2>&1 | tee clang-testlog.txt
804%endif
805
b0068ae4 806%if %{with doc}
41876fe7
JR
807%{__make} -C docs docs-llvm-html
808%{__make} -C docs docs-llvm-man
41876fe7
JR
809%{__make} -C tools/clang/docs docs-clang-html
810%{__make} -C tools/clang/docs docs-clang-man
811%{__make} -C tools/lld/docs docs-lld-html
76a62f5e 812%if %{with lldb}
d1e2ca8d 813# workaround failed import of _lldb
90b20139 814cp -pnL %{_lib}/liblldb.so tools/lldb/docs/lldb/_lldb.so
47e02cfd
JP
815%{__make} \
816 LD_LIBRARY_PATH=$(pwd)/%{_lib} \
40bef2a3 817 -C tools/lldb/docs lldb-python-doc-package
41876fe7 818%{__make} -C tools/lldb/docs lldb-cpp-doc
dd9350c7 819%endif
76a62f5e 820%endif
bc243323
JP
821%if %{with ocaml}
822%{__make} -C docs ocaml_doc
823%endif
dd9350c7 824
aa11c230 825%install
826rm -rf $RPM_BUILD_ROOT
5013c7ea 827
464fc37c 828%{__make} -j1 -C build install \
aa11c230 829 DESTDIR=$RPM_BUILD_ROOT
830
6df3b432 831# only some .pyc files are created by make install
40bef2a3
JP
832%py3_comp $RPM_BUILD_ROOT%{py3_sitedir}
833%py3_ocomp $RPM_BUILD_ROOT%{py3_sitedir}
6df3b432 834
e25801fb
JB
835# Adjust static analyzer installation (see -libexecdir patch)
836abs_ca_libexecdir="%{_libexecdir}/clang-analyzer"
837rel_ca_libexecdir="${abs_ca_libexecdir#%{_prefix}}"
838%{__sed} -i -e "s,/\.\./libexec/,/..${rel_ca_libexecdir}/," $RPM_BUILD_ROOT%{_bindir}/scan-build
40bef2a3
JP
839%py3_comp $RPM_BUILD_ROOT%{_datadir}/scan-view
840%py3_ocomp $RPM_BUILD_ROOT%{_datadir}/scan-view
d997b14b 841
6df3b432 842# not installed by cmake buildsystem
6df3b432
JB
843install build/bin/pp-trace $RPM_BUILD_ROOT%{_bindir}
844
b0068ae4 845%if %{with doc}
6df3b432 846cp -p build/docs/man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
b883cf1e 847# these tools are not installed
95bd4382 848%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/{FileCheck,clang-tblgen,lldb-tblgen}.1
b0068ae4
JB
849# make links
850echo '.so llvm-ar.1' > $RPM_BUILD_ROOT%{_mandir}/man1/llvm-ranlib.1
dd9350c7
JB
851%endif
852
d997b14b 853# Move documentation back to build directory
2bbd0701 854%if %{with ocaml}
6df3b432 855rm -rf ocamldocs
5013c7ea 856%{__mv} $RPM_BUILD_ROOT%{_docdir}/llvm/ocaml-html ocamldocs
2bbd0701 857%endif
9556f4c9
ER
858
859# and separate the apidoc
860%if %{with apidocs}
6df3b432
JB
861rm -rf clang-apidoc
862cp -a build/tools/clang/docs/html clang-apidoc
9556f4c9 863%endif
d997b14b
AM
864
865# And prepare Clang documentation
d997b14b 866rm -rf clang-docs
9556f4c9 867install -d clang-docs
827664e9 868for f in LICENSE.TXT NOTES.txt README.txt; do
9556f4c9 869 ln tools/clang/$f clang-docs
d997b14b 870done
021b3c3d 871
d13e7dd0
JB
872install -d $RPM_BUILD_ROOT%{bash_compdir}
873%{__mv} $RPM_BUILD_ROOT%{_datadir}/clang/bash-autocomplete.sh $RPM_BUILD_ROOT%{bash_compdir}/clang
874
d2551984 875%{__rm} $RPM_BUILD_ROOT%{_bindir}/c-index-test
6df3b432
JB
876# not this OS
877%{__rm} $RPM_BUILD_ROOT%{_datadir}/clang/clang-format-bbedit.applescript
03073220
JK
878# it seems it is used internally by an extra clang tool
879%{__rm} $RPM_BUILD_ROOT%{_libdir}/libfindAllSymbols.a
80920c35 880%if %{with mlir}
07f61ae5
JB
881%{__rm} -r $RPM_BUILD_ROOT%{_libdir}/objects-PLD
882%endif
6832a5c5 883
fba35f64 884# disable completeness check incompatible with split packaging
d27b2b77
JB
885%{__sed} -i -e '/^foreach(target .*IMPORT_CHECK_TARGETS/,/^endforeach/d; /^unset(_IMPORT_CHECK_TARGETS)/d' \
886 $RPM_BUILD_ROOT%{_libdir}/cmake/clang/ClangTargets.cmake \
887%if %{with flang}
888 $RPM_BUILD_ROOT%{_libdir}/cmake/flang/FlangTargets.cmake \
889%endif
890 $RPM_BUILD_ROOT%{_libdir}/cmake/lld/LLDTargets.cmake \
891 $RPM_BUILD_ROOT%{_libdir}/cmake/llvm/LLVMExports.cmake \
892%if %{with mlir}
893 $RPM_BUILD_ROOT%{_libdir}/cmake/mlir/MLIRTargets.cmake
894%endif
fba35f64 895
aa11c230 896%clean
897rm -rf $RPM_BUILD_ROOT
898
8c514f23
JB
899%post libs -p /sbin/ldconfig
900%postun libs -p /sbin/ldconfig
aa11c230 901
d27b2b77
JB
902%post mlir -p /sbin/ldconfig
903%postun mlir -p /sbin/ldconfig
904
5013c7ea
JB
905%post -n clang-libs -p /sbin/ldconfig
906%postun -n clang-libs -p /sbin/ldconfig
5a7ac479
JB
907
908%post -n lldb -p /sbin/ldconfig
909%postun -n lldb -p /sbin/ldconfig
910
aa11c230 911%files
912%defattr(644,root,root,755)
8132e62b 913%doc CREDITS.TXT LICENSE.TXT README.txt %{?with_tests:llvm-testlog.txt}
a9beeab5 914%attr(755,root,root) %{_bindir}/bugpoint
8f8cf7a8 915%attr(755,root,root) %{_bindir}/dsymutil
a9beeab5
JB
916%attr(755,root,root) %{_bindir}/llc
917%attr(755,root,root) %{_bindir}/lli
d1e2ca8d 918%attr(755,root,root) %{_bindir}/llvm-addr2line
8132e62b
JB
919%attr(755,root,root) %{_bindir}/llvm-ar
920%attr(755,root,root) %{_bindir}/llvm-as
921%attr(755,root,root) %{_bindir}/llvm-bcanalyzer
40bef2a3 922%attr(755,root,root) %{_bindir}/llvm-bitcode-strip
d2551984 923%attr(755,root,root) %{_bindir}/llvm-c-test
5013c7ea 924%attr(755,root,root) %{_bindir}/llvm-cat
23ae6496 925%attr(755,root,root) %{_bindir}/llvm-cfi-verify
827664e9 926%attr(755,root,root) %{_bindir}/llvm-cov
265e167c 927%attr(755,root,root) %{_bindir}/llvm-cvtres
5013c7ea
JB
928%attr(755,root,root) %{_bindir}/llvm-cxxdump
929%attr(755,root,root) %{_bindir}/llvm-cxxfilt
0bc9c5c9 930%attr(755,root,root) %{_bindir}/llvm-cxxmap
8c2b8be4 931%attr(755,root,root) %{_bindir}/llvm-debuginfo-analyzer
0fd19552 932%attr(755,root,root) %{_bindir}/llvm-debuginfod
90b20139 933%attr(755,root,root) %{_bindir}/llvm-debuginfod-find
8132e62b
JB
934%attr(755,root,root) %{_bindir}/llvm-diff
935%attr(755,root,root) %{_bindir}/llvm-dis
265e167c 936%attr(755,root,root) %{_bindir}/llvm-dlltool
827664e9 937%attr(755,root,root) %{_bindir}/llvm-dwarfdump
0fd19552 938%attr(755,root,root) %{_bindir}/llvm-dwarfutil
264482e1 939%attr(755,root,root) %{_bindir}/llvm-dwp
8f8cf7a8 940%attr(755,root,root) %{_bindir}/llvm-exegesis
8132e62b 941%attr(755,root,root) %{_bindir}/llvm-extract
f784323b 942%attr(755,root,root) %{_bindir}/llvm-gsymutil
ef49a424
JP
943%attr(755,root,root) %{_bindir}/llvm-ifs
944%attr(755,root,root) %{_bindir}/llvm-install-name-tool
d1e2ca8d 945%attr(755,root,root) %{_bindir}/llvm-jitlink
6df3b432 946%attr(755,root,root) %{_bindir}/llvm-lib
40bef2a3 947%attr(755,root,root) %{_bindir}/llvm-libtool-darwin
8132e62b 948%attr(755,root,root) %{_bindir}/llvm-link
d1e2ca8d 949%attr(755,root,root) %{_bindir}/llvm-lipo
3c402b7e 950%attr(755,root,root) %{_bindir}/llvm-lto
5013c7ea 951%attr(755,root,root) %{_bindir}/llvm-lto2
8132e62b 952%attr(755,root,root) %{_bindir}/llvm-mc
8f8cf7a8 953%attr(755,root,root) %{_bindir}/llvm-mca
f784323b 954%attr(755,root,root) %{_bindir}/llvm-ml
5013c7ea 955%attr(755,root,root) %{_bindir}/llvm-modextract
265e167c 956%attr(755,root,root) %{_bindir}/llvm-mt
8132e62b 957%attr(755,root,root) %{_bindir}/llvm-nm
23ae6496 958%attr(755,root,root) %{_bindir}/llvm-objcopy
8132e62b 959%attr(755,root,root) %{_bindir}/llvm-objdump
5013c7ea 960%attr(755,root,root) %{_bindir}/llvm-opt-report
8d52ede4 961%attr(755,root,root) %{_bindir}/llvm-otool
265e167c 962%attr(755,root,root) %{_bindir}/llvm-pdbutil
b883cf1e 963%attr(755,root,root) %{_bindir}/llvm-profdata
40bef2a3 964%attr(755,root,root) %{_bindir}/llvm-profgen
8132e62b 965%attr(755,root,root) %{_bindir}/llvm-ranlib
23ae6496 966%attr(755,root,root) %{_bindir}/llvm-rc
265e167c 967%attr(755,root,root) %{_bindir}/llvm-readelf
f981d747 968%attr(755,root,root) %{_bindir}/llvm-readobj
ef49a424 969%attr(755,root,root) %{_bindir}/llvm-reduce
0fd19552 970%attr(755,root,root) %{_bindir}/llvm-remark-size-diff
8c2b8be4 971%attr(755,root,root) %{_bindir}/llvm-remarkutil
827664e9 972%attr(755,root,root) %{_bindir}/llvm-rtdyld
8d52ede4 973%attr(755,root,root) %{_bindir}/llvm-sim
827664e9 974%attr(755,root,root) %{_bindir}/llvm-size
264482e1 975%attr(755,root,root) %{_bindir}/llvm-split
8f8cf7a8 976%attr(755,root,root) %{_bindir}/llvm-strip
f981d747 977%attr(755,root,root) %{_bindir}/llvm-stress
5013c7ea 978%attr(755,root,root) %{_bindir}/llvm-strings
1628dc68 979%attr(755,root,root) %{_bindir}/llvm-symbolizer
8d52ede4 980%attr(755,root,root) %{_bindir}/llvm-tapi-diff
827664e9 981%attr(755,root,root) %{_bindir}/llvm-tblgen
90b20139 982%attr(755,root,root) %{_bindir}/llvm-tli-checker
8f8cf7a8 983%attr(755,root,root) %{_bindir}/llvm-undname
8d52ede4 984%attr(755,root,root) %{_bindir}/llvm-windres
5013c7ea 985%attr(755,root,root) %{_bindir}/llvm-xray
8132e62b 986%attr(755,root,root) %{_bindir}/opt
d706a70d 987%attr(755,root,root) %{_bindir}/sancov
03073220 988%attr(755,root,root) %{_bindir}/sanstats
0fd19552 989%attr(755,root,root) %{_bindir}/tblgen-lsp-server
4ba3b2b3 990%attr(755,root,root) %{_bindir}/verify-uselistorder
b0068ae4 991%if %{with doc}
a9beeab5 992%{_mandir}/man1/bugpoint.1*
23ae6496 993%{_mandir}/man1/dsymutil.1*
a7973f21 994%{_mandir}/man1/lit.1*
a9beeab5
JB
995%{_mandir}/man1/llc.1*
996%{_mandir}/man1/lli.1*
d1e2ca8d 997%{_mandir}/man1/llvm-addr2line.1*
8132e62b
JB
998%{_mandir}/man1/llvm-ar.1*
999%{_mandir}/man1/llvm-as.1*
1000%{_mandir}/man1/llvm-bcanalyzer.1*
f981d747 1001%{_mandir}/man1/llvm-cov.1*
d1e2ca8d 1002%{_mandir}/man1/llvm-cxxfilt.1*
0bc9c5c9 1003%{_mandir}/man1/llvm-cxxmap.1*
1bb5dbae 1004%{_mandir}/man1/llvm-debuginfo-analyzer.1*
8132e62b
JB
1005%{_mandir}/man1/llvm-diff.1*
1006%{_mandir}/man1/llvm-dis.1*
b883cf1e 1007%{_mandir}/man1/llvm-dwarfdump.1*
0fd19552 1008%{_mandir}/man1/llvm-dwarfutil.1*
8f8cf7a8 1009%{_mandir}/man1/llvm-exegesis.1*
8132e62b 1010%{_mandir}/man1/llvm-extract.1*
0fd19552 1011%{_mandir}/man1/llvm-ifs.1*
40bef2a3 1012%{_mandir}/man1/llvm-install-name-tool.1*
d706a70d 1013%{_mandir}/man1/llvm-lib.1*
40bef2a3 1014%{_mandir}/man1/llvm-libtool-darwin.1*
8132e62b 1015%{_mandir}/man1/llvm-link.1*
d1e2ca8d 1016%{_mandir}/man1/llvm-lipo.1*
ef49a424 1017%{_mandir}/man1/llvm-locstats.1*
8f8cf7a8 1018%{_mandir}/man1/llvm-mca.1*
8132e62b 1019%{_mandir}/man1/llvm-nm.1*
d1e2ca8d 1020%{_mandir}/man1/llvm-objcopy.1*
0bc9c5c9 1021%{_mandir}/man1/llvm-objdump.1*
1bb5dbae 1022%{_mandir}/man1/llvm-opt-report.1*
8d52ede4 1023%{_mandir}/man1/llvm-otool.1*
23ae6496 1024%{_mandir}/man1/llvm-pdbutil.1*
b883cf1e 1025%{_mandir}/man1/llvm-profdata.1*
40bef2a3 1026%{_mandir}/man1/llvm-profgen.1*
8132e62b 1027%{_mandir}/man1/llvm-ranlib.1*
d1e2ca8d 1028%{_mandir}/man1/llvm-readelf.1*
c999855f 1029%{_mandir}/man1/llvm-readobj.1*
0fd19552 1030%{_mandir}/man1/llvm-remark-size-diff.1*
1bb5dbae 1031%{_mandir}/man1/llvm-remarkutil.1*
d1e2ca8d 1032%{_mandir}/man1/llvm-size.1*
f981d747 1033%{_mandir}/man1/llvm-stress.1*
d1e2ca8d
JP
1034%{_mandir}/man1/llvm-strings.1*
1035%{_mandir}/man1/llvm-strip.1*
1628dc68 1036%{_mandir}/man1/llvm-symbolizer.1*
8d52ede4 1037%{_mandir}/man1/llvm-tblgen.1*
90b20139 1038%{_mandir}/man1/llvm-tli-checker.1*
a9beeab5 1039%{_mandir}/man1/opt.1*
95bd4382 1040%{_mandir}/man1/tblgen.1*
b0068ae4 1041%endif
bc88141a 1042
8c514f23
JB
1043%files libs
1044%defattr(644,root,root,755)
2379ea21 1045%attr(755,root,root) %{_libdir}/LLVMgold.so
9a23736f
JB
1046%attr(755,root,root) %{_libdir}/libLLVM-%{abi}.so
1047# non-soname symlink
1048%attr(755,root,root) %{_libdir}/libLLVM-%{version}.so
64ff6369
JP
1049%attr(755,root,root) %{_libdir}/libLTO.so.17
1050%attr(755,root,root) %{_libdir}/libRemarks.so.17
1051%attr(755,root,root) %{_libdir}/libclang-cpp.so.17
8c514f23 1052
bc88141a
ER
1053%files devel
1054%defattr(644,root,root,755)
1055%attr(755,root,root) %{_bindir}/llvm-config
9a23736f 1056%attr(755,root,root) %{_libdir}/libLLVM.so
5013c7ea 1057%attr(755,root,root) %{_libdir}/libLTO.so
d1e2ca8d
JP
1058%attr(755,root,root) %{_libdir}/libRemarks.so
1059%attr(755,root,root) %{_libdir}/libclang-cpp.so
d706a70d 1060%{_libdir}/libLLVM*.a
8132e62b
JB
1061%{_includedir}/llvm
1062%{_includedir}/llvm-c
9ace1f65 1063%{_libdir}/cmake/llvm
b0068ae4 1064%if %{with doc}
8132e62b 1065%{_mandir}/man1/llvm-config.1*
b0068ae4 1066%endif
bc88141a 1067
6df3b432
JB
1068#%files doc
1069#%defattr(644,root,root,755)
9556f4c9
ER
1070
1071%if %{with apidocs}
1072%files apidocs
1073%defattr(644,root,root,755)
1074%doc apidoc/*
1075%endif
1076
d27b2b77
JB
1077%if %{with mlir}
1078%files mlir
1079%defattr(644,root,root,755)
1080%attr(755,root,root) %{_bindir}/mlir-cpu-runner
d27b2b77
JB
1081%attr(755,root,root) %{_bindir}/mlir-linalg-ods-yaml-gen
1082%attr(755,root,root) %{_bindir}/mlir-lsp-server
1083%attr(755,root,root) %{_bindir}/mlir-opt
8c2b8be4 1084%attr(755,root,root) %{_bindir}/mlir-pdll
0fd19552 1085%attr(755,root,root) %{_bindir}/mlir-pdll-lsp-server*
d27b2b77
JB
1086%attr(755,root,root) %{_bindir}/mlir-reduce
1087%attr(755,root,root) %{_bindir}/mlir-tblgen
1088%attr(755,root,root) %{_bindir}/mlir-translate
64ff6369
JP
1089%attr(755,root,root) %{_libdir}/libMLIR.so.17
1090%attr(755,root,root) %{_libdir}/libmlir_async_runtime.so.17
1091%attr(755,root,root) %{_libdir}/libmlir_c_runner_utils.so.17
1092%attr(755,root,root) %{_libdir}/libmlir_float16_utils.so.17
1093%attr(755,root,root) %{_libdir}/libmlir_runner_utils.so.17
846aaadd 1094%if %{with doc}
d27b2b77 1095%{_mandir}/man1/mlir-tblgen.1*
846aaadd 1096%endif
d27b2b77
JB
1097
1098%files mlir-devel
1099%defattr(644,root,root,755)
1100%attr(755,root,root) %{_libdir}/libMLIR.so
1101%attr(755,root,root) %{_libdir}/libmlir_async_runtime.so
1102%attr(755,root,root) %{_libdir}/libmlir_c_runner_utils.so
8c2b8be4 1103%attr(755,root,root) %{_libdir}/libmlir_float16_utils.so
d27b2b77
JB
1104%attr(755,root,root) %{_libdir}/libmlir_runner_utils.so
1105%{_libdir}/libMLIR*.a
1106%{_includedir}/mlir
1107%{_includedir}/mlir-c
1108%{_libdir}/cmake/mlir
1109%endif
1110
b0068ae4
JB
1111%if %{with polly}
1112%files polly
1113%defattr(644,root,root,755)
8d52ede4 1114%doc tools/polly/{CREDITS.txt,LICENSE.TXT,README} tools/polly/www/{bugs,changelog,contributors}.html
b0068ae4
JB
1115%attr(755,root,root) %{_libdir}/LLVMPolly.so
1116
1117%files polly-devel
1118%defattr(644,root,root,755)
9a23736f
JB
1119%{_libdir}/libPolly.a
1120%{_libdir}/libPollyISL.a
b0068ae4 1121%{_includedir}/polly
265e167c 1122%{_libdir}/cmake/polly
b0068ae4
JB
1123%endif
1124
d997b14b 1125%files -n clang
bc88141a 1126%defattr(644,root,root,755)
827664e9 1127%doc clang-docs/{LICENSE.TXT,NOTES.txt,README.txt} %{?with_tests:clang-testlog.txt}
8c2b8be4 1128%attr(755,root,root) %{_bindir}/amdgpu-arch
8132e62b
JB
1129%attr(755,root,root) %{_bindir}/clang
1130%attr(755,root,root) %{_bindir}/clang++
509439cf 1131%attr(755,root,root) %{_bindir}/clang-%{abi}
dd9350c7 1132%attr(755,root,root) %{_bindir}/clang-check
6df3b432 1133%attr(755,root,root) %{_bindir}/clang-cl
5013c7ea 1134%attr(755,root,root) %{_bindir}/clang-cpp
d1e2ca8d 1135%attr(755,root,root) %{_bindir}/clang-doc
1628dc68 1136%attr(755,root,root) %{_bindir}/clang-format
90b20139 1137%attr(755,root,root) %{_bindir}/clang-linker-wrapper
5013c7ea 1138%attr(755,root,root) %{_bindir}/clang-offload-bundler
0fd19552 1139%attr(755,root,root) %{_bindir}/clang-offload-packager
0fd19552 1140%attr(755,root,root) %{_bindir}/clang-pseudo
8d52ede4 1141%attr(755,root,root) %{_bindir}/clang-repl
8c2b8be4 1142%attr(755,root,root) %{_bindir}/clang-tblgen
6df3b432 1143%attr(755,root,root) %{_bindir}/git-clang-format
8c2b8be4 1144%attr(755,root,root) %{_bindir}/nvptx-arch
5a7ac479 1145%dir %{_libdir}/clang
8c2b8be4
JP
1146%dir %{_libdir}/clang/%{abi}
1147%{_libdir}/clang/%{abi}/include
5a7ac479 1148%if %{with rt}
9cb808e7 1149%ifarch %{x8664} x32 aarch64
8c2b8be4
JP
1150%dir %{_libdir}/clang/%{abi}/bin
1151%attr(755,root,root) %{_libdir}/clang/%{abi}/bin/hwasan_symbolize
19798eda 1152%endif
927fe779 1153%ifarch %{ix86} %{x8664} aarch64 %{armv7}
8c2b8be4
JP
1154%dir %{_libdir}/clang/%{abi}/lib
1155%dir %{_libdir}/clang/%{abi}/lib/*-linux*
1156%dir %{_libdir}/clang/%{abi}/share
3b28b31d
JB
1157%endif
1158%ifarch x32
1159%if %{with multilib}
8c2b8be4
JP
1160%dir %{_libdir}/clang/%{abi}/lib
1161%dir %{_libdir}/clang/%{abi}/lib/*-linux*
1162%dir %{_libdir}/clang/%{abi}/share
9eefd942 1163%endif
3b28b31d 1164%endif
9eefd942 1165%ifarch %{ix86}
8c2b8be4
JP
1166%{_libdir}/clang/%{abi}/lib/i*86-*linux/clang_rt.*.o
1167%{_libdir}/clang/%{abi}/lib/i*86-*linux/libclang_rt.*.a
1168%attr(755,root,root) %{_libdir}/clang/%{abi}/lib/i*86-*linux/libclang_rt.*.so
c6c890ee
JB
1169%endif
1170%ifarch %{x8664}
8c2b8be4
JP
1171%{_libdir}/clang/%{abi}/lib/x86_64-*linux/clang_rt.*.o
1172%{_libdir}/clang/%{abi}/lib/x86_64-*linux/libclang_rt.*.a
1173%attr(755,root,root) %{_libdir}/clang/%{abi}/lib/x86_64-*linux/libclang_rt.*.so
1174%{_libdir}/clang/%{abi}/lib/x86_64-*linux/libclang_rt.*.a.syms
1175%{_libdir}/clang/%{abi}/lib/x86_64-*linux/liborc_rt.a
3c402b7e 1176%endif
7bceddf8 1177%ifarch aarch64
8c2b8be4
JP
1178%{_libdir}/clang/%{abi}/lib/aarch64-*linux/clang_rt.*.o
1179%{_libdir}/clang/%{abi}/lib/aarch64-*linux/libclang_rt.*.a
1180%attr(755,root,root) %{_libdir}/clang/%{abi}/lib/aarch64-*linux/libclang_rt.*.so
1181%{_libdir}/clang/%{abi}/lib/aarch64-*linux/libclang_rt.*.a.syms
1182%{_libdir}/clang/%{abi}/lib/aarch64-*linux/liborc_rt.a
7bceddf8 1183%endif
927fe779 1184%ifarch %{armv7}
034750a1
JP
1185%ifarch %{arm32_with_hf}
1186%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}hf/clang_rt.*.o
1187%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}hf/libclang_rt.*.a
1188%attr(755,root,root) %{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}hf/libclang_rt.*.so
1189%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}hf/libclang_rt.*.a.syms
1190%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}hf/liborc_rt.a
1191%else
1192%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}/clang_rt.*.o
1193%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}/libclang_rt.*.a
1194%attr(755,root,root) %{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}/libclang_rt.*.so
1195%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}/libclang_rt.*.a.syms
1196%{_libdir}/clang/%{abi}/lib/arm-*linux%{_gnu}/liborc_rt.a
1197%endif
97d374d2 1198%endif
3b28b31d 1199%ifarch %{ix86} %{x8664} %{arm} aarch64 mips mips64 ppc64
8c2b8be4 1200%{_libdir}/clang/%{abi}/share/asan_ignorelist.txt
d706a70d 1201%endif
927fe779 1202%ifarch %{ix86} %{x8664} mips64 aarch64 %{armv7}
8c2b8be4 1203%{_libdir}/clang/%{abi}/share/cfi_ignorelist.txt
d706a70d 1204%endif
3b28b31d 1205%ifarch %{x8664} aarch64 mips64
8c2b8be4
JP
1206%{_libdir}/clang/%{abi}/share/dfsan_abilist.txt
1207%{_libdir}/clang/%{abi}/share/msan_ignorelist.txt
8f8cf7a8 1208%endif
3b28b31d 1209%ifarch %{x8664} aarch64
8c2b8be4 1210%{_libdir}/clang/%{abi}/share/hwasan_ignorelist.txt
d706a70d 1211%endif
3b28b31d
JB
1212%ifarch x32
1213%if %{with multilib}
8c2b8be4
JP
1214%{_libdir}/clang/%{abi}/share/asan_ignorelist.txt
1215%{_libdir}/clang/%{abi}/share/cfi_ignorelist.txt
1216%{_libdir}/clang/%{abi}/share/dfsan_abilist.txt
1217%{_libdir}/clang/%{abi}/share/msan_ignorelist.txt
1218%{_libdir}/clang/%{abi}/share/hwasan_ignorelist.txt
3b28b31d
JB
1219%endif
1220%endif
5a7ac479 1221%endif
3c402b7e
JB
1222%dir %{_datadir}/clang
1223%{_datadir}/clang/clang-format-diff.py
d997b14b 1224
589b92f5 1225%if %{with rt} && %{with multilib}
b0e18b64 1226%ifarch %{x8664} x32
9eefd942
JR
1227%files -n clang-multilib
1228%defattr(644,root,root,755)
8c2b8be4
JP
1229%{_libdir}/clang/%{abi}/lib/i386-*linux/clang_rt.*.o
1230%{_libdir}/clang/%{abi}/lib/i386-*linux/libclang_rt.*.a
1231%attr(755,root,root) %{_libdir}/clang/%{abi}/lib/i386-*linux/libclang_rt.*.so
9eefd942 1232%endif
b0e18b64 1233%ifarch x32
8c2b8be4
JP
1234%{_libdir}/clang/%{abi}/lib/x86_64-*linux/clang_rt.*.o
1235%{_libdir}/clang/%{abi}/lib/x86_64-*linux/libclang_rt.*.a
1236%attr(755,root,root) %{_libdir}/clang/%{abi}/lib/x86_64-*linux/libclang_rt.*.so
1237%{_libdir}/clang/%{abi}/lib/x86_64-*linux/libclang_rt.*.a.syms
1238%{_libdir}/clang/%{abi}/lib/x86_64-*linux/liborc_rt.a
b0e18b64 1239%endif
9eefd942
JR
1240%endif
1241
cb7d0198
JB
1242%files -n clang-libs
1243%defattr(644,root,root,755)
64ff6369 1244%attr(755,root,root) %{_libdir}/libclang.so.17
cb7d0198
JB
1245%attr(755,root,root) %{_libdir}/libclang.so.*.*.*
1246
1247%files -n clang-devel
1248%defattr(644,root,root,755)
1249%attr(755,root,root) %{_libdir}/libclang.so
1250%{_libdir}/libclang*.a
1251%{_includedir}/clang
1252%{_includedir}/clang-c
1253%{_includedir}/clang-tidy
1254%{_libdir}/cmake/clang
1255
1256%files -n clang-doc
1257%defattr(644,root,root,755)
1258%doc tools/clang/docs/*.{html,png,txt}
1259
1260%if %{with apidocs}
1261%files -n clang-apidocs
1262%defattr(644,root,root,755)
1263%doc clang-apidoc/*
1264%endif
1265
d997b14b 1266%files -n clang-analyzer
bc88141a 1267%defattr(644,root,root,755)
e25801fb
JB
1268%dir %{_libexecdir}/clang-analyzer
1269# perl tools
1270%attr(755,root,root) %{_bindir}/scan-build
1271%attr(755,root,root) %{_libexecdir}/clang-analyzer/c++-analyzer
1272%attr(755,root,root) %{_libexecdir}/clang-analyzer/ccc-analyzer
1273%{_datadir}/scan-build
1274%{_mandir}/man1/scan-build.1*
1275# python tools
8d52ede4
JP
1276%attr(755,root,root) %{_bindir}/analyze-build
1277%attr(755,root,root) %{_bindir}/intercept-build
8d52ede4 1278%attr(755,root,root) %{_bindir}/scan-build-py
d997b14b 1279%attr(755,root,root) %{_bindir}/scan-view
e25801fb
JB
1280%attr(755,root,root) %{_libexecdir}/clang-analyzer/analyze-c++
1281%attr(755,root,root) %{_libexecdir}/clang-analyzer/analyze-cc
1282%attr(755,root,root) %{_libexecdir}/clang-analyzer/intercept-c++
1283%attr(755,root,root) %{_libexecdir}/clang-analyzer/intercept-cc
8c2b8be4
JP
1284%{_prefix}/%{_lib}/libear
1285%{_prefix}/%{_lib}/libscanbuild
634a3e5b 1286%{_datadir}/scan-view
8132e62b 1287
b0068ae4
JB
1288%files -n clang-tools-extra
1289%defattr(644,root,root,755)
9ace1f65 1290%doc tools/clang/tools/extra/{CODE_OWNERS.TXT,README.txt}
b0068ae4 1291%attr(755,root,root) %{_bindir}/clang-apply-replacements
5013c7ea 1292%attr(755,root,root) %{_bindir}/clang-change-namespace
0bc9c5c9 1293%attr(755,root,root) %{_bindir}/clang-extdef-mapping
8c2b8be4 1294%attr(755,root,root) %{_bindir}/clang-include-cleaner
03073220 1295%attr(755,root,root) %{_bindir}/clang-include-fixer
ef49a424 1296%attr(755,root,root) %{_bindir}/clang-move
b883cf1e 1297%attr(755,root,root) %{_bindir}/clang-query
23ae6496 1298%attr(755,root,root) %{_bindir}/clang-refactor
4ba3b2b3 1299%attr(755,root,root) %{_bindir}/clang-rename
5013c7ea 1300%attr(755,root,root) %{_bindir}/clang-reorder-fields
d1e2ca8d 1301%attr(755,root,root) %{_bindir}/clang-scan-deps
b0068ae4 1302%attr(755,root,root) %{_bindir}/clang-tidy
265e167c 1303%attr(755,root,root) %{_bindir}/clangd
8f8cf7a8 1304%attr(755,root,root) %{_bindir}/diagtool
03073220 1305%attr(755,root,root) %{_bindir}/find-all-symbols
8f8cf7a8 1306%attr(755,root,root) %{_bindir}/hmaptool
d706a70d 1307%attr(755,root,root) %{_bindir}/modularize
b0068ae4 1308%attr(755,root,root) %{_bindir}/pp-trace
8d52ede4 1309%attr(755,root,root) %{_bindir}/run-clang-tidy
03073220 1310%{_datadir}/clang/clang-include-fixer.py
d706a70d 1311%{_datadir}/clang/clang-tidy-diff.py
03073220 1312%{_datadir}/clang/run-find-all-symbols.py
b0068ae4 1313
d13e7dd0
JB
1314%files -n bash-completion-clang
1315%defattr(644,root,root,755)
1316%{bash_compdir}/clang
1317
d27b2b77
JB
1318%if %{with flang}
1319%files -n flang
1320%defattr(644,root,root,755)
1321%doc tools/flang/{LICENSE.TXT,README.md}
07f61ae5 1322%attr(755,root,root) %{_bindir}/bbc
d27b2b77
JB
1323%attr(755,root,root) %{_bindir}/f18-parse-demo
1324%attr(755,root,root) %{_bindir}/fir-opt
07f61ae5
JB
1325%attr(755,root,root) %{_bindir}/flang-new
1326%attr(755,root,root) %{_bindir}/flang-to-external-fc
d27b2b77
JB
1327%attr(755,root,root) %{_bindir}/tco
1328%dir %{_includedir}/flang
1329%{_includedir}/flang/Version.inc
1330%{_includedir}/flang/__fortran_*.mod
1331%{_includedir}/flang/ieee_*.mod
1332%{_includedir}/flang/iso_*.mod
1333%{_includedir}/flang/omp_lib*.mod
1334
1335%files -n flang-devel
1336%defattr(644,root,root,755)
07f61ae5
JB
1337%{_libdir}/libFIR*.a
1338%{_libdir}/libHLFIR*.a
d27b2b77 1339%{_libdir}/libFortran*.a
07f61ae5 1340%{_libdir}/libflangFrontend*.a
d27b2b77
JB
1341%{_includedir}/flang/Common
1342%{_includedir}/flang/Decimal
1343%{_includedir}/flang/Evaluate
1344%{_includedir}/flang/Frontend
1345%{_includedir}/flang/FrontendTool
1346%{_includedir}/flang/Lower
1347%{_includedir}/flang/Optimizer
1348%{_includedir}/flang/Parser
07f61ae5 1349%{_includedir}/flang/Runtime
d27b2b77 1350%{_includedir}/flang/Semantics
07f61ae5 1351%{_includedir}/flang/Tools
d27b2b77
JB
1352%{_includedir}/flang/ISO_Fortran_binding.h
1353%{_libdir}/cmake/flang
1354%endif
1355
ba1cf74d
JB
1356%files -n lld
1357%defattr(644,root,root,755)
1358%doc tools/lld/{LICENSE.TXT,README.md}
d706a70d 1359%attr(755,root,root) %{_bindir}/ld.lld
23ae6496 1360%attr(755,root,root) %{_bindir}/ld64.lld
ba1cf74d 1361%attr(755,root,root) %{_bindir}/lld
d706a70d 1362%attr(755,root,root) %{_bindir}/lld-link
d7447383 1363%attr(755,root,root) %{_bindir}/wasm-ld
ba1cf74d
JB
1364
1365%files -n lld-devel
1366%defattr(644,root,root,755)
d7447383 1367%{_libdir}/liblld[ACDEHMRWXY]*.a
ba1cf74d 1368%{_includedir}/lld
f784323b 1369%{_libdir}/cmake/lld
ba1cf74d 1370
5a7ac479
JB
1371%if %{with lldb}
1372%files -n lldb
1373%defattr(644,root,root,755)
1374%attr(755,root,root) %{_bindir}/lldb
4522eb9a 1375%attr(755,root,root) %{_bindir}/lldb-argdumper
d1e2ca8d 1376%attr(755,root,root) %{_bindir}/lldb-instr
6df3b432 1377%attr(755,root,root) %{_bindir}/lldb-server
0bc9c5c9 1378%attr(755,root,root) %{_bindir}/lldb-vscode
6df3b432 1379%attr(755,root,root) %{_libdir}/liblldb.so.%{version}
64ff6369
JP
1380%attr(755,root,root) %ghost %{_libdir}/liblldb.so.17
1381%attr(755,root,root) %ghost %{_libdir}/liblldbIntelFeatures.so.17
40bef2a3
JP
1382%dir %{py3_sitedir}/lldb
1383%attr(755,root,root) %{py3_sitedir}/lldb/lldb-argdumper
1384%{py3_sitedir}/lldb/formatters
1385%{py3_sitedir}/lldb/utils
1386%{py3_sitedir}/lldb/__init__.py
1387%{py3_sitedir}/lldb/__pycache__
1388%{py3_sitedir}/lldb/embedded_interpreter.py
8d52ede4
JP
1389%dir %{py3_sitedir}/lldb/plugins
1390%{py3_sitedir}/lldb/plugins/__pycache__
1391%{py3_sitedir}/lldb/plugins/__init__.py
8c2b8be4 1392%{py3_sitedir}/lldb/plugins/scripted_platform.py
8d52ede4 1393%{py3_sitedir}/lldb/plugins/scripted_process.py
93b7b046 1394%attr(755,root,root) %{py3_sitedir}/lldb/_lldb.cpython-*.so
5a7ac479
JB
1395
1396%files -n lldb-devel
1397%defattr(644,root,root,755)
6df3b432 1398%attr(755,root,root) %{_libdir}/liblldb.so
23ae6496 1399%attr(755,root,root) %{_libdir}/liblldbIntelFeatures.so
5a7ac479
JB
1400%{_includedir}/lldb
1401%endif
1402
9556f4c9 1403%if %{with ocaml}
d997b14b
AM
1404%files ocaml
1405%defattr(644,root,root,755)
265e167c 1406%attr(755,root,root) %{_libdir}/ocaml/stublibs/dllllvm*.so
5013c7ea 1407%dir %{_libdir}/ocaml/llvm
5013c7ea
JB
1408%{_libdir}/ocaml/llvm/llvm*.cma
1409%{_libdir}/ocaml/llvm/llvm*.cmi
11b6f380 1410%{_libdir}/ocaml/META.llvm*
d997b14b
AM
1411
1412%files ocaml-devel
1413%defattr(644,root,root,755)
5013c7ea
JB
1414%{_libdir}/ocaml/llvm/libllvm*.a
1415%{_libdir}/ocaml/llvm/llvm*.a
90b20139
JP
1416%{_libdir}/ocaml/llvm/llvm*.cmt
1417%{_libdir}/ocaml/llvm/llvm*.cmti
5013c7ea
JB
1418%{_libdir}/ocaml/llvm/llvm*.cmx
1419%{_libdir}/ocaml/llvm/llvm*.cmxa
1420%{_libdir}/ocaml/llvm/llvm*.mli
9556f4c9
ER
1421
1422%files ocaml-doc
1423%defattr(644,root,root,755)
6df3b432 1424%doc ocamldocs/*
9556f4c9 1425%endif
d7447383
JR
1426
1427%files opt-viewer
1428%defattr(644,root,root,755)
1429%{_datadir}/opt-viewer
1430
1431%files -n vim-plugin-clang
1432%defattr(644,root,root,755)
1433%{_datadir}/clang/clang-format.py
1434%{_datadir}/clang/clang-rename.py
This page took 1.081505 seconds and 4 git commands to generate.