-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllvm.spec
More file actions
1442 lines (1285 loc) · 47.8 KB
/
llvm.spec
File metadata and controls
1442 lines (1285 loc) · 47.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# NOTE:
# - normal build (x86_64) requires about 80 GB of disk space
#
# TODO:
# - move and package:
# %{_datadir}/clang/clang-format-sublime.py - sublime plugin
# %{_datadir}/clang/clang-format.el - clang tools emacs integration
# %{_datadir}/clang/clang-include-fixer.el
# %{_datadir}/clang/clang-rename.el
# - system isl in polly?
# - figure out whether we need obj.MLIRCAPIIR files
# - cmake dependencies mess (LLVMExports.cmake appears to require all -devels):
# with llvm-devel and spirv-tools-devel installed but without llvm-mlir (or other packages):
# $ cat CMakeLists.txt
# find_package(LLVM)
# find_package(SPIRV-Tools)
# $ cmake -B build
# ...
# The imported target "mlir-tblgen" references the file
#
# "/usr/bin/mlir-tblgen"
#
# but this file does not exist. Possible reasons include:
# ...
#
# Conditional build:
%bcond_without lldb # LLDB debugger
%bcond_without mlir # MLIR libraries and tools (required for Flang)
%bcond_with flang # Flang (Fortran18) compiler (heavy memory requirements during build)
%bcond_without polly # Polly cache-locality optimization, auto-parallelism and vectorization
%bcond_without rt # compiler-rt libraries
%bcond_without multilib # compiler-rt multilib libraries
%bcond_without ocaml # OCaml binding
%bcond_without z3 # Z3 constraint solver support in Clang Static Analyzer
%bcond_without doc # HTML docs and man pages
%bcond_without target_aarch64 # AArch64 target support
%bcond_without target_amdgpu # AMDGPU target support
%bcond_without target_arm # ARM target support
%bcond_without target_avr # AVR target support
%bcond_without target_bpf # BPF target support
%bcond_without target_hexagon # Hexagon target support
%bcond_without target_lanai # Lanai target support
%bcond_without target_loongarch # LoongArch target support
%bcond_without target_mips # Mips target support
%bcond_without target_msp430 # MSP430 target support
%bcond_without target_nvptx # NVPTX target support
%bcond_without target_powerpc # PowerPC target support
%bcond_without target_riscv # RISCV target support
%bcond_without target_sparc # Sparc target support
%bcond_without target_spirv # SPIR-V target support
%bcond_without target_systemz # SystemZ target support
%bcond_without target_ve # VE target support
%bcond_without target_webassembly # WebAssembly target support
%bcond_without target_x86 # X86 target support
%bcond_without target_xcore # XCore target support
%bcond_with cxxmodules # C++20 modules (requires support in bootstrap compiler)
%bcond_with apidocs # doxygen docs (HUGE, so they are not built by default)
%bcond_with tests # run tests
%bcond_with lowmem # lower memory requirements
# No ocaml on other arches or no native ocaml (required for ocaml-ctypes)
%ifnarch %{ix86} %{x8664} %{arm} aarch64 ppc sparc sparcv9
%undefine with_ocaml
%endif
%ifarch armv3l %{armv4} %{armv5} %{armv6}
%undefine with_rt
%endif
%ifarch i386 i486 armv3l %{armv4} %{armv5} %{armv6}
%define with_libatomic 1
%endif
%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_spirv:SPIRV;}%{?with_target_systemz:SystemZ;}%{?with_target_ve:VE;}%{?with_target_webassembly:WebAssembly;}%{?with_target_x86:X86;}%{?with_target_xcore:XCore;}
%if %{without mlir}
%undefine with_flang
%endif
Summary: The Low Level Virtual Machine (An Optimizing Compiler Infrastructure)
Summary(pl.UTF-8): Niskopoziomowa maszyna wirtualna (infrastruktura kompilatora optymalizującego)
Name: llvm
Version: 22.1.3
Release: 3
License: Apache 2.0 with LLVM exceptions
Group: Development/Languages
#Source0Download: https://github.com/llvm/llvm-project/releases/
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{name}-project-%{version}.src.tar.xz
# Source0-md5: 1b8f0fdca6f49e323702ed7d4da0feae
Patch1: %{name}-pld.patch
Patch2: %{name}-ocaml-link-dylib.patch
Patch3: x32-gcc-toolchain.patch
Patch5: %{name}-ocaml-shared.patch
Patch7: llvm12-build_fixes.patch
Patch8: %{name}-selective_bindings.patch
Patch9: %{name}-libexecdir.patch
Patch10: compiler-rt-paths.patch
Patch11: cmake-utils-path-override.patch
Patch12: x32-compiler-rt.patch
Patch14: compiler-rt-nsan-redefine-builtins.patch
Patch15: lua-libdir.patch
URL: https://llvm.org/
BuildRequires: bash
BuildRequires: binutils-devel
BuildRequires: bison
BuildRequires: cmake >= 3.20.0
BuildRequires: flex
BuildRequires: groff
%{?with_libatomic:BuildRequires: libatomic-devel}
BuildRequires: libedit-devel
BuildRequires: libltdl-devel
BuildRequires: libpfm-devel
BuildRequires: libstdc++-devel >= 6:5
BuildRequires: libxml2-devel >= 2
BuildRequires: ncurses-devel
%if %{with ocaml}
BuildRequires: ocaml >= 4.00.0
BuildRequires: ocaml-ctypes-devel >= 0.4
BuildRequires: ocaml-findlib
BuildRequires: ocaml-ocamldoc
%{?with_tests:BuildRequires: ocaml-ounit >= 2}
%endif
BuildRequires: perl-base >= 1:5.6
BuildRequires: perl-tools-pod
BuildRequires: python3 >= 1:3
BuildRequires: python3-PyYAML
BuildRequires: python3-modules
%{?with_doc:BuildRequires: python3-myst_parser}
BuildRequires: python3-pygments >= 2.0
BuildRequires: rpm-build >= 4.6
BuildRequires: rpm-pythonprov
BuildRequires: rpmbuild(macros) >= 2.007
%{?with_doc:BuildRequires: sphinx-pdg}
BuildRequires: tar >= 1:1.22
BuildRequires: xar-devel >= 1.6
BuildRequires: xz
%{?with_z3:BuildRequires: z3-devel >= 4.8.9}
BuildRequires: zlib-devel
BuildRequires: zstd-devel
%if %{with apidocs}
BuildRequires: doxygen
BuildRequires: graphviz
%endif
%if %{with tests}
BuildRequires: dejagnu
BuildRequires: tcl-devel
%endif
%if %{with rt} && %{with multilib}
%ifarch %{x8664}
BuildRequires: gcc-c++-multilib-32
BuildRequires: glibc-devel(ix86)
BuildRequires: libstdc++-multilib-32-devel
BuildRequires: libunwind-devel(x86-32)
%endif
%ifarch x32
BuildRequires: gcc-c++-multilib-32
BuildRequires: gcc-c++-multilib-64
BuildRequires: glibc-devel(ix86)
BuildRequires: glibc-devel(x86_64)
BuildRequires: libstdc++-multilib-32-devel
BuildRequires: libstdc++-multilib-64-devel
BuildRequires: libunwind-devel(x86-32)
BuildRequires: libunwind-devel(x86-64)
%endif
%endif
%if %{with lldb}
BuildRequires: epydoc
BuildRequires: libxml2-devel >= 2
BuildRequires: lua-devel
BuildRequires: ncurses-ext-devel
BuildRequires: python3-devel >= 1:3.2
%{?with_doc:BuildRequires: python3-recommonmark}
BuildRequires: swig-python >= 3.0.11
BuildRequires: xz-devel
%endif
%if %{with polly}
#BuildRequires: gmp-devel or imath-devel (private copy in polly/lib/External/isl/imath)
# private copy in polly/lib/External/isl
#BuildRequires: isl-devel >= 0.22.1
#TODO (bcond): cuda-devel (with POLLY_ENABLE_GPGPU_CODEGEN=ON)
%{?with_target_nvptx:BuildRequires: ocl-icd-libOpenCL-devel}
%endif
%if %{with ocaml}
BuildConflicts: llvm-ocaml
%endif
Requires: %{name}-libs = %{version}-%{release}
# LLVM is not supported on PPC64
# http://llvm.org/bugs/show_bug.cgi?id=3729
ExcludeArch: ppc64
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%define abi 22.1
%define _sysconfdir /etc/%{name}
%define specflags_ppc -fno-var-tracking-assignments
# objcopy: BFD (GNU Binutils) 2.32 assertion fail format.c:459
# objcopy: error: .../libLLVM-8.so(.debug_gnu_pubtypes) is too large (0x1ceee347 bytes)
# objcopy: .../libLLVM-8.so[.debug_gnu_pubtypes]: memory exhausted
%ifarch %{ix86} x32
%define _enable_debug_packages 0
%endif
# ix86 and x32 - the same issue as https://llvm.org/bugs/show_bug.cgi?id=27237
# use -gsplit-dwarf only when building packages with debuginfo
# to avoid excessive disk space usage
%if 0%{?_enable_debug_packages}
%define specflags -gsplit-dwarf
%endif
# strip corrupts: $RPM_BUILD_ROOT/usr/lib64/llvm-gcc/bin/llvm-c++ ...
%define _noautostrip .*/\\(libmud.*\\.a\\|bin/llvm-.*\\|lib.*++\\.a\\)
# clang doesn't know -fvar-tracking-assignments, and leaving it here would pollute llvm-config
# -Werror=format-security is for swig
# TODO: add - -Werror=format-security to tools/lldb/scripts/LLDBWrapPython.cpp
%define filterout_c -fvar-tracking-assignments
%define filterout_cxx -fvar-tracking-assignments -Werror=format-security
%define filterout_ccpp -fvar-tracking-assignments
%description
LLVM is a compiler infrastructure designed for compile-time,
link-time, runtime, and idle-time optimization of programs from
arbitrary programming languages. LLVM is written in C++ and has been
developed since 2000 at the University of Illinois and Apple. It
currently supports compilation of C and C++ programs using clang
frontend.
%description -l pl.UTF-8
LLVM to infrastruktura kompilatora zaprojektowana do optymalizacji
czasu kompilowania, linkowania, działania i bezczynności programów w
dowolnych językach programowania. Jest napisana w C++, rozwijana od
roku 2000 przez Uniwersytet w Illinois i Apple. Aktualnie obsługuje
kompilację programów w C i C++ przy użyciu frontendu clang.
%package libs
Summary: LLVM shared libraries
Summary(pl.UTF-8): Biblioteki współdzielone LLVM-a
Group: Libraries
Conflicts: llvm < 3.2
%description libs
LLVM shared libraries.
%description libs -l pl.UTF-8
Biblioteki współdzielone LLVM-a.
%package devel
Summary: Static libraries and header files for LLVM
Summary(pl.UTF-8): Biblioteki statyczne i pliki nagłówkowe dla LLVM-a
Group: Development/Languages
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%{?with_libatomic:Requires: libatomic-devel}
Requires: libstdc++-devel >= 6:3.4
Requires: ncurses-devel
%{?with_z3:Requires: z3-devel >= 4.8.9}
Requires: zlib-devel
Requires: zstd-devel
%description devel
This package contains static libraries and header files needed to
develop new native programs that use the LLVM infrastructure.
%description devel -l pl.UTF-8
Ten pakiet zawiera biblioteki statyczne oraz pliki nagłówkowe
potrzebne do tworzenia nowych programów natywnych wykorzystujących
infrastrukturę LLVM.
%package apidocs
Summary: API documentation for LLVM
Summary(pl.UTF-8): Dokumentacja API LLVM-a
Group: Development/Languages
Requires: %{name}-doc = %{version}-%{release}
BuildArch: noarch
%description apidocs
API documentation for the LLVM compiler infrastructure.
%description apidocs -l pl.UTF-8
Dokumentacja API infrastruktury kompilatorów LLVM.
%package mlir
Summary: LLVM Multi-Level Intermediate Representation libraries and tools
Summary(pl.UTF-8): Biblioteki i narzędzia wielopoziomowej reprezentacji pośredniej LLVM
Group: Development/Tools
URL: https://mlir.llvm.org/
Requires: %{name} = %{version}-%{release}
%description mlir
LLVM Multi-Level Intermediate Representation libraries and tools.
%description mlir -l pl.UTF-8
Biblioteki i narzędzia wielopoziomowej reprezentacji pośredniej LLVM.
%package mlir-devel
Summary: LLVM Multi-Level Intermediate Representation development files
Summary(pl.UTF-8): Pliki do programowania z użyciem wielopoziomowej reprezentacji pośredniej LLVM
Group: Development/Tools
URL: https://mlir.llvm.org/
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Requires: %{name}-mlir%{?_isa} = %{version}-%{release}
%description mlir-devel
LLVM Multi-Level Intermediate Representation development files.
%description mlir-devel -l pl.UTF-8
Pliki do programowania z użyciem wielopoziomowej reprezentacji
pośredniej LLVM.
%package polly
Summary: Polyhedral optimizations for LLVM
Summary(pl.UTF-8): Optymalizacje wielościanowe dla LLVM-a
Group: Development/Tools
URL: https://polly.llvm.org/
Requires: %{name} = %{version}-%{release}
%description polly
Polly is a high-level loop and data-locality optimizer and
optimization infrastructure for LLVM. It uses an abstract mathematical
representation based on integer polyhedra to analyze and optimize the
memory access pattern of a program.
%description polly -l pl.UTF-8
Polly to wysokopoziomowy optymalizator i infrastruktura LLVM-a do
optymalizacji pętli i położenia danych. Wykorzystuje abstrakcyjną
reprezentację matematyczną opartą na wielościanach całkowitoliczbowych
do analizy i optymalizacji wzorców dostępu do pamięci przez program.
%package polly-devel
Summary: Header files for LLVM Polly optimization infrastructure
Summary(pl.UTF-8): Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly
Group: Development/Libraries
URL: https://polly.llvm.org/
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Requires: %{name}-polly%{?_isa} = %{version}-%{release}
%description polly-devel
Header files for LLVM Polly optimization infrastructure.
%description polly-devel -l pl.UTF-8
Pliki nagłówkowe infrastruktury optymalizacji LLVM-a Polly.
%package -n clang
Summary: A C language family frontend for LLVM
Summary(pl.UTF-8): Frontend LLVM-a do języków z rodziny C
Group: Development/Languages
URL: https://clang.llvm.org/
Requires: %{name} = %{version}-%{release}
Requires: clang-libs = %{version}-%{release}
%description -n clang
clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
of a crane or goose. 3. C-language family front-end toolkit.
The goal of the Clang project is to create a new C, C++, Objective C
and Objective C++ front-end for the LLVM compiler. Its tools are built
as libraries and designed to be loosely-coupled and extendable.
%description -n clang -l pl.UTF-8
clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
z rodziny C.
Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
i rozszerzaniu.
%package -n clang-multilib
Summary: A C language family frontend for LLVM - 32-bit support
Summary(pl.UTF-8): Frontend LLVM-a do języków z rodziny C - obsługa binariów 32-bitowych
Group: Development/Languages
URL: https://clang.llvm.org/
Requires: clang = %{version}-%{release}
%description -n clang-multilib
clang: noun 1. A loud, resonant, metallic sound. 2. The strident call
of a crane or goose. 3. C-language family front-end toolkit.
The goal of the Clang project is to create a new C, C++, Objective C
and Objective C++ front-end for the LLVM compiler. Its tools are built
as libraries and designed to be loosely-coupled and extendable.
This package contains the C compiler support for producing 32-bit
programs on 64-bit host.
%description -n clang-multilib -l pl.UTF-8
clang (z angielskiego): 1. głośny, rezonujący, metaliczny dźwięk; 2.
piskliwy odgłos żurawia lub gęsi; 3. narzędzia frontendowe dla języków
z rodziny C.
Celem projektu Clang jest utworzenie nowego frontendu dla kompilatora
LLVM do języków C, C++, Objective C i Objective C++. Narzędzia są
budowane jako biblioteki i zaprojektowane z myślą o swobodnym łączeniu
i rozszerzaniu.
Ten pakiet zawiera rozszerzenie kompilatora C o obsługę tworzenia
programów 32-bitowych na maszynie 64-bitowej.
%package -n clang-libs
Summary: Clang shared libraries
Summary(pl.UTF-8): Biblioteki współdzielone Clanga
Group: Libraries
URL: https://clang.llvm.org/
%description -n clang-libs
Clang shared libraries.
%description -n clang-libs -l pl.UTF-8
Biblioteki współdzielone Clanga.
%package -n clang-devel
Summary: Header files for Clang
Summary(pl.UTF-8): Pliki nagłówkowe Clanga
Group: Development/Languages
URL: https://clang.llvm.org/
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Requires: clang-libs%{?_isa} = %{version}-%{release}
%{?with_polly:Requires: llvm-polly-devel = %{version}-%{release}}
%description -n clang-devel
This package contains header files for the Clang compiler.
%description -n clang-devel -l pl.UTF-8
Ten pakiet zawiera pliki nagłówkowe kompilatora Clang.
%package -n clang-doc
Summary: Documentation for Clang
Summary(pl.UTF-8): Dokumentacja do Clanga
URL: https://clang.llvm.org/
Group: Documentation
Requires: %{name} = %{version}-%{release}
BuildArch: noarch
%description -n clang-doc
Documentation for the Clang compiler front-end.
%description -n clang-doc -l pl.UTF-8
Dokumentacja do frontendu kompilatora Clang.
%package -n clang-apidocs
Summary: API documentation for Clang
Summary(pl.UTF-8): Dokumentacja API Clanga
URL: https://clang.llvm.org/
Group: Development/Languages
Requires: clang-doc = %{version}-%{release}
BuildArch: noarch
%description -n clang-apidocs
API documentation for the Clang compiler.
%description -n clang-apidocs -l pl.UTF-8
Dokumentacja API kompilatora Clang.
%package -n clang-analyzer
Summary: A source code analysis framework
Summary(pl.UTF-8): Szkielet do analizy kodu źródłowego
Group: Development/Languages
URL: https://clang-analyzer.llvm.org/
Requires: clang = %{version}-%{release}
# not picked up automatically since files are currently not instaled
# in standard Python hierarchies yet
Requires: python3
%description -n clang-analyzer
The Clang Static Analyzer consists of both a source code analysis
framework and a standalone tool that finds bugs in C and Objective-C
programs. The standalone tool is invoked from the command-line, and is
intended to run in tandem with a build of a project or code base.
%description -n clang-analyzer -l pl.UTF-8
Clang Static Analyzer składa się ze szkieletu do analizy kodu
źródłowego oraz samodzielnego narzędzia znajdującego błędy w
programach w C i C++. Narzędzie jest wywoływane z linii poleceń, z
myślą o uruchamianiu wraz z kompilacją projektu lub kodu.
%package -n clang-tools-extra
Summary: Extra tools for Clang
Summary(pl.UTF-8): Dodatkowe narzędzia do kompilatora Clang
Group: Development/Tools
URL: https://clang.llvm.org/docs/ClangTools.html
Requires: clang = %{version}-%{release}
%description -n clang-tools-extra
Extra tools for Clang.
%description -n clang-tools-extra -l pl.UTF-8
Dodatkowe narzędzia do kompilatora Clang.
%package -n bash-completion-clang
Summary: Bash completion for clang command
Summary(pl.UTF-8): Bashowe dopełnianie składni polecenia clang
Group: Applications/Shells
Requires: bash-completion >= 1:2.0
Requires: clang = %{version}-%{release}
BuildArch: noarch
%description -n bash-completion-clang
Bash completion for clang command.
%description -n bash-completion-clang -l pl.UTF-8
Bashowe dopełnianie składni polecenia clang.
%package -n flang
Summary: Fortran frontend for LLVM
Summary(pl.UTF-8): Frontend LLVM-a do Fortranu
Group: Development/Languages
URL: http://flang.llvm.org/
Requires: %{name}-mlir = %{version}-%{release}
%description -n flang
Flang is a ground-up implementation of a Fortran front end written in
modern C++.
%description -n flang -l pl.UTF-8
Flang to napisana od podstaw we współczesnym C++ implementacja
frontendu do Fortranu.
%package -n flang-devel
Summary: Fortran frontend for LLVM - development files
Summary(pl.UTF-8): Frontend LLVM-a do Fortranu - pliki programistyczne
Group: Development/Languages
URL: http://flang.llvm.org/
Requires: %{name}-mlir-devel%{?_isa} = %{version}-%{release}
Requires: flang%{?_isa} = %{version}-%{release}
%description -n flang-devel
Development files for LLVM Fortran frontend.
%description -n flang-devel -l pl.UTF-8
Pliki prosramistyczne frontendu LLVM do Fortranu.
%package -n lld
Summary: The LLVM linker
Summary(pl.UTF-8): Konsolidator z projektu LLVM
Group: Development/Libraries
URL: https://lld.llvm.org/
Requires: %{name} = %{version}-%{release}
%description -n lld
lld is a new set of modular code for creating linker tools.
%description -n lld -l pl.UTF-8
lld to nowy zbiór modularnego kodu do tworzenia narzędzi
konsolidujących.
%package -n lld-devel
Summary: Development files for LLD linker tools
Summary(pl.UTF-8): Pliki programistyczne narzędzi konsolidujących LLD
Group: Development/Tools
URL: https://lld.llvm.org/
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Requires: xar-devel >= 1.6
%description -n lld-devel
Development files for LLD linker tools.
%description -n lld-devel -l pl.UTF-8
Pliki programistyczne narzędzi konsolidujących LLD.
%package -n lldb
Summary: Next generation high-performance debugger
Summary(pl.UTF-8): Wydajny debugger nowej generacji
Group: Development/Debuggers
URL: https://lldb.llvm.org/
Requires: %{name} = %{version}-%{release}
Requires: python3-six
%description -n lldb
LLDB is a next generation, high-performance debugger. It is built as a
set of reusable components which highly leverage existing libraries in
the larger LLVM Project, such as the Clang expression parser and LLVM
disassembler.
%description -n lldb -l pl.UTF-8
LLDB to wydajny debugger nowej generacji. Jest zbudowany w oparciu o
komponenty wielokrotnego użytku, wykorzystujące istniejące biblioteki
w projekcie LLVM, takie jak analizator wyrażeń kompilatora Clang oraz
disasembler LLVM.
%package -n lldb-devel
Summary: Development files for LLDB debugger
Summary(pl.UTF-8): Pliki programistyczne debuggera LLDB
Group: Development/Libraries
URL: https://lldb.llvm.org/
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Requires: clang-devel%{?_isa} = %{version}-%{release}
Requires: lldb%{?_isa} = %{version}-%{release}
%description -n lldb-devel
Development files for LLDB debugger.
%description -n lldb-devel -l pl.UTF-8
Pliki programistyczne debuggera LLDB.
%package ocaml
Summary: OCaml binding for LLVM
Summary(pl.UTF-8): Wiązanie OCamla do LLVM-a
Group: Libraries
Requires: %{name} = %{version}-%{release}
%if %{with ocaml}
%requires_eq ocaml-runtime
%endif
%description ocaml
OCaml binding for LLVM.
%description ocaml -l pl.UTF-8
Wiązanie OCamla do LLVM-a.
%package ocaml-devel
Summary: Development files for LLVM OCaml binding
Summary(pl.UTF-8): Pliki programistyczne wiązania OCamla do LLVM-a
Group: Development/Libraries
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Requires: %{name}-ocaml%{?_isa} = %{version}-%{release}
%description ocaml-devel
The llvm-ocaml-devel package contains libraries and signature files
for developing applications that use llvm-ocaml binding.
%description ocaml-devel -l pl.UTF-8
Ten pakiet zawiera biblioteki i pliki sygnatur do tworzenia aplikacji
wykorzystujących wiązanie llvm-ocaml.
%package ocaml-doc
Summary: Documentation for LLVM's OCaml binding
Summary(pl.UTF-8): Dokumentacja wiązania OCamla do LLVM-a
Group: Documentation
Requires: %{name}-ocaml = %{version}-%{release}
BuildArch: noarch
%description ocaml-doc
HTML documentation for LLVM's OCaml binding.
%description ocaml-doc -l pl.UTF-8
Dokumentacja HTML wiązania OCamla do LLVM-a.
%package opt-viewer
Summary: Optimization records visualization tools
Summary(pl.UTF-8): Narzędzia do wizualizacji rekordów optymalizacji
Group: Development/Tools
Requires: %{name} = %{version}
BuildArch: noarch
%description opt-viewer
Optimization records visualization tools.
%description opt-viewer -l pl.UTF-8
Narzędzia do wizualizacji rekordów optymalizacji.
%package -n vim-plugin-clang
Summary: Clang format and rename integration for Vim
Summary(pl.UTF-8): Integracja narzędzi Clang do formatowania i zmiany nazw z Vimem
Group: Applications/Editors/Vim
Requires: vim-rt >= 4:7.0
BuildArch: noarch
%description -n vim-plugin-clang
Clang format and rename integration for Vim.
%description -n vim-plugin-clang -l pl.UTF-8
Integracja narzędzi Clang do formatowania i zmiany nazw z Vimem.
%prep
%setup -q -n %{name}-project-%{version}.src
%patch -P 1 -p1
%patch -P 2 -p1
%patch -P 3 -p1
%patch -P 5 -p1
%patch -P 7 -p1
%patch -P 8 -p1
%patch -P 9 -p1
%if %{with rt}
%patch -P 10 -p1
%patch -P 12 -p1
%endif
%patch -P 11 -p1
%if %{with rt}
%patch -P 14 -p1
%endif
%patch -P 15 -p1
grep -rl /usr/bin/env clang clang-tools-extra compiler-rt flang lld lldb llvm mlir polly | xargs sed -i -e '1{
s,^#!.*bin/env python3\?,#!%{__python3},
s,^#!.*bin/env perl,#!%{__perl},
}'
find -name '*.py' -print0 | xargs -0 sed -i -e '1{
s,^#!.*bin/python.*,#!%{__python3},
}'
%if %{with flang}
%{__sed} -i -e '1s,/usr/bin/env bash,/bin/bash,' flang/tools/f18/flang-to-external-fc.in
%endif
%build
install -d build
# Disabling assertions now, rec. by pure and needed for OpenGTL
# TESTFIX no PIC on ix86: http://llvm.org/bugs/show_bug.cgi?id=3801
cd build
CPPFLAGS="%{rpmcppflags} -D_FILE_OFFSET_BITS=64"
%if %{with lowmem}
export CFLAGS="%{rpmcflags} -DNDEBUG -g0 --param ggc-min-expand=20 --param ggc-min-heapsize=65536"
export CXXFLAGS="%{rpmcxxflags} -DNDEBUG -g0 --param ggc-min-expand=20 --param ggc-min-heapsize=65536"
if echo 'int main(){}' | %{__cc} -x c %{rpmldflags} -Wl,--reduce-memory-overheads -o /dev/null - > /dev/null 2>&1; then
export LDFLAGS="%{rpmldflags} -Wl,--reduce-memory-overheads"
fi
%endif
%cmake ../llvm \
-DBUILD_SHARED_LIBS:BOOL=OFF \
-DENABLE_LINKER_BUILD_ID:BOOL=ON \
-DLLVM_ADDITIONAL_BUILD_TYPES=PLD \
-DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld%{?with_rt:;compiler-rt}%{?with_polly:;polly}%{?with_mlir:;mlir}%{?with_lldb:;lldb}%{?with_flang:;flang}" \
-DLLVM_BINDINGS_LIST:LIST="%{?with_ocaml:ocaml}" \
-DLLVM_BINUTILS_INCDIR:STRING=%{_includedir} \
-DLLVM_BUILD_LLVM_DYLIB:BOOL=ON \
-DLLVM_ENABLE_ASSERTIONS:BOOL=OFF \
-DLLVM_INSTALL_PACKAGE_DIR=%(realpath -m "--relative-to=%{_prefix}" "%{_libdir}/cmake/llvm") \
-DLLVM_TOOLS_INSTALL_DIR=%(realpath -m "--relative-to=%{_prefix}" "%{_bindir}") \
%if %{with apidocs}
-DLLVM_ENABLE_DOXYGEN:BOOL=ON \
%endif
%{?with_cxxmodules:-DLLVM_ENABLE_MODULES:BOOL=ON} \
-DLLVM_ENABLE_PIC:BOOL=ON \
-DLLVM_ENABLE_RTTI:BOOL=ON \
%if %{with doc}
-DLLVM_ENABLE_SPHINX:BOOL=ON \
%endif
-DLLVM_INCLUDE_BENCHMARKS:BOOL=OFF \
%{?with_z3:-DLLVM_ENABLE_Z3_SOLVER:BOOL=ON} \
%if "%{_lib}" == "lib64"
-DLLVM_LIBDIR_SUFFIX:STRING=64 \
%endif
%if "%{_lib}" == "libx32"
-DLLVM_LIBDIR_SUFFIX:STRING=x32 \
%endif
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
-DLLVM_TARGET_ARCH:STRING=%{_target_base_arch} \
-DLLVM_DEFAULT_TARGET_TRIPLE:STRING=%{_target_platform} \
%if %{with lowmem}
-DLLVM_PARALLEL_LINK_JOBS:STRING=1 \
%endif
-DLLVM_TARGETS_TO_BUILD="%{targets_to_build}" \
-DLLVM_INCLUDE_TESTS:BOOL=OFF \
%if %{with polly}
%{cmake_on_off target_nvptx POLLY_ENABLE_GPGPU_CODEGEN} \
%endif
-DSPHINX_WARNINGS_AS_ERRORS=OFF \
%if %{with rt}
-DCOMPILER_RT_INCLUDE_TESTS:BOOL=OFF \
%ifarch x32
-DCOMPILER_RT_BUILD_MEMPROF:BOOL=OFF
%endif
%endif
%{__make} \
VERBOSE=1 \
OPTIMIZE_OPTION="%{rpmcflags} %{rpmcppflags}"
%if %{with tests}
%{__make} check 2>&1 | tee llvm-testlog.txt
%{__make} -C tools/clang test 2>&1 | tee clang-testlog.txt
%endif
%if %{with doc}
%{__make} -C docs docs-llvm-html
%{__make} -C docs docs-llvm-man
%{__make} -C tools/clang/docs docs-clang-html
%{__make} -C tools/clang/docs docs-clang-man
%{__make} -C tools/lld/docs docs-lld-html
%if %{with lldb}
# workaround failed import of _lldb
cp -pnL %{_lib}/liblldb.so tools/lldb/docs/lldb/_lldb.so
%{__make} \
LD_LIBRARY_PATH=$(pwd)/%{_lib} \
-C tools/lldb/docs lldb-python-doc-package
%{__make} -C tools/lldb/docs lldb-cpp-doc
%endif
%endif
%if %{with ocaml}
%{__make} -C docs ocaml_doc
%endif
%install
rm -rf $RPM_BUILD_ROOT
%{__make} -j1 -C build install \
DESTDIR=$RPM_BUILD_ROOT
# only some .pyc files are created by make install
%py3_comp $RPM_BUILD_ROOT%{py3_sitedir}
%py3_ocomp $RPM_BUILD_ROOT%{py3_sitedir}
# Adjust static analyzer installation (see -libexecdir patch)
abs_ca_libexecdir="%{_libexecdir}/clang-analyzer"
rel_ca_libexecdir="${abs_ca_libexecdir#%{_prefix}}"
%{__sed} -i -e "s,/\.\./libexec/,/..${rel_ca_libexecdir}/," $RPM_BUILD_ROOT%{_bindir}/scan-build
%py3_comp $RPM_BUILD_ROOT%{_datadir}/scan-view
%py3_ocomp $RPM_BUILD_ROOT%{_datadir}/scan-view
# not installed by cmake buildsystem
install build/bin/pp-trace $RPM_BUILD_ROOT%{_bindir}
%if %{with doc}
cp -p build/docs/man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
# these tools are not installed
%{__rm} $RPM_BUILD_ROOT%{_mandir}/man1/{FileCheck,clang-tblgen,lldb-tblgen}.1
# make links
echo '.so llvm-ar.1' > $RPM_BUILD_ROOT%{_mandir}/man1/llvm-ranlib.1
%endif
# Move documentation back to build directory
%if %{with ocaml}
rm -rf ocamldocs
cp -a build/docs/ocamldoc/html ocamldocs
%endif
# and separate the apidoc
%if %{with apidocs}
rm -rf clang-apidoc
cp -a build/clang/docs/html clang-apidoc
%endif
# And prepare Clang documentation
rm -rf clang-docs
install -d clang-docs
for f in LICENSE.TXT NOTES.txt README.md; do
ln clang/$f clang-docs
done
install -d $RPM_BUILD_ROOT%{bash_compdir}
%{__mv} $RPM_BUILD_ROOT%{_datadir}/clang/bash-autocomplete.sh $RPM_BUILD_ROOT%{bash_compdir}/clang
%{__rm} -f $RPM_BUILD_ROOT%{_bindir}/c-index-test
# not this OS
%{__rm} $RPM_BUILD_ROOT%{_datadir}/clang/clang-format-bbedit.applescript
# it seems it is used internally by an extra clang tool
%{__rm} $RPM_BUILD_ROOT%{_libdir}/libfindAllSymbols.a
%if %{with mlir}
%{__rm} -r $RPM_BUILD_ROOT%{_libdir}/objects-PLD
%endif
# disable completeness check incompatible with split packaging
%{__sed} -i -e '/^foreach(target .*IMPORT_CHECK_TARGETS/,/^endforeach/d; /^unset(_IMPORT_CHECK_TARGETS)/d' \
$RPM_BUILD_ROOT%{_libdir}/cmake/clang/ClangTargets.cmake \
%if %{with flang}
$RPM_BUILD_ROOT%{_libdir}/cmake/flang/FlangTargets.cmake \
%endif
$RPM_BUILD_ROOT%{_libdir}/cmake/lld/LLDTargets.cmake \
$RPM_BUILD_ROOT%{_libdir}/cmake/llvm/LLVMExports.cmake \
%if %{with mlir}
$RPM_BUILD_ROOT%{_libdir}/cmake/mlir/MLIRTargets.cmake
%endif
%clean
rm -rf $RPM_BUILD_ROOT
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%post mlir -p /sbin/ldconfig
%postun mlir -p /sbin/ldconfig
%post -n clang-libs -p /sbin/ldconfig
%postun -n clang-libs -p /sbin/ldconfig
%post -n lldb -p /sbin/ldconfig
%postun -n lldb -p /sbin/ldconfig
%files
%defattr(644,root,root,755)
%doc llvm/CREDITS.TXT LICENSE.TXT llvm/README.txt %{?with_tests:llvm-testlog.txt}
%attr(755,root,root) %{_bindir}/bugpoint
%attr(755,root,root) %{_bindir}/dsymutil
%attr(755,root,root) %{_bindir}/llc
%attr(755,root,root) %{_bindir}/lli
%attr(755,root,root) %{_bindir}/llvm-addr2line
%attr(755,root,root) %{_bindir}/llvm-ar
%attr(755,root,root) %{_bindir}/llvm-as
%attr(755,root,root) %{_bindir}/llvm-bcanalyzer
%attr(755,root,root) %{_bindir}/llvm-bitcode-strip
%attr(755,root,root) %{_bindir}/llvm-c-test
%attr(755,root,root) %{_bindir}/llvm-cas
%attr(755,root,root) %{_bindir}/llvm-cat
%attr(755,root,root) %{_bindir}/llvm-cfi-verify
%attr(755,root,root) %{_bindir}/llvm-cgdata
%attr(755,root,root) %{_bindir}/llvm-cov
%attr(755,root,root) %{_bindir}/llvm-ctxprof-util
%attr(755,root,root) %{_bindir}/llvm-cvtres
%attr(755,root,root) %{_bindir}/llvm-cxxdump
%attr(755,root,root) %{_bindir}/llvm-cxxfilt
%attr(755,root,root) %{_bindir}/llvm-cxxmap
%attr(755,root,root) %{_bindir}/llvm-debuginfo-analyzer
%attr(755,root,root) %{_bindir}/llvm-debuginfod
%attr(755,root,root) %{_bindir}/llvm-debuginfod-find
%attr(755,root,root) %{_bindir}/llvm-diff
%attr(755,root,root) %{_bindir}/llvm-dis
%attr(755,root,root) %{_bindir}/llvm-dlltool
%attr(755,root,root) %{_bindir}/llvm-dwarfdump
%attr(755,root,root) %{_bindir}/llvm-dwarfutil
%attr(755,root,root) %{_bindir}/llvm-dwp
%attr(755,root,root) %{_bindir}/llvm-exegesis
%attr(755,root,root) %{_bindir}/llvm-extract
%attr(755,root,root) %{_bindir}/llvm-gsymutil
%attr(755,root,root) %{_bindir}/llvm-ifs
%attr(755,root,root) %{_bindir}/llvm-install-name-tool
%attr(755,root,root) %{_bindir}/llvm-ir2vec
%attr(755,root,root) %{_bindir}/llvm-jitlink
%attr(755,root,root) %{_bindir}/llvm-lib
%attr(755,root,root) %{_bindir}/llvm-libtool-darwin
%attr(755,root,root) %{_bindir}/llvm-link
%attr(755,root,root) %{_bindir}/llvm-lipo
%attr(755,root,root) %{_bindir}/llvm-lto
%attr(755,root,root) %{_bindir}/llvm-lto2
%attr(755,root,root) %{_bindir}/llvm-mc
%attr(755,root,root) %{_bindir}/llvm-mca
%attr(755,root,root) %{_bindir}/llvm-ml
%{_bindir}/llvm-ml64
%attr(755,root,root) %{_bindir}/llvm-modextract
%attr(755,root,root) %{_bindir}/llvm-mt
%attr(755,root,root) %{_bindir}/llvm-nm
%attr(755,root,root) %{_bindir}/llvm-objcopy
%attr(755,root,root) %{_bindir}/llvm-objdump
%attr(755,root,root) %{_bindir}/llvm-offload-binary
%attr(755,root,root) %{_bindir}/llvm-offload-wrapper
%attr(755,root,root) %{_bindir}/llvm-opt-report
%attr(755,root,root) %{_bindir}/llvm-otool
%attr(755,root,root) %{_bindir}/llvm-pdbutil
%attr(755,root,root) %{_bindir}/llvm-profdata
%attr(755,root,root) %{_bindir}/llvm-profgen
%attr(755,root,root) %{_bindir}/llvm-ranlib
%attr(755,root,root) %{_bindir}/llvm-rc
%attr(755,root,root) %{_bindir}/llvm-readelf
%attr(755,root,root) %{_bindir}/llvm-readobj
%attr(755,root,root) %{_bindir}/llvm-readtapi
%attr(755,root,root) %{_bindir}/llvm-reduce
%attr(755,root,root) %{_bindir}/llvm-remarkutil
%attr(755,root,root) %{_bindir}/llvm-rtdyld
%attr(755,root,root) %{_bindir}/llvm-sim
%attr(755,root,root) %{_bindir}/llvm-size
%attr(755,root,root) %{_bindir}/llvm-split
%attr(755,root,root) %{_bindir}/llvm-strip
%attr(755,root,root) %{_bindir}/llvm-stress
%attr(755,root,root) %{_bindir}/llvm-strings
%attr(755,root,root) %{_bindir}/llvm-symbolizer
%attr(755,root,root) %{_bindir}/llvm-tblgen
%attr(755,root,root) %{_bindir}/llvm-tli-checker
%attr(755,root,root) %{_bindir}/llvm-undname
%attr(755,root,root) %{_bindir}/llvm-windres
%attr(755,root,root) %{_bindir}/llvm-xray
%attr(755,root,root) %{_bindir}/opt
%attr(755,root,root) %{_bindir}/reduce-chunk-list
%attr(755,root,root) %{_bindir}/sancov
%attr(755,root,root) %{_bindir}/sanstats
%attr(755,root,root) %{_bindir}/tblgen-lsp-server
%attr(755,root,root) %{_bindir}/verify-uselistorder
%attr(755,root,root) %{_bindir}/yaml2macho-core
%if %{with doc}
%{_mandir}/man1/bugpoint.1*
%{_mandir}/man1/dsymutil.1*
%{_mandir}/man1/lit.1*
%{_mandir}/man1/llc.1*
%{_mandir}/man1/lli.1*
%{_mandir}/man1/llvm-addr2line.1*
%{_mandir}/man1/llvm-ar.1*
%{_mandir}/man1/llvm-as.1*
%{_mandir}/man1/llvm-bcanalyzer.1*
%{_mandir}/man1/llvm-cgdata.1*
%{_mandir}/man1/llvm-cov.1*
%{_mandir}/man1/llvm-cxxfilt.1*
%{_mandir}/man1/llvm-cxxmap.1*
%{_mandir}/man1/llvm-debuginfo-analyzer.1*
%{_mandir}/man1/llvm-diff.1*
%{_mandir}/man1/llvm-dis.1*
%{_mandir}/man1/llvm-dwarfdump.1*
%{_mandir}/man1/llvm-dwarfutil.1*
%{_mandir}/man1/llvm-exegesis.1*
%{_mandir}/man1/llvm-extract.1*
%{_mandir}/man1/llvm-ifs.1*
%{_mandir}/man1/llvm-install-name-tool.1*
%{_mandir}/man1/llvm-ir2vec.1*
%{_mandir}/man1/llvm-offload-binary.1*
%{_mandir}/man1/llvm-test-mustache-spec.1*
%{_mandir}/man1/llvm-lib.1*
%{_mandir}/man1/llvm-libtool-darwin.1*
%{_mandir}/man1/llvm-link.1*
%{_mandir}/man1/llvm-lipo.1*
%{_mandir}/man1/llvm-locstats.1*
%{_mandir}/man1/llvm-mc.1*
%{_mandir}/man1/llvm-mca.1*
%{_mandir}/man1/llvm-nm.1*
%{_mandir}/man1/llvm-objcopy.1*
%{_mandir}/man1/llvm-objdump.1*
%{_mandir}/man1/llvm-opt-report.1*
%{_mandir}/man1/llvm-otool.1*