2018-07-23 22:19:27 +00:00
|
|
|
%global compat_build 0
|
|
|
|
|
2020-02-06 10:41:16 +00:00
|
|
|
%global maj_ver 10
|
2017-09-12 02:10:03 +00:00
|
|
|
%global min_ver 0
|
2020-02-06 10:41:16 +00:00
|
|
|
%global patch_ver 0
|
2020-03-26 11:34:24 +00:00
|
|
|
#%%global rc_ver 6
|
2020-05-04 22:17:40 +00:00
|
|
|
%global baserelease 4
|
2018-05-11 19:49:23 +00:00
|
|
|
|
2017-03-20 21:39:07 +00:00
|
|
|
%global clang_tools_binaries \
|
|
|
|
%{_bindir}/clang-apply-replacements \
|
2017-03-24 00:10:08 +00:00
|
|
|
%{_bindir}/clang-change-namespace \
|
2020-02-06 10:41:16 +00:00
|
|
|
%{_bindir}/clang-check \
|
2019-08-07 16:22:09 +00:00
|
|
|
%{_bindir}/clang-doc \
|
2020-02-06 10:41:16 +00:00
|
|
|
%{_bindir}/clang-extdef-mapping \
|
|
|
|
%{_bindir}/clang-format \
|
|
|
|
%{_bindir}/clang-import-test \
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/clang-include-fixer \
|
2020-02-06 10:41:16 +00:00
|
|
|
%{_bindir}/clang-move \
|
|
|
|
%{_bindir}/clang-offload-bundler \
|
|
|
|
%{_bindir}/clang-offload-wrapper \
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/clang-query \
|
2018-01-24 06:30:23 +00:00
|
|
|
%{_bindir}/clang-refactor \
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/clang-rename \
|
2020-02-06 10:41:16 +00:00
|
|
|
%{_bindir}/clang-reorder-fields \
|
|
|
|
%{_bindir}/clang-scan-deps \
|
|
|
|
%{_bindir}/clang-tidy \
|
|
|
|
%{_bindir}/clangd \
|
|
|
|
%{_bindir}/diagtool \
|
|
|
|
%{_bindir}/hmaptool \
|
|
|
|
%{_bindir}/pp-trace
|
2017-03-20 21:39:07 +00:00
|
|
|
|
|
|
|
%global clang_binaries \
|
|
|
|
%{_bindir}/clang \
|
|
|
|
%{_bindir}/clang++ \
|
2018-08-14 04:40:41 +00:00
|
|
|
%{_bindir}/clang-%{maj_ver} \
|
|
|
|
%{_bindir}/clang++-%{maj_ver} \
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/clang-cl \
|
2017-03-24 00:10:08 +00:00
|
|
|
%{_bindir}/clang-cpp \
|
2017-03-20 21:39:07 +00:00
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%if 0%{?compat_build}
|
|
|
|
%global pkg_name clang%{maj_ver}.%{min_ver}
|
|
|
|
# Install clang to same prefix as llvm, so that apps that use llvm-config
|
|
|
|
# will also be able to find clang libs.
|
|
|
|
%global install_prefix %{_libdir}/llvm%{maj_ver}.%{min_ver}
|
|
|
|
%global install_bindir %{install_prefix}/bin
|
|
|
|
%global install_includedir %{install_prefix}/include
|
|
|
|
%global install_libdir %{install_prefix}/lib
|
|
|
|
|
|
|
|
%global pkg_bindir %{install_bindir}
|
|
|
|
%global pkg_includedir %{_includedir}/llvm%{maj_ver}.%{min_ver}
|
|
|
|
%global pkg_libdir %{install_libdir}
|
|
|
|
%else
|
|
|
|
%global pkg_name clang
|
2019-02-01 06:40:38 +00:00
|
|
|
%global install_prefix /usr
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
|
|
|
|
2017-11-06 22:51:27 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} > 7
|
2017-02-22 16:24:21 +00:00
|
|
|
%bcond_without python3
|
|
|
|
%else
|
|
|
|
%bcond_with python3
|
|
|
|
%endif
|
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
%global build_install_prefix %{buildroot}%{install_prefix}
|
|
|
|
|
2019-08-07 16:22:09 +00:00
|
|
|
%ifarch ppc64le
|
|
|
|
# Too many threads on ppc64 systems causes OOM errors.
|
|
|
|
%global _smp_mflags -j8
|
|
|
|
%endif
|
|
|
|
|
2019-12-20 02:50:51 +00:00
|
|
|
%global clang_srcdir clang-%{version}%{?rc_ver:rc%{rc_ver}}.src
|
2018-01-24 06:30:23 +00:00
|
|
|
%global clang_tools_srcdir clang-tools-extra-%{version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
Name: %pkg_name
|
2017-09-12 02:10:03 +00:00
|
|
|
Version: %{maj_ver}.%{min_ver}.%{patch_ver}
|
2019-08-01 18:19:20 +00:00
|
|
|
Release: %{baserelease}%{?rc_ver:.rc%{rc_ver}}%{?dist}
|
2016-01-27 14:29:14 +00:00
|
|
|
Summary: A C language family front-end for LLVM
|
|
|
|
|
|
|
|
License: NCSA
|
|
|
|
URL: http://llvm.org
|
2020-03-26 11:34:24 +00:00
|
|
|
%if 0%{?rc_ver:1}
|
|
|
|
Source0: https://prereleases.llvm.org/%{version}/rc%{rc_ver}/%{clang_srcdir}.tar.xz
|
|
|
|
Source3: https://prereleases.llvm.org/%{version}/rc%{rc_ver}/%{clang_srcdir}.tar.xz.sig
|
|
|
|
%else
|
|
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{clang_srcdir}.tar.xz
|
|
|
|
Source3: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{clang_srcdir}.tar.xz.sig
|
|
|
|
%endif
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2020-03-26 11:34:24 +00:00
|
|
|
%if 0%{?rc_ver:1}
|
|
|
|
Source1: https://prereleases.llvm.org/%{version}/rc%{rc_ver}/%{clang_tools_srcdir}.tar.xz
|
|
|
|
Source2: https://prereleases.llvm.org/%{version}/rc%{rc_ver}/%{clang_tools_srcdir}.tar.xz.sig
|
|
|
|
%else
|
|
|
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{clang_tools_srcdir}.tar.xz
|
|
|
|
Source2: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{clang_tools_srcdir}.tar.xz.sig
|
|
|
|
%endif
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
2020-02-06 10:41:16 +00:00
|
|
|
Source4: https://prereleases.llvm.org/%{version}/hans-gpg-key.asc
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
Patch4: 0002-gtest-reorg.patch
|
2019-02-08 17:47:13 +00:00
|
|
|
Patch11: 0001-ToolChain-Add-lgcc_s-to-the-linker-flags-when-using-.patch
|
2019-12-10 13:33:59 +00:00
|
|
|
Patch13: 0001-Make-funwind-tables-the-default-for-all-archs.patch
|
2020-05-19 13:12:28 +00:00
|
|
|
Patch14: 0001-clang-fix-undefined-behaviour-in-RawComment-getForma.patch
|
2017-03-24 00:10:08 +00:00
|
|
|
|
2020-01-31 23:34:37 +00:00
|
|
|
# Not Upstream
|
|
|
|
Patch15: 0001-clang-Don-t-install-static-libraries.patch
|
|
|
|
|
2018-12-04 13:11:18 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: gcc-c++
|
2016-01-27 14:29:14 +00:00
|
|
|
BuildRequires: cmake
|
2019-02-01 06:40:38 +00:00
|
|
|
BuildRequires: ninja-build
|
2018-07-23 22:19:27 +00:00
|
|
|
%if 0%{?compat_build}
|
|
|
|
BuildRequires: llvm%{maj_ver}.%{min_ver}-devel = %{version}
|
2018-12-04 13:11:18 +00:00
|
|
|
BuildRequires: llvm%{maj_ver}.%{min_ver}-static = %{version}
|
2018-07-23 22:19:27 +00:00
|
|
|
%else
|
2018-01-24 06:30:23 +00:00
|
|
|
BuildRequires: llvm-devel = %{version}
|
2019-03-06 09:09:34 +00:00
|
|
|
BuildRequires: llvm-test = %{version}
|
2018-08-27 23:46:19 +00:00
|
|
|
# llvm-static is required, because clang-tablegen needs libLLVMTableGen, which
|
|
|
|
# is not included in libLLVM.so.
|
2018-12-04 13:11:18 +00:00
|
|
|
BuildRequires: llvm-static = %{version}
|
2018-03-19 16:27:23 +00:00
|
|
|
BuildRequires: llvm-googletest = %{version}
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
BuildRequires: libxml2-devel
|
2018-12-04 13:11:18 +00:00
|
|
|
BuildRequires: perl-generators
|
|
|
|
BuildRequires: ncurses-devel
|
2018-01-26 17:17:50 +00:00
|
|
|
# According to https://fedoraproject.org/wiki/Packaging:Emacs a package
|
|
|
|
# should BuildRequires: emacs if it packages emacs integration files.
|
|
|
|
BuildRequires: emacs
|
2017-02-22 16:24:21 +00:00
|
|
|
|
|
|
|
# These build dependencies are required for the test suite.
|
|
|
|
%if %with python3
|
2018-01-24 06:30:23 +00:00
|
|
|
# The testsuite uses /usr/bin/lit which is part of the python3-lit package.
|
2018-12-04 13:11:18 +00:00
|
|
|
BuildRequires: python3-lit
|
2017-02-22 16:24:21 +00:00
|
|
|
%endif
|
|
|
|
|
2018-12-04 13:11:18 +00:00
|
|
|
BuildRequires: python3-sphinx
|
|
|
|
BuildRequires: libatomic
|
2017-06-12 14:07:20 +00:00
|
|
|
|
2018-09-07 21:01:14 +00:00
|
|
|
# We need python3-devel for pathfix.py.
|
|
|
|
BuildRequires: python3-devel
|
2017-02-22 16:24:21 +00:00
|
|
|
|
2018-11-06 00:28:53 +00:00
|
|
|
# Needed for %%multilib_fix_c_header
|
2018-12-04 13:11:18 +00:00
|
|
|
BuildRequires: multilib-rpm-config
|
2019-03-06 09:09:34 +00:00
|
|
|
BuildRequires: chrpath
|
2018-11-06 00:28:53 +00:00
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# clang requires gcc, clang++ requires libstdc++-devel
|
|
|
|
# - https://bugzilla.redhat.com/show_bug.cgi?id=1021645
|
|
|
|
# - https://bugzilla.redhat.com/show_bug.cgi?id=1158594
|
|
|
|
Requires: libstdc++-devel
|
|
|
|
Requires: gcc-c++
|
|
|
|
|
2018-12-04 13:11:18 +00:00
|
|
|
Requires: emacs-filesystem
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2018-12-04 13:11:18 +00:00
|
|
|
Provides: clang(major) = %{maj_ver}
|
2018-03-12 20:39:40 +00:00
|
|
|
|
2020-02-11 15:11:24 +00:00
|
|
|
Conflicts: compiler-rt < %{version}
|
|
|
|
Conflicts: compiler-rt > %{version}
|
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
%description
|
|
|
|
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 extensible.
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
Summary: Runtime library for clang
|
2018-08-17 18:33:27 +00:00
|
|
|
Recommends: compiler-rt%{?_isa} = %{version}
|
2020-03-20 18:43:23 +00:00
|
|
|
# libomp-devel is required, so clang can find the omp.h header when compiling
|
|
|
|
# with -fopenmp.
|
|
|
|
Recommends: libomp-devel%{_isa} = %{version}
|
2017-12-13 19:11:12 +00:00
|
|
|
Recommends: libomp%{_isa} = %{version}
|
2016-01-27 14:29:14 +00:00
|
|
|
|
|
|
|
%description libs
|
|
|
|
Runtime library for clang.
|
|
|
|
|
|
|
|
%package devel
|
2018-11-22 12:13:13 +00:00
|
|
|
Summary: Development header files for clang
|
2019-02-26 16:08:31 +00:00
|
|
|
%if !0%{?compat_build}
|
2016-01-27 14:29:14 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2017-09-12 02:10:03 +00:00
|
|
|
# The clang CMake files reference tools from clang-tools-extra.
|
|
|
|
Requires: %{name}-tools-extra%{?_isa} = %{version}-%{release}
|
2019-11-14 22:41:24 +00:00
|
|
|
Requires: %{name}-libs = %{version}-%{release}
|
2019-02-26 16:08:31 +00:00
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Development header files for clang.
|
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2016-01-27 14:29:14 +00:00
|
|
|
%package analyzer
|
|
|
|
Summary: A source code analysis framework
|
|
|
|
License: NCSA and MIT
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%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.
|
|
|
|
|
2017-03-20 21:39:07 +00:00
|
|
|
%package tools-extra
|
2018-11-22 12:13:13 +00:00
|
|
|
Summary: Extra tools for clang
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: emacs-filesystem
|
2017-03-20 21:39:07 +00:00
|
|
|
|
|
|
|
%description tools-extra
|
|
|
|
A set of extra tools built using Clang's tooling API.
|
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
# Put git-clang-format in its own package, because it Requires git
|
2017-08-06 09:57:20 +00:00
|
|
|
# and we don't want to force users to install all those dependenices if they
|
|
|
|
# just want clang.
|
|
|
|
%package -n git-clang-format
|
2018-11-22 12:13:13 +00:00
|
|
|
Summary: Integration of clang-format for git
|
2020-03-22 19:46:01 +00:00
|
|
|
Requires: %{name}-tools-extra = %{version}-%{release}
|
2018-11-22 12:13:13 +00:00
|
|
|
Requires: git
|
2019-02-01 06:40:38 +00:00
|
|
|
Requires: python3
|
2017-08-06 09:57:20 +00:00
|
|
|
|
|
|
|
%description -n git-clang-format
|
|
|
|
clang-format integration for git.
|
|
|
|
|
2020-03-12 08:24:26 +00:00
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
%package -n python3-clang
|
|
|
|
Summary: Python3 bindings for clang
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: python3
|
|
|
|
%description -n python3-clang
|
2017-10-04 16:20:22 +00:00
|
|
|
%{summary}.
|
2018-08-17 18:18:32 +00:00
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
2017-10-04 16:20:22 +00:00
|
|
|
|
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
%prep
|
2018-07-23 22:19:27 +00:00
|
|
|
%if 0%{?compat_build}
|
|
|
|
%autosetup -n %{clang_srcdir} -p1
|
|
|
|
%else
|
2018-01-24 06:30:23 +00:00
|
|
|
%setup -T -q -b 1 -n %{clang_tools_srcdir}
|
2017-02-22 16:24:21 +00:00
|
|
|
|
2018-10-02 00:23:05 +00:00
|
|
|
|
2018-11-30 19:37:53 +00:00
|
|
|
pathfix.py -i %{__python3} -pn \
|
|
|
|
clang-tidy/tool/*.py \
|
2019-08-07 16:22:09 +00:00
|
|
|
clang-include-fixer/find-all-symbols/tool/run-find-all-symbols.py
|
2018-10-02 00:23:05 +00:00
|
|
|
|
2018-01-24 06:30:23 +00:00
|
|
|
%setup -q -n %{clang_srcdir}
|
2018-10-02 00:23:05 +00:00
|
|
|
|
2018-03-19 16:27:23 +00:00
|
|
|
%patch4 -p1 -b .gtest
|
2019-02-08 17:47:13 +00:00
|
|
|
%patch11 -p1 -b .libcxx-fix
|
2020-02-06 10:41:16 +00:00
|
|
|
%patch13 -p2 -b .unwind-all
|
2020-05-19 13:12:28 +00:00
|
|
|
%patch14 -p2 -b .clangd
|
2020-01-31 23:34:37 +00:00
|
|
|
%patch15 -p2 -b .no-install-static
|
2017-03-20 21:39:07 +00:00
|
|
|
|
2018-01-24 06:30:23 +00:00
|
|
|
mv ../%{clang_tools_srcdir} tools/extra
|
2018-09-07 21:01:14 +00:00
|
|
|
|
|
|
|
pathfix.py -i %{__python3} -pn \
|
|
|
|
tools/clang-format/*.py \
|
2018-10-02 00:23:05 +00:00
|
|
|
tools/clang-format/git-clang-format \
|
2018-09-19 16:03:58 +00:00
|
|
|
utils/hmaptool/hmaptool \
|
|
|
|
tools/scan-view/bin/scan-view
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
2017-03-20 21:39:07 +00:00
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
%build
|
2018-01-24 06:30:23 +00:00
|
|
|
|
|
|
|
%if 0%{?__isa_bits} == 64
|
|
|
|
sed -i 's/\@FEDORA_LLVM_LIB_SUFFIX\@/64/g' test/lit.cfg.py
|
|
|
|
%else
|
|
|
|
sed -i 's/\@FEDORA_LLVM_LIB_SUFFIX\@//g' test/lit.cfg.py
|
|
|
|
%endif
|
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
mkdir -p _build
|
|
|
|
cd _build
|
2018-05-11 19:49:23 +00:00
|
|
|
|
2019-09-11 19:58:15 +00:00
|
|
|
%ifarch s390 s390x %{arm} %ix86 ppc64le
|
2018-05-11 19:49:23 +00:00
|
|
|
# Decrease debuginfo verbosity to reduce memory consumption during final library linking
|
|
|
|
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
|
|
|
|
%endif
|
|
|
|
|
2019-08-07 16:22:09 +00:00
|
|
|
# -DCMAKE_INSTALL_RPATH=";" is a workaround for llvm manually setting the
|
|
|
|
# rpath of libraries and binaries. llvm will skip the manual setting
|
|
|
|
# if CAMKE_INSTALL_RPATH is set to a value, but cmake interprets this value
|
|
|
|
# as nothing, so it sets the rpath to "" when installing.
|
2019-02-01 06:40:38 +00:00
|
|
|
%cmake .. -G Ninja \
|
2019-02-14 21:12:15 +00:00
|
|
|
-DLLVM_PARALLEL_LINK_JOBS=1 \
|
2016-02-24 07:40:56 +00:00
|
|
|
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
2016-01-27 14:29:14 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
2018-11-19 08:51:12 +00:00
|
|
|
-DPYTHON_EXECUTABLE=%{__python3} \
|
2019-08-07 16:22:09 +00:00
|
|
|
-DCMAKE_INSTALL_RPATH:BOOL=";" \
|
2019-09-11 19:58:15 +00:00
|
|
|
%ifarch s390 s390x %{arm} %ix86 ppc64le
|
2020-02-06 10:41:16 +00:00
|
|
|
-DCMAKE_C_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
|
|
|
|
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
|
2019-08-07 16:22:09 +00:00
|
|
|
%endif
|
2018-07-23 22:19:27 +00:00
|
|
|
%if 0%{?compat_build}
|
|
|
|
-DLLVM_CONFIG:FILEPATH=%{_bindir}/llvm-config-%{maj_ver}.%{min_ver}-%{__isa_bits} \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=%{install_prefix} \
|
|
|
|
-DCLANG_INCLUDE_TESTS:BOOL=OFF \
|
|
|
|
%else
|
|
|
|
-DCLANG_INCLUDE_TESTS:BOOL=ON \
|
2018-09-06 20:34:50 +00:00
|
|
|
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
|
2018-03-19 16:27:23 +00:00
|
|
|
-DLLVM_MAIN_SRC_DIR=%{_datadir}/llvm/src \
|
2018-07-23 22:19:27 +00:00
|
|
|
%if 0%{?__isa_bits} == 64
|
2018-12-04 13:11:18 +00:00
|
|
|
-DLLVM_LIBDIR_SUFFIX=64 \
|
2018-07-23 22:19:27 +00:00
|
|
|
%else
|
2018-12-04 13:11:18 +00:00
|
|
|
-DLLVM_LIBDIR_SUFFIX= \
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
\
|
2019-08-01 18:19:20 +00:00
|
|
|
%if !0%{compat_build}
|
2019-03-06 09:09:34 +00:00
|
|
|
-DLLVM_TABLEGEN_EXE:FILEPATH=%{_bindir}/llvm-tblgen \
|
2019-08-01 18:19:20 +00:00
|
|
|
%else
|
|
|
|
-DLLVM_TABLEGEN_EXE:FILEPATH=%{_bindir}/llvm-tblgen-%{maj_ver}.%{min_ver} \
|
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
-DCLANG_ENABLE_ARCMT:BOOL=ON \
|
|
|
|
-DCLANG_ENABLE_STATIC_ANALYZER:BOOL=ON \
|
|
|
|
-DCLANG_INCLUDE_DOCS:BOOL=ON \
|
|
|
|
-DCLANG_PLUGIN_SUPPORT:BOOL=ON \
|
2017-03-16 13:51:38 +00:00
|
|
|
-DENABLE_LINKER_BUILD_ID:BOOL=ON \
|
2017-03-28 01:10:21 +00:00
|
|
|
-DLLVM_ENABLE_EH=ON \
|
|
|
|
-DLLVM_ENABLE_RTTI=ON \
|
2017-06-12 14:07:20 +00:00
|
|
|
-DLLVM_BUILD_DOCS=ON \
|
|
|
|
-DLLVM_ENABLE_SPHINX=ON \
|
2019-08-07 16:22:09 +00:00
|
|
|
-DCLANG_LINK_CLANG_DYLIB=ON \
|
2017-06-12 14:07:20 +00:00
|
|
|
-DSPHINX_WARNINGS_AS_ERRORS=OFF \
|
2016-01-27 14:29:14 +00:00
|
|
|
\
|
2016-02-19 00:16:41 +00:00
|
|
|
-DCLANG_BUILD_EXAMPLES:BOOL=OFF \
|
2020-01-31 23:34:37 +00:00
|
|
|
-DBUILD_SHARED_LIBS=OFF \
|
2019-02-01 06:40:38 +00:00
|
|
|
-DCLANG_REPOSITORY_STRING="%{?fedora:Fedora}%{?rhel:Red Hat} %{version}-%{release}"
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2019-08-07 16:22:09 +00:00
|
|
|
%ninja_build
|
2016-01-27 14:29:14 +00:00
|
|
|
|
|
|
|
%install
|
2019-08-07 16:22:09 +00:00
|
|
|
%ninja_install -C _build
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%if 0%{?compat_build}
|
|
|
|
|
|
|
|
# Remove binaries/other files
|
|
|
|
rm -Rf %{buildroot}%{install_bindir}
|
|
|
|
rm -Rf %{buildroot}%{install_prefix}/share
|
|
|
|
rm -Rf %{buildroot}%{install_prefix}/libexec
|
|
|
|
|
|
|
|
# Move include files
|
|
|
|
mkdir -p %{buildroot}%{pkg_includedir}
|
|
|
|
mv %{buildroot}/%{install_includedir}/clang %{buildroot}/%{pkg_includedir}/
|
|
|
|
mv %{buildroot}/%{install_includedir}/clang-c %{buildroot}/%{pkg_includedir}/
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
2017-10-04 16:20:22 +00:00
|
|
|
# install clang python bindings
|
2019-02-01 06:40:38 +00:00
|
|
|
mkdir -p %{buildroot}%{python3_sitelib}/clang/
|
|
|
|
install -p -m644 bindings/python/clang/* %{buildroot}%{python3_sitelib}/clang/
|
|
|
|
%py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/clang
|
2017-10-04 16:20:22 +00:00
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
# multilib fix
|
2018-11-06 00:28:53 +00:00
|
|
|
%multilib_fix_c_header --file %{_includedir}/clang/Config/config.h
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2018-01-26 17:17:50 +00:00
|
|
|
# Move emacs integration files to the correct directory
|
|
|
|
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
|
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
# remove editor integrations (bbedit, sublime, emacs, vim)
|
|
|
|
rm -vf %{buildroot}%{_datadir}/clang/clang-format-bbedit.applescript
|
|
|
|
rm -vf %{buildroot}%{_datadir}/clang/clang-format-sublime.py*
|
|
|
|
|
2017-06-12 14:07:20 +00:00
|
|
|
# TODO: Package html docs
|
|
|
|
rm -Rvf %{buildroot}%{_pkgdocdir}
|
2020-02-06 10:41:16 +00:00
|
|
|
rm -Rvf %{buildroot}%{install_prefix}/share/clang/clang-doc-default-stylesheet.css
|
|
|
|
rm -Rvf %{buildroot}%{install_prefix}/share/clang/index.js
|
2017-06-12 14:07:20 +00:00
|
|
|
|
2017-09-12 02:10:03 +00:00
|
|
|
# TODO: What are the Fedora guidelines for packaging bash autocomplete files?
|
|
|
|
rm -vf %{buildroot}%{_datadir}/clang/bash-autocomplete.sh
|
|
|
|
|
2018-12-13 10:19:57 +00:00
|
|
|
# Create Manpage symlinks
|
|
|
|
ln -s clang.1.gz %{buildroot}%{_mandir}/man1/clang++.1.gz
|
|
|
|
ln -s clang.1.gz %{buildroot}%{_mandir}/man1/clang-%{maj_ver}.1.gz
|
|
|
|
ln -s clang.1.gz %{buildroot}%{_mandir}/man1/clang++-%{maj_ver}.1.gz
|
|
|
|
|
2019-04-16 13:45:10 +00:00
|
|
|
# Add clang++-{version} symlink
|
2019-03-06 09:09:34 +00:00
|
|
|
ln -s clang++ %{buildroot}%{_bindir}/clang++-%{maj_ver}
|
|
|
|
|
|
|
|
|
2018-11-22 12:13:13 +00:00
|
|
|
# Fix permission
|
|
|
|
chmod u-x %{buildroot}%{_mandir}/man1/scan-build.1*
|
2018-12-13 10:19:57 +00:00
|
|
|
|
2020-05-04 22:17:40 +00:00
|
|
|
# create a link to clang's resource directory that is "constant" across minor
|
|
|
|
# version bumps
|
|
|
|
# this is required for packages like ccls that hardcode the link to clang's
|
|
|
|
# resource directory to not require rebuilds on minor version bumps
|
|
|
|
# Fix for bugs like rhbz#1807574
|
|
|
|
pushd %{buildroot}%{_libdir}/clang/
|
|
|
|
ln -s %{version} %{maj_ver}
|
|
|
|
popd
|
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
%check
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2016-01-27 14:29:14 +00:00
|
|
|
# requires lit.py from LLVM utilities
|
2019-02-15 18:51:52 +00:00
|
|
|
# FIXME: Fix failing ARM tests, s390x i686 and ppc64le tests
|
2019-08-07 16:22:09 +00:00
|
|
|
# FIXME: Ignore test failures until rhbz#1715016 is fixed.
|
2019-03-06 09:09:34 +00:00
|
|
|
LD_LIBRARY_PATH=%{buildroot}%{_libdir} ninja check-all -C _build || \
|
2019-02-15 18:51:52 +00:00
|
|
|
%ifarch s390x i686 ppc64le %{arm}
|
2018-03-23 06:02:11 +00:00
|
|
|
:
|
|
|
|
%else
|
2019-08-07 16:22:09 +00:00
|
|
|
:
|
2018-03-23 06:02:11 +00:00
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
2017-02-22 16:24:21 +00:00
|
|
|
|
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2016-01-27 14:29:14 +00:00
|
|
|
%files
|
2017-03-20 21:39:07 +00:00
|
|
|
%{clang_binaries}
|
2017-06-12 14:07:20 +00:00
|
|
|
%{_mandir}/man1/clang.1.gz
|
2018-12-13 10:19:57 +00:00
|
|
|
%{_mandir}/man1/clang++.1.gz
|
|
|
|
%{_mandir}/man1/clang-%{maj_ver}.1.gz
|
|
|
|
%{_mandir}/man1/clang++-%{maj_ver}.1.gz
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
|
|
|
|
%files libs
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2018-09-19 04:40:20 +00:00
|
|
|
%{_libdir}/clang/
|
2016-01-27 14:29:14 +00:00
|
|
|
%{_libdir}/*.so.*
|
2018-07-23 22:19:27 +00:00
|
|
|
%else
|
|
|
|
%{pkg_libdir}/*.so.*
|
|
|
|
%{pkg_libdir}/clang/%{version}
|
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
|
|
|
|
%files devel
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2018-09-14 02:54:50 +00:00
|
|
|
%{_libdir}/*.so
|
2016-01-27 14:29:14 +00:00
|
|
|
%{_includedir}/clang/
|
|
|
|
%{_includedir}/clang-c/
|
2017-08-06 09:57:20 +00:00
|
|
|
%{_libdir}/cmake/*
|
2016-01-27 14:29:14 +00:00
|
|
|
%dir %{_datadir}/clang/
|
2018-07-23 22:19:27 +00:00
|
|
|
%else
|
2018-09-14 02:54:50 +00:00
|
|
|
%{pkg_libdir}/*.so
|
2018-07-23 22:19:27 +00:00
|
|
|
%{pkg_includedir}/clang/
|
|
|
|
%{pkg_includedir}/clang-c/
|
|
|
|
%{pkg_libdir}/cmake/
|
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2016-01-27 14:29:14 +00:00
|
|
|
%files analyzer
|
|
|
|
%{_bindir}/scan-view
|
|
|
|
%{_bindir}/scan-build
|
2016-02-19 00:16:41 +00:00
|
|
|
%{_libexecdir}/ccc-analyzer
|
|
|
|
%{_libexecdir}/c++-analyzer
|
|
|
|
%{_datadir}/scan-view/
|
|
|
|
%{_datadir}/scan-build/
|
2016-01-27 14:29:14 +00:00
|
|
|
%{_mandir}/man1/scan-build.1.*
|
|
|
|
|
2017-03-20 21:39:07 +00:00
|
|
|
%files tools-extra
|
|
|
|
%{clang_tools_binaries}
|
2020-03-11 12:35:18 +00:00
|
|
|
%{_bindir}/c-index-test
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/find-all-symbols
|
|
|
|
%{_bindir}/modularize
|
2020-03-11 12:35:18 +00:00
|
|
|
%{_mandir}/man1/diagtool.1.gz
|
|
|
|
%{_emacs_sitestartdir}/clang-format.el
|
2018-01-26 17:17:50 +00:00
|
|
|
%{_emacs_sitestartdir}/clang-rename.el
|
|
|
|
%{_emacs_sitestartdir}/clang-include-fixer.el
|
2020-03-11 12:35:18 +00:00
|
|
|
%{_datadir}/clang/clang-format.py*
|
|
|
|
%{_datadir}/clang/clang-format-diff.py*
|
2018-02-01 20:18:16 +00:00
|
|
|
%{_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*
|
2017-03-20 21:39:07 +00:00
|
|
|
|
2017-08-06 09:57:20 +00:00
|
|
|
%files -n git-clang-format
|
|
|
|
%{_bindir}/git-clang-format
|
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
%files -n python3-clang
|
|
|
|
%{python3_sitelib}/clang/
|
|
|
|
|
2017-10-04 16:20:22 +00:00
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
%changelog
|
2020-05-04 22:17:40 +00:00
|
|
|
* Wed Jun 3 2020 Dan Čermák <dan.cermak@cgc-instruments.com> - 10.0.0-4
|
|
|
|
- Add symlink to %%{_libdir}/clang/%%{maj_ver} for persistent access to the resource directory accross minor version bumps
|
|
|
|
|
2020-05-25 10:47:19 +00:00
|
|
|
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 10.0.0-3
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-05-19 13:12:28 +00:00
|
|
|
* Tue May 19 2020 sguelton@redhat.com - 10.0.0-2
|
|
|
|
- Backport ad7211df6f257e39da2e5a11b2456b4488f32a1e, see rhbz#1825593
|
|
|
|
|
2020-03-26 11:34:24 +00:00
|
|
|
* Thu Mar 26 2020 sguelton@redhat.com - 10.0.0-1
|
|
|
|
- 10.0.0 final
|
|
|
|
|
2020-03-24 20:08:33 +00:00
|
|
|
* Tue Mar 24 2020 sguelton@redhat.com - 10.0.0-0.11.rc6
|
|
|
|
- 10.0.0 rc6
|
|
|
|
|
2020-03-22 19:46:01 +00:00
|
|
|
* Sun Mar 22 2020 sguelton@redhat.com - 10.0.0-0.10.rc5
|
|
|
|
- Update git-clang-format dependency, see rhbz#1815913
|
|
|
|
|
2020-03-20 18:43:23 +00:00
|
|
|
* Fri Mar 20 2020 Tom Stellard <tstellar@redhat.com> - 10.0.0-0.9.rc5
|
|
|
|
- Add dependency on libomp-devel
|
|
|
|
|
2020-03-20 12:36:28 +00:00
|
|
|
* Fri Mar 20 2020 sguelton@redhat.com - 10.0.0-0.8.rc5
|
|
|
|
- 10.0.0 rc5
|
|
|
|
|
2020-03-15 07:19:13 +00:00
|
|
|
* Sat Mar 14 2020 sguelton@redhat.com - 10.0.0-0.7.rc4
|
|
|
|
- 10.0.0 rc4
|
|
|
|
|
2020-03-12 08:29:38 +00:00
|
|
|
* Thu Mar 12 2020 sguelton@redhat.com - 10.0.0-0.6.rc3
|
|
|
|
- Move a few files from clang to clang-tools-extra.
|
|
|
|
|
2020-03-05 11:21:38 +00:00
|
|
|
* Thu Mar 05 2020 sguelton@redhat.com - 10.0.0-0.5.rc3
|
|
|
|
- 10.0.0 rc3
|
|
|
|
|
2020-02-25 20:50:47 +00:00
|
|
|
* Tue Feb 25 2020 sguelton@redhat.com - 10.0.0-0.4.rc2
|
|
|
|
- Apply -fdiscard-value-names patch.
|
|
|
|
|
2020-02-17 15:49:10 +00:00
|
|
|
* Mon Feb 17 2020 sguelton@redhat.com - 10.0.0-0.3.rc2
|
|
|
|
- Fix NVR
|
|
|
|
|
2020-02-15 22:52:09 +00:00
|
|
|
* Fri Feb 14 2020 sguelton@redhat.com - 10.0.0-0.1.rc2
|
|
|
|
- 10.0.0 rc2
|
|
|
|
|
2020-02-11 15:11:24 +00:00
|
|
|
* Tue Feb 11 2020 sguelton@redhat.com - 10.0.0-0.2.rc1
|
|
|
|
- Explicitly conflicts with any different compiler-rt version, see rhbz#1800705
|
|
|
|
|
2020-01-31 23:34:37 +00:00
|
|
|
* Fri Jan 31 2020 Tom Stellard <tstellar@redhat.com> - 10.0.0-0.1.rc1
|
|
|
|
- Stop shipping individual component libraries
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Stop-Shipping-Individual-Component-Libraries-In-clang-lib-Package
|
|
|
|
|
2020-02-06 10:41:16 +00:00
|
|
|
* Fri Jan 31 2020 sguelton@redhat.com - 10.0.0-0.1.rc1
|
|
|
|
- 10.0.0 rc1
|
|
|
|
|
2020-01-28 14:07:59 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-10 01:45:35 +00:00
|
|
|
* Fri Jan 10 2020 Tom Stellard <tstellar@redhat.com> - 9.0.1-2
|
|
|
|
- Fix crash with kernel bpf self-tests
|
|
|
|
|
2019-12-20 02:50:51 +00:00
|
|
|
* Thu Dec 19 2019 Tom Stellard <tstellar@redhat.com> - 9.0.1-1
|
|
|
|
- 9.0.1 Release
|
|
|
|
|
2019-11-14 22:41:24 +00:00
|
|
|
* Wed Dec 11 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-3
|
|
|
|
- Add explicit requires for clang-libs to fix rpmdiff errors
|
|
|
|
|
2019-12-10 13:33:59 +00:00
|
|
|
* Tue Dec 10 2019 sguelton@redhat.com - 9.0.0-2
|
|
|
|
- Activate -funwind-tables on all arches, see rhbz#1655546.
|
|
|
|
|
2019-09-20 01:03:04 +00:00
|
|
|
* Thu Sep 19 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
|
|
|
|
- 9.0.0 Release
|
|
|
|
|
2019-09-11 19:58:15 +00:00
|
|
|
* Wed Sep 11 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.2.rc3
|
|
|
|
- Reduce debug info verbosity on ppc64le to avoid OOM errors in koji
|
|
|
|
|
2019-08-07 16:22:09 +00:00
|
|
|
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.1.rc3
|
|
|
|
- 9.0.0 Release candidate 3
|
|
|
|
|
2019-08-20 20:55:20 +00:00
|
|
|
* Tue Aug 20 2019 sguelton@redhat.com - 8.0.0-4
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-19 08:11:35 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 8.0.0-3.2
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-07-24 20:20:23 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-3.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-22 11:36:40 +00:00
|
|
|
* Thu May 16 2019 sguelton@redhat.com - 8.0.0-3
|
|
|
|
- Fix for rhbz#1674031
|
|
|
|
|
2019-04-13 05:55:07 +00:00
|
|
|
* Fri Apr 12 2019 sguelton@redhat.com - 8.0.0-2
|
|
|
|
- Remove useless patch thanks to GCC upgrade
|
|
|
|
|
2019-03-20 19:38:13 +00:00
|
|
|
* Wed Mar 20 2019 sguelton@redhat.com - 8.0.0-1
|
|
|
|
- 8.0.0 final
|
|
|
|
|
2019-03-12 14:15:43 +00:00
|
|
|
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.6.rc4
|
|
|
|
- 8.0.0 Release candidate 4
|
|
|
|
|
2019-03-06 09:09:34 +00:00
|
|
|
* Mon Mar 4 2019 sguelton@redhat.com - 8.0.0-0.5.rc3
|
|
|
|
- Cleanup specfile after llvm dependency update
|
|
|
|
|
2019-03-04 10:01:21 +00:00
|
|
|
* Mon Mar 4 2019 sguelton@redhat.com - 8.0.0-0.4.rc3
|
|
|
|
- 8.0.0 Release candidate 3
|
|
|
|
|
2019-02-08 17:47:13 +00:00
|
|
|
* Mon Feb 25 2019 tstellar@redhat.com - 8.0.0-0.3.rc2
|
|
|
|
- Fix compiling with -stdlib=libc++
|
|
|
|
|
2019-02-22 08:15:29 +00:00
|
|
|
* Thu Feb 21 2019 sguelton@redhat.com - 8.0.0-0.2.rc2
|
2019-02-21 21:30:51 +00:00
|
|
|
- 8.0.0 Release candidate 2
|
|
|
|
|
2019-02-22 08:15:29 +00:00
|
|
|
* Sat Feb 09 2019 sguelton@redhat.com - 8.0.0-0.1.rc1
|
2019-02-01 06:40:38 +00:00
|
|
|
- 8.0.0 Release candidate 1
|
|
|
|
|
2019-02-01 10:00:16 +00:00
|
|
|
* Tue Feb 05 2019 sguelton@redhat.com - 7.0.1-6
|
|
|
|
- Update patch for Python3 port of scan-view
|
|
|
|
|
2019-02-01 15:04:19 +00:00
|
|
|
* Tue Feb 05 2019 sguelton@redhat.com - 7.0.1-5
|
|
|
|
- Working CI test suite
|
|
|
|
|
2019-02-05 06:02:39 +00:00
|
|
|
* Mon Feb 04 2019 sguelton@redhat.com - 7.0.1-4
|
|
|
|
- Workaround gcc-9 bug when compiling bitfields
|
|
|
|
|
2019-02-01 06:43:22 +00:00
|
|
|
* Fri Feb 01 2019 sguelton@redhat.com - 7.0.1-3
|
2019-02-05 06:02:39 +00:00
|
|
|
- Fix uninitialized error detected by gcc-9
|
2019-02-01 06:43:22 +00:00
|
|
|
|
2019-01-31 15:40:24 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-2.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-19 06:32:35 +00:00
|
|
|
* Wed Dec 19 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-2
|
|
|
|
- Fix for rhbz#1657544
|
2018-11-22 12:13:13 +00:00
|
|
|
|
|
|
|
* Tue Dec 18 2018 sguelton@redhat.com - 7.0.1-1
|
|
|
|
- 7.0.1
|
|
|
|
|
2018-12-13 10:19:57 +00:00
|
|
|
* Tue Dec 18 2018 sguelton@redhat.com - 7.0.0-10
|
|
|
|
- Install proper manpage symlinks for clang/clang++ versions
|
|
|
|
|
2018-12-14 07:32:21 +00:00
|
|
|
* Fri Dec 14 2018 sguelton@redhat.com - 7.0.0-9
|
|
|
|
- No longer Ignore -fstack-clash-protection option
|
|
|
|
|
2018-12-04 13:11:18 +00:00
|
|
|
* Tue Dec 04 2018 sguelton@redhat.com - 7.0.0-8
|
|
|
|
- Ensure rpmlint passes on specfile
|
|
|
|
|
2018-11-30 19:37:53 +00:00
|
|
|
* Fri Nov 30 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-7
|
2020-03-12 08:24:26 +00:00
|
|
|
- Drop python2 dependency from clang-tools-extra
|
2018-11-30 19:37:53 +00:00
|
|
|
|
2018-11-28 18:06:56 +00:00
|
|
|
* Wed Nov 21 2018 sguelton@redhat.com - 7.0.0-6
|
2018-11-21 08:00:20 +00:00
|
|
|
- Prune unneeded reference to llvm-test-suite sub-package
|
|
|
|
|
2018-11-19 23:51:24 +00:00
|
|
|
* Mon Nov 19 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-5
|
|
|
|
- Run 'make check-all' instead of 'make check-clang'
|
|
|
|
|
2018-11-19 08:51:12 +00:00
|
|
|
* Mon Nov 19 2018 sergesanspaille <sguelton@redhat.com> - 7.0.0-4
|
|
|
|
- Avoid Python2 + Python3 dependency for clang-analyzer
|
|
|
|
|
2018-11-06 00:28:53 +00:00
|
|
|
* Mon Nov 05 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-3
|
|
|
|
- User helper macro to fixup config.h for multilib
|
|
|
|
|
2018-10-02 00:23:05 +00:00
|
|
|
* Tue Oct 02 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-2
|
|
|
|
- Use correct shebang substitution for python scripts
|
|
|
|
|
2018-09-25 02:05:06 +00:00
|
|
|
* Mon Sep 24 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
|
|
|
|
- 7.0.0 Release
|
|
|
|
|
2018-09-19 04:40:20 +00:00
|
|
|
* Wed Sep 19 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.16.rc3
|
|
|
|
- Move builtin headers into clang-libs sub-package
|
|
|
|
|
2018-09-19 16:03:58 +00:00
|
|
|
* Wed Sep 19 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.15.rc3
|
|
|
|
- Remove ambiguous python shebangs
|
|
|
|
|
2018-09-14 02:54:50 +00:00
|
|
|
* Thu Sep 13 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.14.rc3
|
|
|
|
- Move unversioned shared objects to devel package
|
|
|
|
|
2018-09-13 16:52:27 +00:00
|
|
|
* Thu Sep 13 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.13.rc3
|
|
|
|
- Rebuild with new llvm-devel that disables rpath on install
|
|
|
|
|
2018-09-13 16:51:14 +00:00
|
|
|
* Thu Sep 13 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.12.rc3
|
|
|
|
- Fix clang++-7 symlink
|
|
|
|
|
2018-09-12 02:51:33 +00:00
|
|
|
* Wed Sep 12 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.11.rc3
|
|
|
|
- 7.0.0-rc3 Release
|
|
|
|
|
2018-09-10 16:06:20 +00:00
|
|
|
* Mon Sep 10 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.10.rc2
|
|
|
|
- Drop siod from llvm-test-suite
|
|
|
|
|
2018-09-07 21:01:14 +00:00
|
|
|
* Fri Sep 07 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.9.rc2
|
|
|
|
- Drop python2 dependency from clang package
|
|
|
|
|
2018-09-06 20:34:50 +00:00
|
|
|
* Thu Sep 06 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.8.rc2
|
|
|
|
- Drop all uses of python2 from lit tests
|
|
|
|
|
2018-09-04 18:04:42 +00:00
|
|
|
* Sat Sep 01 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.7.rc2
|
|
|
|
- Add Fedora specific version string
|
|
|
|
|
2018-08-28 22:29:06 +00:00
|
|
|
* Tue Aug 28 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.6.rc2
|
|
|
|
- 7.0.0-rc2 Release
|
|
|
|
|
2018-03-19 16:27:23 +00:00
|
|
|
* Tue Aug 28 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.5.rc1
|
|
|
|
- Enable unit tests
|
|
|
|
|
2018-08-17 18:18:32 +00:00
|
|
|
* Fri Aug 17 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.4.rc1
|
|
|
|
- Move llvm-test-suite into a sub-package
|
|
|
|
|
2018-08-17 18:33:27 +00:00
|
|
|
* Fri Aug 17 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.3.rc1
|
|
|
|
- Recommend the same version of compiler-rt
|
|
|
|
|
2018-08-15 02:58:47 +00:00
|
|
|
* Wed Aug 15 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.2.rc1
|
|
|
|
- Rebuild for f30
|
|
|
|
|
2018-08-14 04:40:41 +00:00
|
|
|
* Mon Aug 13 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc1
|
|
|
|
- 7.0.0-rc1 Release
|
|
|
|
|
2018-07-23 22:19:27 +00:00
|
|
|
* Mon Jul 23 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-3
|
|
|
|
- Sync spec file with the clang6.0 package
|
|
|
|
|
2018-07-12 21:50:24 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-27 06:14:16 +00:00
|
|
|
* Tue Jun 26 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
|
|
|
|
- 6.0.1 Release
|
|
|
|
|
2018-06-13 17:08:03 +00:00
|
|
|
* Wed Jun 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.2.rc2
|
|
|
|
- 6.0.1-rc2
|
|
|
|
|
2018-05-11 19:49:23 +00:00
|
|
|
* Fri May 11 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.1.rc1
|
|
|
|
- 6.0.1-rc1 Release
|
|
|
|
|
2018-03-23 18:03:55 +00:00
|
|
|
* Fri Mar 23 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-5
|
|
|
|
- Add a clang++-{version} symlink rhbz#1534098
|
|
|
|
|
2018-03-23 06:02:11 +00:00
|
|
|
* Thu Mar 22 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-4
|
|
|
|
- Use correct script for running lit tests
|
|
|
|
|
2018-03-12 20:39:40 +00:00
|
|
|
* Wed Mar 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-3
|
|
|
|
- Fix toolchain detection so we don't default to using cross-compilers:
|
|
|
|
rhbz#1482491
|
|
|
|
|
2018-03-12 20:39:40 +00:00
|
|
|
* Mon Mar 12 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-2
|
|
|
|
- Add Provides: clang(major) rhbz#1547444
|
|
|
|
|
2018-03-09 01:49:30 +00:00
|
|
|
* Fri Mar 09 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
|
|
|
|
- 6.0.0 Release
|
|
|
|
|
2018-02-13 14:37:47 +00:00
|
|
|
* Mon Feb 12 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.6.rc2
|
|
|
|
- 6.0.0-rc2 Release
|
|
|
|
|
2018-02-07 05:02:29 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-0.5.rc1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-01 20:18:16 +00:00
|
|
|
* Thu Feb 01 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.4.rc1
|
|
|
|
- Package python helper scripts for tools
|
|
|
|
|
2018-01-26 22:19:40 +00:00
|
|
|
* Fri Jan 26 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc1
|
|
|
|
- Ignore -fstack-clash-protection option instead of giving an error
|
|
|
|
|
2018-01-26 17:17:50 +00:00
|
|
|
* Fri Jan 26 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.2.rc1
|
|
|
|
- Package emacs integration files
|
|
|
|
|
2018-01-24 06:30:23 +00:00
|
|
|
* Wed Jan 24 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
|
|
|
|
- 6.0.0-rc1 Release
|
|
|
|
|
2018-01-24 17:40:48 +00:00
|
|
|
* Wed Jan 24 2018 Tom Stellard <tstellar@redhat.com> - 5.0.1-3
|
|
|
|
- Rebuild against llvm5.0 compatibility package
|
|
|
|
- rhbz#1538231
|
|
|
|
|
2018-01-03 11:46:00 +00:00
|
|
|
* Wed Jan 03 2018 Iryna Shcherbina <ishcherb@redhat.com> - 5.0.1-2
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2017-12-21 07:14:14 +00:00
|
|
|
* Wed Dec 20 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
|
|
|
- 5.0.1 Release
|
|
|
|
|
2017-12-13 19:11:12 +00:00
|
|
|
* Wed Dec 13 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-3
|
|
|
|
- Make compiler-rt a weak dependency and add a weak dependency on libomp
|
|
|
|
|
2017-11-06 22:51:27 +00:00
|
|
|
* Mon Nov 06 2017 Merlin Mathesius <mmathesi@redhat.com> - 5.0.0-2
|
|
|
|
- Cleanup spec file conditionals
|
|
|
|
|
2017-09-12 02:10:03 +00:00
|
|
|
* Mon Oct 16 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
|
|
|
|
- 5.0.0 Release
|
|
|
|
|
2017-10-04 16:20:22 +00:00
|
|
|
* Wed Oct 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.0.1-6
|
|
|
|
- python2-clang subpkg (#1490997)
|
|
|
|
- tools-extras: tighten (internal) -libs dep
|
|
|
|
- %%install: avoid cd
|
|
|
|
|
2017-08-06 09:57:20 +00:00
|
|
|
* Wed Aug 30 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-5
|
|
|
|
- Add Requires: python for git-clang-format
|
|
|
|
|
2017-08-06 09:57:20 +00:00
|
|
|
* Sun Aug 06 2017 Björn Esser <besser82@fedoraproject.org> - 4.0.1-4
|
|
|
|
- Rebuilt for AutoReq cmake-filesystem
|
|
|
|
|
2017-08-02 18:50:39 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 04:54:51 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-23 14:34:34 +00:00
|
|
|
* Fri Jun 23 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
|
|
|
|
- 4.0.1 Release.
|
|
|
|
|
2017-06-16 16:30:18 +00:00
|
|
|
* Fri Jun 16 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-8
|
|
|
|
- Enable make check-clang
|
|
|
|
|
2017-06-12 19:10:49 +00:00
|
|
|
* Mon Jun 12 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-7
|
|
|
|
- Package git-clang-format
|
|
|
|
|
2017-06-12 14:07:20 +00:00
|
|
|
* Thu Jun 08 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-6
|
|
|
|
- Generate man pages
|
|
|
|
|
2017-06-08 21:16:27 +00:00
|
|
|
* Thu Jun 08 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-5
|
|
|
|
- Ignore test-suite failures until all arches are fixed.
|
|
|
|
|
2017-02-22 16:24:21 +00:00
|
|
|
* Mon Apr 03 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-4
|
|
|
|
- Run llvm test-suite
|
|
|
|
|
2017-03-28 01:10:21 +00:00
|
|
|
* Mon Mar 27 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-3
|
|
|
|
- Enable eh/rtti, which are required by lldb.
|
|
|
|
|
2017-03-24 00:10:08 +00:00
|
|
|
* Fri Mar 24 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-2
|
|
|
|
- Fix clang-tools-extra build
|
|
|
|
- Fix install
|
|
|
|
|
2017-03-23 20:31:30 +00:00
|
|
|
* Thu Mar 23 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
|
2017-03-14 20:05:25 +00:00
|
|
|
- clang 4.0.0 final release
|
|
|
|
|
2017-03-20 21:39:07 +00:00
|
|
|
* Mon Mar 20 2017 David Goerger <david.goerger@yale.edu> - 3.9.1-3
|
|
|
|
- add clang-tools-extra rhbz#1328091
|
|
|
|
|
2017-03-16 13:51:38 +00:00
|
|
|
* Thu Mar 16 2017 Tom Stellard <tstellar@redhat.com> - 3.9.1-2
|
|
|
|
- Enable build-id by default rhbz#1432403
|
|
|
|
|
2017-03-01 19:13:40 +00:00
|
|
|
* Thu Mar 02 2017 Dave Airlie <airlied@redhat.com> - 3.9.1-1
|
|
|
|
- clang 3.9.1 final release
|
|
|
|
|
2017-02-10 07:32:53 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-14 19:35:19 +00:00
|
|
|
* Mon Nov 14 2016 Nathaniel McCallum <npmccallum@redhat.com> - 3.9.0-3
|
|
|
|
- Add Requires: compiler-rt to clang-libs.
|
|
|
|
- Without this, compiling with certain CFLAGS breaks.
|
|
|
|
|
2016-11-01 17:17:55 +00:00
|
|
|
* Tue Nov 1 2016 Peter Robinson <pbrobinson@fedoraproject.org> 3.9.0-2
|
|
|
|
- Rebuild for new arches
|
|
|
|
|
2016-10-14 07:18:50 +00:00
|
|
|
* Fri Oct 14 2016 Dave Airlie <airlied@redhat.com> - 3.9.0-1
|
|
|
|
- clang 3.9.0 final release
|
|
|
|
|
2016-07-01 07:20:00 +00:00
|
|
|
* Fri Jul 01 2016 Stephan Bergmann <sbergman@redhat.com> - 3.8.0-2
|
|
|
|
- Resolves: rhbz#1282645 add GCC abi_tag support
|
|
|
|
|
2016-03-10 01:01:19 +00:00
|
|
|
* Thu Mar 10 2016 Dave Airlie <airlied@redhat.com> 3.8.0-1
|
|
|
|
- clang 3.8.0 final release
|
|
|
|
|
2016-03-02 23:25:38 +00:00
|
|
|
* Thu Mar 03 2016 Dave Airlie <airlied@redhat.com> 3.8.0-0.4
|
|
|
|
- clang 3.8.0rc3
|
|
|
|
|
2016-02-24 22:45:26 +00:00
|
|
|
* Wed Feb 24 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.3
|
|
|
|
- package all libs into clang-libs.
|
|
|
|
|
2016-02-24 07:40:56 +00:00
|
|
|
* Wed Feb 24 2016 Dave Airlie <airlied@redhat.com> 3.8.0-0.2
|
|
|
|
- enable dynamic linking of clang against llvm
|
|
|
|
|
2016-02-19 00:16:41 +00:00
|
|
|
* Thu Feb 18 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.1
|
|
|
|
- clang 3.8.0rc2
|
|
|
|
|
2016-02-12 10:08:25 +00:00
|
|
|
* Fri Feb 12 2016 Dave Airlie <airlied@redhat.com> 3.7.1-4
|
|
|
|
- rebuild against latest llvm packages
|
2016-02-13 02:19:10 +00:00
|
|
|
- add BuildRequires llvm-static
|
2016-02-12 10:08:25 +00:00
|
|
|
|
2016-02-03 17:43:19 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-28 04:02:53 +00:00
|
|
|
* Thu Jan 28 2016 Dave Airlie <airlied@redhat.com> 3.7.1-2
|
|
|
|
- just accept clang includes moving to /usr/lib64, upstream don't let much else happen
|
|
|
|
|
|
|
|
* Thu Jan 28 2016 Dave Airlie <airlied@redhat.com> 3.7.1-1
|
|
|
|
- initial build in Fedora.
|
|
|
|
|
2016-01-27 14:29:14 +00:00
|
|
|
* Tue Oct 06 2015 Jan Vcelak <jvcelak@fedoraproject.org> 3.7.0-100
|
|
|
|
- initial version using cmake build system
|