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