2018-07-23 22:19:27 +00:00
|
|
|
%global compat_build 0
|
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
%global maj_ver 8
|
2017-09-12 02:10:03 +00:00
|
|
|
%global min_ver 0
|
2019-02-01 06:40:38 +00:00
|
|
|
%global patch_ver 0
|
2019-03-04 10:01:21 +00:00
|
|
|
%global rc_ver 3
|
2018-05-11 19:49:23 +00:00
|
|
|
|
2017-03-20 21:39:07 +00:00
|
|
|
%global clang_tools_binaries \
|
2017-09-12 02:10:03 +00:00
|
|
|
%{_bindir}/clangd \
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/clang-apply-replacements \
|
2017-03-24 00:10:08 +00:00
|
|
|
%{_bindir}/clang-change-namespace \
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/clang-include-fixer \
|
|
|
|
%{_bindir}/clang-query \
|
2018-01-24 06:30:23 +00:00
|
|
|
%{_bindir}/clang-refactor \
|
2017-03-24 00:10:08 +00:00
|
|
|
%{_bindir}/clang-reorder-fields \
|
2017-03-20 21:39:07 +00:00
|
|
|
%{_bindir}/clang-rename \
|
|
|
|
%{_bindir}/clang-tidy
|
|
|
|
|
|
|
|
%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-check \
|
|
|
|
%{_bindir}/clang-cl \
|
2017-03-24 00:10:08 +00:00
|
|
|
%{_bindir}/clang-cpp \
|
2019-02-01 06:40:38 +00:00
|
|
|
%{_bindir}/clang-extdef-mapping \
|
2017-03-24 00:10:08 +00:00
|
|
|
%{_bindir}/clang-format \
|
|
|
|
%{_bindir}/clang-import-test \
|
2018-08-14 04:40:41 +00:00
|
|
|
%{_bindir}/clang-offload-bundler \
|
|
|
|
%{_bindir}/diagtool \
|
|
|
|
%{_bindir}/hmaptool
|
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}
|
|
|
|
|
2018-01-24 06:30:23 +00:00
|
|
|
%global clang_srcdir cfe-%{version}%{?rc_ver:rc%{rc_ver}}.src
|
|
|
|
%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-03-04 10:01:21 +00:00
|
|
|
Release: 0.4%{?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
|
2018-08-14 04:40:41 +00:00
|
|
|
Source0: http://%{?rc_ver:pre}releases.llvm.org/%{version}/%{?rc_ver:rc%{rc_ver}}/%{clang_srcdir}.tar.xz
|
2018-07-23 22:19:27 +00:00
|
|
|
%if !0%{?compat_build}
|
2018-11-22 12:13:13 +00:00
|
|
|
Source1: http://%{?rc_ver:pre}releases.llvm.org/%{version}/%{?rc_ver:rc%{rc_ver}}/%{clang_tools_srcdir}.tar.xz
|
2018-07-23 22:19:27 +00:00
|
|
|
%endif
|
2016-01-27 14:29:14 +00:00
|
|
|
|
2019-02-01 06:40:38 +00:00
|
|
|
Patch4: 0002-gtest-reorg.patch
|
2019-02-01 06:43:22 +00:00
|
|
|
Patch9: 0001-Fix-uninitialized-value-in-ABIArgInfo.patch
|
2019-02-05 06:02:39 +00:00
|
|
|
Patch10: 0001-Workaround-GCC-9-bug-when-handling-bitfields.patch
|
2019-02-08 17:47:13 +00:00
|
|
|
Patch11: 0001-ToolChain-Add-lgcc_s-to-the-linker-flags-when-using-.patch
|
2017-03-24 00:10:08 +00:00
|
|
|
|
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}
|
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
|
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
|
|
|
|
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}
|
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-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
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
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.
|
|
|
|
|
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 \
|
2018-10-02 00:23:05 +00:00
|
|
|
include-fixer/find-all-symbols/tool/run-find-all-symbols.py
|
|
|
|
|
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-01 06:43:22 +00:00
|
|
|
%patch9 -p1 -b .abi-arginfo
|
2019-02-01 06:40:38 +00:00
|
|
|
%patch10 -p1 -b .bitfields
|
2019-02-08 17:47:13 +00:00
|
|
|
%patch11 -p1 -b .libcxx-fix
|
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-02-14 21:12:15 +00:00
|
|
|
%ifarch s390 s390x %{arm} %ix86
|
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-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} \
|
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
|
2019-02-01 06:40:38 +00:00
|
|
|
-DLLVM_TOOLS_BINARY_DIR=%{_libdir}/llvm \
|
2018-07-23 22:19:27 +00:00
|
|
|
-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
|
|
|
\
|
|
|
|
-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 \
|
|
|
|
-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 \
|
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-02-01 06:40:38 +00:00
|
|
|
ninja -v
|
2016-01-27 14:29:14 +00:00
|
|
|
|
|
|
|
%install
|
2019-02-01 06:40:38 +00:00
|
|
|
DESTDIR=%{buildroot} 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}
|
|
|
|
|
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-03-23 18:03:55 +00:00
|
|
|
# Add clang++-{version} sylink
|
2019-02-01 06:40:38 +00:00
|
|
|
ln -s clang %{buildroot}%{_bindir}/clang++
|
|
|
|
ln -s clang %{buildroot}%{_bindir}/clang-cl
|
|
|
|
ln -s clang %{buildroot}%{_bindir}/clang-cpp
|
2018-09-13 16:51:14 +00:00
|
|
|
ln -s clang++ %{buildroot}%{_bindir}/clang++-%{maj_ver}
|
2018-03-23 18:03:55 +00:00
|
|
|
|
2019-03-04 10:01:21 +00:00
|
|
|
# Also install clang in /usr/lib64/llvm for compatibility with llvm-config --bindir
|
|
|
|
pushd %{buildroot}%{_libdir}/llvm
|
|
|
|
for tool in %{clang_binaries}
|
|
|
|
do
|
|
|
|
ln -s ../../${tool}
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
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-02-01 06:40:38 +00:00
|
|
|
PATH=%{_libdir}/llvm:$PATH 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
|
|
|
|
false
|
|
|
|
%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}
|
2016-02-19 00:16:41 +00:00
|
|
|
%{_bindir}/c-index-test
|
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-08-14 04:40:41 +00:00
|
|
|
%{_mandir}/man1/diagtool.1.gz
|
2018-01-26 17:17:50 +00:00
|
|
|
%{_emacs_sitestartdir}/clang-format.el
|
2018-02-01 20:18:16 +00:00
|
|
|
%{_datadir}/clang/clang-format.py*
|
|
|
|
%{_datadir}/clang/clang-format-diff.py*
|
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/*
|
2019-03-04 10:01:21 +00:00
|
|
|
%{_libdir}/llvm/*
|
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}
|
|
|
|
%{_bindir}/find-all-symbols
|
|
|
|
%{_bindir}/modularize
|
2018-01-26 17:17:50 +00:00
|
|
|
%{_emacs_sitestartdir}/clang-rename.el
|
|
|
|
%{_emacs_sitestartdir}/clang-include-fixer.el
|
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
|
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
|
|
|
|
- Drop python2 dependency from clang-tools-extra
|
|
|
|
|
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
|