mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-24 17:34:47 +00:00
eb12c13273
* %check: export LD_LIBRARY_PATH because runtimes use external cmake projects that wouldn't find libclang++.so * %check: use LLVM's LIT_XFAIL to mark tests that are expected to fail and don't just delete them * clang: bring over *.patch files * clang: remove build requires tags from clang package that are already defined by main llvm package * clang: remove duplicates found in llvm globals and use %{pkg_datadir} instead of %{install_datadir} * clang: rename and use pkg_name -> pkg_name_clang * clang: use %{pkg_name_clang} instead of %{name} * compiler-rt and libomp: wrap in %if %{without compat_build} * libomp: also build libomp for s390x (See https://github.com/llvm/llvm-project/pull/66081) * libomp: exclude libomp-devel on s390x just like libomp itself * libomp: introduce pkg_name_libomp and cleanup the globals * libomp: remove gdb-plugin (NEED TO CONFIRM IF THIS IS REALLY TRUE) * libomp: filter out flaky libomp test: ompt/teams/distribute_dispatch.c * llvm: add BuildRequires: graphviz to llvm-doc * llvm: use %{pkg_name_llvm} instead of %{name} * make: added temporary Makefile so I can more easily run srpm or rpm builds locally * make: Added local-tmt-vm target (not really useful yet) * rpm: for non-RHEL add prefix like "Jan 05 16:17:06" to every log line This should help in finding out how long things take to build/install/... * rpm: fully specify %files for top-level packages * rpm: make all packages fully qualified * rpm: obsolete llvm-snapshot-builder * rpm: remove BuildRequires: python3-lit because we have it in-tree * rpm: remove BuildRequires: tags for clang and llvm specifics as we're building in-tree * rpm: rename %llvm_srcdir -> %srcdir_llvm * rpm: rename %pkg_name -> %pkg_name_llvm * rpm: use full qualified name in %description * rpm: use region comments in spec file to group by package. This allows editors to fold text to get a better overview * rpmlint: update rc file to reflect clang and compiler-rt (libomp has no rpmlint rc file) * use python-lit from within tree
104 lines
No EOL
2.4 KiB
RPMSpec
104 lines
No EOL
2.4 KiB
RPMSpec
%include %{_sourcedir}/version.spec.inc
|
|
|
|
%include %{_sourcedir}/globals.spec.inc
|
|
|
|
Name: %{pkg_name_llvm}
|
|
Version: %{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
|
Release: 1%{?dist}
|
|
Summary: The Low Level Virtual Machine
|
|
|
|
License: Apache-2.0 WITH LLVM-exception OR NCSA
|
|
URL: http://llvm.org
|
|
|
|
%include %{_sourcedir}/sources.spec.inc
|
|
|
|
%include %{_sourcedir}/patches.spec.inc
|
|
|
|
%if %{undefined rhel}
|
|
BuildRequires: moreutils
|
|
%endif
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: clang
|
|
BuildRequires: cmake
|
|
BuildRequires: ninja-build
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: libffi-devel
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: python3-psutil
|
|
BuildRequires: python3-sphinx
|
|
%if %{undefined rhel}
|
|
BuildRequires: python3-myst-parser
|
|
%endif
|
|
# Needed for %%multilib_fix_c_header
|
|
BuildRequires: multilib-rpm-config
|
|
%if %{with gold}
|
|
BuildRequires: binutils-devel
|
|
%endif
|
|
%ifarch %{valgrind_arches}
|
|
# Enable extra functionality when run the LLVM JIT under valgrind.
|
|
BuildRequires: valgrind-devel
|
|
%endif
|
|
# LLVM's LineEditor library will use libedit if it is available.
|
|
BuildRequires: libedit-devel
|
|
# We need python3-devel for %%py3_shebang_fix
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
|
|
# For origin certification
|
|
BuildRequires: gnupg2
|
|
|
|
Requires: %{pkg_name_llvm}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
Provides: llvm(major) = %{maj_ver}
|
|
|
|
%description
|
|
LLVM is a compiler infrastructure designed for compile-time, link-time,
|
|
runtime, and idle-time optimization of programs from arbitrary programming
|
|
languages. The compiler infrastructure includes mirror sets of programming
|
|
tools as well as libraries with equivalent functionality.
|
|
|
|
%include %{_sourcedir}/packages.spec.inc
|
|
|
|
%prep
|
|
%if %{undefined rhel}
|
|
exec &>> >(/usr/bin/ts)
|
|
%endif
|
|
%include %{_sourcedir}/prep.spec.inc
|
|
|
|
%build
|
|
%if %{undefined rhel}
|
|
exec &>> >(/usr/bin/ts)
|
|
%endif
|
|
%include %{_sourcedir}/build.spec.inc
|
|
|
|
%install
|
|
%if %{undefined rhel}
|
|
exec &>> >(/usr/bin/ts)
|
|
%endif
|
|
%include %{_sourcedir}/install.spec.inc
|
|
|
|
%check
|
|
%if %{undefined rhel}
|
|
exec &>> >(/usr/bin/ts)
|
|
%endif
|
|
%include %{_sourcedir}/check.spec.inc
|
|
|
|
%ldconfig_scriptlets libs
|
|
|
|
%post devel
|
|
%if %{undefined rhel}
|
|
exec &>> >(/usr/bin/ts)
|
|
%endif
|
|
%include %{_sourcedir}/post_devel.spec.inc
|
|
|
|
%postun devel
|
|
%if %{undefined rhel}
|
|
exec &>> >(/usr/bin/ts)
|
|
%endif
|
|
%include %{_sourcedir}/postun_devel.spec.inc
|
|
|
|
%include %{_sourcedir}/files.spec.inc
|
|
|
|
%changelog
|
|
%include %{_sourcedir}/changelog.spec.inc |