clang18/clang.spec

305 lines
8.5 KiB
RPMSpec
Raw Normal View History

2022-02-09 18:39:15 +08:00
%global maj_ver 12
2019-12-17 21:09:38 +08:00
%global min_ver 0
2020-07-31 15:11:11 +08:00
%global patch_ver 1
%global clang_srcdir clang-%{version}.src
2019-12-17 21:09:38 +08:00
%global clang_tools_srcdir clang-tools-extra-%{version}.src
Name: clang
2022-02-09 18:39:15 +08:00
Version: 12.0.1
Release: 1
2021-02-18 11:41:52 +08:00
License: GPL-2.0-only and Apache-2.0 and MIT
2019-12-17 21:09:38 +08:00
Summary: An "LLVM native" C/C++/Objective-C compiler
URL: http://llvm.org
2020-07-31 15:11:11 +08:00
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{clang_srcdir}.tar.xz
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{clang_tools_srcdir}.tar.xz
Source2: clang-config.h
2022-02-09 18:39:15 +08:00
BuildRequires: cmake gcc-c++ python-sphinx git
2019-12-17 21:09:38 +08:00
BuildRequires: llvm-devel = %{version}
BuildRequires: llvm-static = %{version}
BuildRequires: llvm-googletest = %{version}
BuildRequires: libxml2-devel perl-generators ncurses-devel emacs libatomic
2022-02-09 18:39:15 +08:00
BuildRequires: python3-lit python3-sphinx python3-devel
2021-04-29 19:49:49 +08:00
2019-12-17 21:09:38 +08:00
Requires: libstdc++-devel gcc-c++ emacs-filesystem
2022-02-09 18:39:15 +08:00
Requires: %{name}-resource-filesystem = %{version}
2019-12-17 21:09:38 +08:00
Provides: clang(major) = %{maj_ver}
2020-02-20 18:35:53 +08:00
Provides: %{name}-libs = %{version}-%{release}
Obsoletes: %{name}-libs < %{version}-%{release}
Recommends: libomp = %{version}
2022-02-09 18:39:15 +08:00
Recommends: compiler-rt = %{version}
Conflicts: compiler-rt < %{version}
Conflicts: compiler-rt > %{version}
2019-12-17 21:09:38 +08:00
%description
The Clang project provides a language front-end and tooling infrastructure for\
languages in the C language family (C, C++, Objective C/C++, OpenCL, CUDA, and\
RenderScript) for the LLVM project. Both a GCC-compatible compiler driver (clang)\
and an MSVC-compatible compiler driver (clang-cl.exe) are provided.\
%package devel
Summary: Development header files for clang.
Requires: %{name} = %{version}-%{release}
Requires: %{name}-tools-extra = %{version}-%{release}
%description devel
Development header files for clang.
2022-02-09 18:39:15 +08:00
%package resource-filesystem
Summary: Filesystem package that owns the clang resource directory
Provides: %{name}-resource-filesystem(major) = %{maj_ver}
%description resource-filesystem
This package owns the clang resouce directory: $libdir/clang/$version/
2019-12-17 21:09:38 +08:00
%package help
Summary: Help manual for %{name}
%description help
The %{name}-help package conatins man manual etc
%package analyzer
Summary: A source code analysis framework
License: NCSA and MIT
BuildArch: noarch
Requires: %{name} = %{version}-%{release}
2021-02-18 11:41:52 +08:00
Requires: python3
2019-12-17 21:09:38 +08:00
%description 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.
%package tools-extra
Summary: Extra tools for clang
Requires: %{name}-libs = %{version}-%{release}
Requires: emacs-filesystem
%description tools-extra
A set of extra tools built using Clang's tooling API.
%package -n git-clang-format
Summary: clang-format integration for git
Requires: %{name} = %{version}-%{release}
Requires: git
%description -n git-clang-format
clang-format integration for git.
%prep
%setup -T -q -b 1 -n %{clang_tools_srcdir}
pathfix.py -i %{__python3} -pn \
clang-tidy/tool/*.py
2022-02-09 18:39:15 +08:00
%autosetup -n %{clang_srcdir} -p1 -Sgit
2019-12-17 21:09:38 +08:00
pathfix.py -i %{__python3} -pn \
tools/clang-format/*.py \
tools/clang-format/git-clang-format \
utils/hmaptool/hmaptool \
tools/scan-view/bin/scan-view
mv ../%{clang_tools_srcdir} tools/extra
%build
mkdir -p _build
cd _build
2021-04-29 19:49:49 +08:00
2019-12-17 21:09:38 +08:00
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
2021-04-29 19:49:49 +08:00
2019-12-17 21:09:38 +08:00
%cmake .. \
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
2022-02-09 18:39:15 +08:00
-DCMAKE_INSTALL_RPATH:BOOL=";" \
2021-04-30 10:18:15 +08:00
-DCMAKE_C_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
2019-12-17 21:09:38 +08:00
-DLLVM_CONFIG:FILEPATH=/usr/bin/llvm-config-%{__isa_bits} \
-DCLANG_INCLUDE_TESTS:BOOL=ON \
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
-DLLVM_MAIN_SRC_DIR=%{_datadir}/llvm/src \
%if 0%{?__isa_bits} == 64
-DLLVM_LIBDIR_SUFFIX=64 \
%else
-DLLVM_LIBDIR_SUFFIX= \
%endif
\
-DCLANG_ENABLE_ARCMT:BOOL=ON \
-DCLANG_ENABLE_STATIC_ANALYZER:BOOL=ON \
-DCLANG_INCLUDE_DOCS:BOOL=ON \
-DCLANG_PLUGIN_SUPPORT:BOOL=ON \
-DENABLE_LINKER_BUILD_ID:BOOL=ON \
-DLLVM_ENABLE_EH=ON \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_BUILD_DOCS=ON \
-DLLVM_ENABLE_SPHINX=ON \
-DSPHINX_WARNINGS_AS_ERRORS=OFF \
\
-DCLANG_BUILD_EXAMPLES:BOOL=OFF \
-DCLANG_REPOSITORY_STRING="%{_vendor} %{version}-%{release}" \
-DLIB_SUFFIX=
%make_build
%install
%make_install -C _build
mv -v %{buildroot}%{_includedir}/clang/Config/config{,-%{__isa_bits}}.h
2020-07-31 15:11:11 +08:00
install -m 0644 %{SOURCE2} %{buildroot}%{_includedir}/clang/Config/config.h
2019-12-17 21:09:38 +08:00
mkdir -p %{buildroot}%{_emacs_sitestartdir}
for f in clang-format.el clang-rename.el clang-include-fixer.el; do
mv %{buildroot}{%{_datadir}/clang,%{_emacs_sitestartdir}}/$f
done
rm -vf %{buildroot}%{_datadir}/clang/clang-format-bbedit.applescript
rm -vf %{buildroot}%{_datadir}/clang/clang-format-sublime.py*
rm -Rvf %{buildroot}%{_pkgdocdir}
rm -vf %{buildroot}%{_datadir}/clang/bash-autocomplete.sh
2022-02-09 18:39:15 +08:00
# Create sub-directories in the clang resource directory that will be
# populated by other packages
mkdir -p %{buildroot}%{_libdir}/clang/%{version}/{include,lib,share}/
2019-12-17 21:09:38 +08:00
2022-02-09 18:39:15 +08:00
# Remove clang-tidy headers.
rm -Rvf %{buildroot}%{_includedir}/clang-tidy/
2021-09-16 06:18:23 +00:00
2022-02-09 18:39:15 +08:00
ln -s clang++ %{buildroot}%{_bindir}/clang++-%{maj_ver}
2021-09-16 06:18:23 +00:00
2019-12-17 21:09:38 +08:00
%check
2020-07-31 15:11:11 +08:00
# Checking is disabled because we don't pack libLLVMTestingSupport.a, which makes
# standalone build of clang impossible.
#cd _build
#PATH=%{_libdir}/llvm:$PATH make %{?_smp_mflags} check-clang || \
#%ifarch %{arm}
#:
#%else
#false
#%endif
2019-12-17 21:09:38 +08:00
2021-09-16 06:18:23 +00:00
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
2019-12-17 21:09:38 +08:00
%files
%{_bindir}/clang
%{_bindir}/clang++
%{_bindir}/clang-%{maj_ver}
%{_bindir}/clang++-%{maj_ver}
%{_bindir}/clang-check
%{_bindir}/clang-cl
%{_bindir}/clang-cpp
%{_bindir}/clang-format
2020-07-31 15:11:11 +08:00
%{_bindir}/clang-doc
%{_bindir}/clang-extdef-mapping
%{_bindir}/clang-move
%{_bindir}/clang-offload-wrapper
%{_bindir}/clang-scan-deps
%{_bindir}/pp-trace
2019-12-17 21:09:38 +08:00
%{_bindir}/clang-offload-bundler
%{_bindir}/diagtool
%{_bindir}/hmaptool
%{_bindir}/c-index-test
%{_emacs_sitestartdir}/clang-format.el
%{_datadir}/clang/clang-format.py*
%{_datadir}/clang/clang-format-diff.py*
%{_libdir}/clang/
%{_libdir}/*.so.*
%files devel
%{_libdir}/*.so
%{_includedir}/clang/
%{_includedir}/clang-c/
%{_libdir}/cmake/*
%dir %{_datadir}/clang/
2022-02-09 18:39:15 +08:00
%files resource-filesystem
%dir %{_libdir}/clang/%{version}/
%dir %{_libdir}/clang/%{version}/include/
%dir %{_libdir}/clang/%{version}/lib/
%dir %{_libdir}/clang/%{version}/share/
2019-12-17 21:09:38 +08:00
%files help
%{_mandir}/man1/clang.1.gz
%{_mandir}/man1/diagtool.1.gz
%files analyzer
%{_bindir}/scan-view
%{_bindir}/scan-build
%{_libexecdir}/ccc-analyzer
%{_libexecdir}/c++-analyzer
%{_datadir}/scan-view/
%{_datadir}/scan-build/
%{_mandir}/man1/scan-build.1.*
%files tools-extra
%{_bindir}/clangd
%{_bindir}/clang-apply-replacements
%{_bindir}/clang-change-namespace
%{_bindir}/clang-include-fixer
%{_bindir}/clang-query
%{_bindir}/clang-refactor
%{_bindir}/clang-reorder-fields
%{_bindir}/clang-rename
%{_bindir}/clang-tidy
%{_bindir}/find-all-symbols
%{_bindir}/modularize
%{_emacs_sitestartdir}/clang-rename.el
%{_emacs_sitestartdir}/clang-include-fixer.el
%{_datadir}/clang/clang-include-fixer.py*
%{_datadir}/clang/clang-tidy-diff.py*
%{_datadir}/clang/run-clang-tidy.py*
%{_datadir}/clang/run-find-all-symbols.py*
%{_datadir}/clang/clang-rename.py*
2020-07-31 15:11:11 +08:00
%{_datadir}/clang/index.js
%{_datadir}/clang/clang-doc-default-stylesheet.css
2019-12-17 21:09:38 +08:00
%files -n git-clang-format
%{_bindir}/git-clang-format
%changelog
2022-02-09 18:39:15 +08:00
* Wed Dec 29 2021 panxiaohe <panxiaohe@huawei.com> - 12.0.1-1
- update to 12.0.1
- add clang-resource-filesystem sub-package
2021-09-16 06:18:23 +00:00
2022-02-09 18:39:15 +08:00
* Tue Sep 07 2021 chenchen <chen_aka_jan@163.com> - 10.0.1-5
- del rpath from some binaries and bin
2021-04-30 10:18:15 +08:00
* Fri Apr 30 2021 licihua <licihua@huawei.com> - 10.0.1-4
- Reduce build time.
2021-04-29 19:49:49 +08:00
* Thu Apr 29 2021 licihua <licihua@huawei.com> - 10.0.1-3
- Reduce debuginfo verbosity.
2021-02-18 11:41:52 +08:00
* Thu Feb 18 2021 zhangjiapeng <zhangjiapeng9@huawei.com> - 10.0.1-2
- Modify the dependency to python3
* Fri Sep 25 2020 zhangjiapeng <zhangjiapeng9@huawei.com> - 10.0.1-1
2020-09-25 15:38:36 +08:00
- Delete low version dynamic library
2020-07-31 15:11:11 +08:00
* Thu Jul 30 2020 Guoshuai Sun <sunguoshuai> - 10.0.1-0
- Upgrade to 10.0.1
2020-05-28 20:43:23 +08:00
* Thu May 28 2020 leiju <leiju4@huawei.com> - 7.0.0-7
- Fix uninitialized value in ABIArgInfo
2020-04-03 10:05:24 +08:00
* Fri Apr 03 2020 zhouyihang <zhouyihang1@huawei.com> - 7.0.0-6
- Remove useless scriptlet
2020-02-20 18:35:53 +08:00
* Thu Feb 20 2020 openEuler Buildteam <buildteam@openeuler.org> - 7.0.0-5
- Add buildrequire compiler-rt
2019-12-17 21:09:38 +08:00
* Tue Dec 17 2019 openEuler Buildteam <buildteam@openeuler.org> - 7.0.0-4
- Delete redundant info
* Mon Dec 9 2019 openEuler Buildteam <buildteam@openeuler.org> - 7.0.0-3
- Package init