2010-05-26 18:57:22 +00:00
|
|
|
# Build options:
|
|
|
|
#
|
|
|
|
# --with doxygen
|
|
|
|
# The doxygen docs are HUGE, so they are not built by default.
|
2012-03-30 09:58:41 +00:00
|
|
|
%bcond_with doxygen
|
|
|
|
|
|
|
|
# clang header paths are hard-coded at compile time
|
|
|
|
# and need adjustment whenever there's a new GCC version
|
2012-09-24 07:16:58 +00:00
|
|
|
%global gcc_version 4.7.2
|
2010-05-26 18:57:22 +00:00
|
|
|
|
2010-09-15 14:30:46 +00:00
|
|
|
%ifarch s390 s390x sparc64
|
2010-07-17 13:43:22 +00:00
|
|
|
# No ocaml on these arches
|
|
|
|
%bcond_with ocaml
|
|
|
|
%else
|
|
|
|
%bcond_without ocaml
|
|
|
|
%endif
|
|
|
|
|
2011-12-05 22:44:54 +00:00
|
|
|
%if 0%{?rhel} >= 7
|
2012-03-30 09:58:41 +00:00
|
|
|
%bcond_with clang
|
2011-12-14 17:52:23 +00:00
|
|
|
ExcludeArch: s390 s390x ppc ppc64
|
2011-12-05 22:44:54 +00:00
|
|
|
%else
|
2012-03-30 09:58:41 +00:00
|
|
|
%bcond_without clang
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
|
|
|
|
2011-12-11 10:44:19 +00:00
|
|
|
#global prerel rcX
|
2011-11-11 17:59:32 +00:00
|
|
|
%global downloadurl http://llvm.org/%{?prerel:pre-}releases/%{version}%{?prerel:/%{prerel}}
|
2011-03-10 21:25:04 +00:00
|
|
|
|
2012-02-24 09:59:11 +00:00
|
|
|
# gold linker support
|
|
|
|
# arch list from binutils spec
|
|
|
|
%global gold_arches %ix86 x86_64
|
|
|
|
%ifarch %gold_arches
|
|
|
|
%bcond_without gold
|
2012-02-24 11:37:47 +00:00
|
|
|
%else
|
|
|
|
%bcond_with gold
|
2012-02-24 09:59:11 +00:00
|
|
|
%endif
|
|
|
|
|
2009-03-05 00:27:31 +00:00
|
|
|
Name: llvm
|
2012-06-03 08:33:39 +00:00
|
|
|
Version: 3.1
|
2012-10-29 14:25:55 +00:00
|
|
|
Release: 12%{?dist}
|
2009-03-05 00:27:31 +00:00
|
|
|
Summary: The Low Level Virtual Machine
|
|
|
|
|
|
|
|
Group: Development/Languages
|
|
|
|
License: NCSA
|
|
|
|
URL: http://llvm.org/
|
2012-06-03 08:33:39 +00:00
|
|
|
Source0: %{downloadurl}/llvm-%{version}%{?prerel:%{prerel}}.src.tar.gz
|
|
|
|
Source1: %{downloadurl}/clang-%{version}%{?prerel:%{prerel}}.src.tar.gz
|
2011-08-01 16:50:42 +00:00
|
|
|
# multilib fixes
|
|
|
|
Source2: llvm-Config-config.h
|
|
|
|
Source3: llvm-Config-llvm-config.h
|
|
|
|
|
2012-02-25 08:41:59 +00:00
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
# Data files should be installed with timestamps preserved
|
2010-03-28 11:54:59 +00:00
|
|
|
Patch0: llvm-2.6-timestamp.patch
|
2012-06-03 08:33:39 +00:00
|
|
|
|
|
|
|
# r600 llvm and clang patches
|
|
|
|
Patch600: 0001-r600-Add-some-intrinsic-definitions.patch
|
|
|
|
Patch601: 0002-r600-Add-get_global_size-and-get_local_size-intrinsi.patch
|
|
|
|
|
|
|
|
Patch610: 0001-Add-r600-TargetInfo.patch
|
|
|
|
Patch611: 0002-r600-Add-some-target-builtins.patch
|
|
|
|
Patch612: 0003-r600-Add-read_global_size-and-read_local_size-builti.patch
|
2009-03-05 00:27:31 +00:00
|
|
|
|
2012-07-13 07:33:20 +00:00
|
|
|
# ocaml
|
2012-07-13 09:28:31 +00:00
|
|
|
Patch700: llvm-fix-ghc.patch
|
2012-07-13 07:33:20 +00:00
|
|
|
|
2009-03-05 00:27:31 +00:00
|
|
|
BuildRequires: bison
|
|
|
|
BuildRequires: chrpath
|
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: gcc-c++ >= 3.4
|
|
|
|
BuildRequires: groff
|
2011-08-01 16:50:42 +00:00
|
|
|
BuildRequires: libffi-devel
|
2009-03-05 00:27:31 +00:00
|
|
|
BuildRequires: libtool-ltdl-devel
|
2012-02-24 09:59:11 +00:00
|
|
|
%if %{with gold}
|
|
|
|
BuildRequires: binutils-devel
|
|
|
|
%endif
|
2010-07-17 13:43:22 +00:00
|
|
|
%if %{with ocaml}
|
2009-03-05 00:27:31 +00:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
2010-07-17 13:43:22 +00:00
|
|
|
%endif
|
2012-02-05 17:30:43 +00:00
|
|
|
BuildRequires: zip
|
2009-09-06 03:00:39 +00:00
|
|
|
# for DejaGNU test suite
|
2009-09-07 17:24:07 +00:00
|
|
|
BuildRequires: dejagnu tcl-devel python
|
2010-05-24 09:24:22 +00:00
|
|
|
# for doxygen documentation
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with doxygen}
|
2009-03-05 00:27:31 +00:00
|
|
|
BuildRequires: doxygen graphviz
|
2010-05-26 18:57:22 +00:00
|
|
|
%endif
|
2012-02-07 02:00:49 +00:00
|
|
|
Requires: llvm-libs%{?_isa} = %{version}-%{release}
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
%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.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
2009-03-05 00:27:31 +00:00
|
|
|
Summary: Libraries and header files for LLVM
|
|
|
|
Group: Development/Languages
|
2012-02-07 02:00:49 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2011-08-03 09:34:38 +00:00
|
|
|
Requires: libffi-devel
|
2009-03-05 00:27:31 +00:00
|
|
|
Requires: libstdc++-devel >= 3.4
|
2009-09-30 01:42:02 +00:00
|
|
|
Provides: llvm-static = %{version}-%{release}
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2011-08-01 16:50:42 +00:00
|
|
|
Requires(posttrans): /usr/sbin/alternatives
|
|
|
|
Requires(postun): /usr/sbin/alternatives
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
This package contains library and header files needed to develop new
|
|
|
|
native programs that use the LLVM infrastructure.
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
2009-03-05 00:27:31 +00:00
|
|
|
Summary: Documentation for LLVM
|
2009-09-09 15:57:46 +00:00
|
|
|
Group: Documentation
|
2010-05-24 09:38:59 +00:00
|
|
|
BuildArch: noarch
|
2009-03-05 01:25:55 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2010-06-09 18:51:39 +00:00
|
|
|
# might seem redundant, but needed to kill off the old arch-ed -doc
|
|
|
|
# subpackage
|
|
|
|
Obsoletes: %{name}-doc < %{version}-%{release}
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation for the LLVM compiler infrastructure.
|
|
|
|
|
|
|
|
|
2011-03-17 17:24:51 +00:00
|
|
|
%package libs
|
|
|
|
Summary: LLVM shared libraries
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
Shared libraries for the LLVM compiler infrastructure.
|
|
|
|
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2009-09-09 15:57:46 +00:00
|
|
|
%package -n clang
|
2010-05-02 21:33:16 +00:00
|
|
|
Summary: A C language family front-end for LLVM
|
2009-09-07 06:59:47 +00:00
|
|
|
License: NCSA
|
2009-03-05 00:27:31 +00:00
|
|
|
Group: Development/Languages
|
2012-02-07 02:00:49 +00:00
|
|
|
Requires: llvm%{?_isa} = %{version}-%{release}
|
2012-03-30 09:58:41 +00:00
|
|
|
# clang requires gcc, clang++ requires libstdc++-devel
|
|
|
|
Requires: gcc
|
|
|
|
Requires: libstdc++-devel = %{gcc_version}
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
%description -n clang
|
2009-09-07 06:59:47 +00:00
|
|
|
clang: noun
|
|
|
|
1. A loud, resonant, metallic sound.
|
|
|
|
2. The strident call of a crane or goose.
|
|
|
|
3. C-language family front-end toolkit.
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
The goal of the Clang project is to create a new C, C++, Objective C
|
2009-09-09 15:57:46 +00:00
|
|
|
and Objective C++ front-end for the LLVM compiler. Its tools are built
|
2010-05-02 21:33:16 +00:00
|
|
|
as libraries and designed to be loosely-coupled and extensible.
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
|
2010-03-28 11:54:59 +00:00
|
|
|
%package -n clang-devel
|
|
|
|
Summary: Header files for clang
|
|
|
|
Group: Development/Languages
|
2012-02-07 02:00:49 +00:00
|
|
|
Requires: clang%{?_isa} = %{version}-%{release}
|
2010-03-28 11:54:59 +00:00
|
|
|
|
|
|
|
%description -n clang-devel
|
|
|
|
This package contains header files for the Clang compiler.
|
|
|
|
|
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
%package -n clang-analyzer
|
2009-09-08 03:19:39 +00:00
|
|
|
Summary: A source code analysis framework
|
|
|
|
License: NCSA
|
|
|
|
Group: Development/Languages
|
2012-02-07 02:00:49 +00:00
|
|
|
Requires: clang%{?_isa} = %{version}-%{release}
|
2009-09-08 03:19:39 +00:00
|
|
|
# not picked up automatically since files are currently not instaled
|
|
|
|
# in standard Python hierarchies yet
|
|
|
|
Requires: python
|
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
%description -n clang-analyzer
|
2009-09-08 03:19:39 +00:00
|
|
|
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.
|
|
|
|
|
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
%package -n clang-doc
|
|
|
|
Summary: Documentation for Clang
|
|
|
|
Group: Documentation
|
2010-05-24 09:38:59 +00:00
|
|
|
BuildArch: noarch
|
2009-09-09 15:57:46 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n clang-doc
|
|
|
|
Documentation for the Clang compiler front-end.
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2009-09-09 15:57:46 +00:00
|
|
|
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with doxygen}
|
2008-01-21 17:33:11 +00:00
|
|
|
%package apidoc
|
2009-03-05 00:27:31 +00:00
|
|
|
Summary: API documentation for LLVM
|
|
|
|
Group: Development/Languages
|
2010-05-24 09:24:22 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
Requires: %{name}-doc = %{version}-%{release}
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description apidoc
|
|
|
|
API documentation for the LLVM compiler infrastructure.
|
2010-05-24 09:24:22 +00:00
|
|
|
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2010-05-24 09:24:22 +00:00
|
|
|
%package -n clang-apidoc
|
|
|
|
Summary: API documentation for Clang
|
|
|
|
Group: Development/Languages
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: clang-doc = %{version}-%{release}
|
|
|
|
|
|
|
|
|
2010-05-24 09:26:17 +00:00
|
|
|
%description -n clang-apidoc
|
2010-05-24 09:24:22 +00:00
|
|
|
API documentation for the Clang compiler.
|
2010-05-26 18:57:22 +00:00
|
|
|
%endif
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
|
2010-07-17 13:43:22 +00:00
|
|
|
%if %{with ocaml}
|
2009-03-05 00:27:31 +00:00
|
|
|
%package ocaml
|
|
|
|
Summary: OCaml binding for LLVM
|
|
|
|
Group: Development/Libraries
|
2012-02-07 02:00:49 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2009-03-05 00:27:31 +00:00
|
|
|
Requires: ocaml-runtime
|
2008-12-12 05:46:36 +00:00
|
|
|
|
2009-03-05 00:27:31 +00:00
|
|
|
%description ocaml
|
2008-12-12 05:46:36 +00:00
|
|
|
OCaml binding for LLVM.
|
|
|
|
|
|
|
|
|
|
|
|
%package ocaml-devel
|
2009-03-05 00:27:31 +00:00
|
|
|
Summary: Development files for %{name}-ocaml
|
|
|
|
Group: Development/Libraries
|
2012-02-07 02:00:49 +00:00
|
|
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-ocaml%{?_isa} = %{version}-%{release}
|
2009-09-30 16:48:32 +00:00
|
|
|
Requires: ocaml
|
2008-12-12 05:46:36 +00:00
|
|
|
|
2009-03-05 00:27:31 +00:00
|
|
|
%description ocaml-devel
|
2008-12-12 05:46:36 +00:00
|
|
|
The %{name}-ocaml-devel package contains libraries and signature files
|
|
|
|
for developing applications that use %{name}-ocaml.
|
|
|
|
|
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
%package ocaml-doc
|
|
|
|
Summary: Documentation for LLVM's OCaml binding
|
|
|
|
Group: Documentation
|
2010-05-24 09:24:22 +00:00
|
|
|
BuildArch: noarch
|
2009-09-07 06:59:47 +00:00
|
|
|
Requires: %{name}-ocaml = %{version}-%{release}
|
|
|
|
|
|
|
|
%description ocaml-doc
|
|
|
|
HTML documentation for LLVM's OCaml binding.
|
2010-07-17 13:43:22 +00:00
|
|
|
%endif
|
2009-09-07 06:59:47 +00:00
|
|
|
|
|
|
|
|
2008-01-21 17:33:11 +00:00
|
|
|
%prep
|
2012-03-30 09:58:41 +00:00
|
|
|
%setup -q -n llvm-%{version}%{?prerel}.src %{?with_clang:-a1}
|
2011-12-05 22:44:54 +00:00
|
|
|
rm -r -f tools/clang
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2011-12-11 10:44:19 +00:00
|
|
|
mv clang-%{version}%{?prerel}.src tools/clang
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2011-08-01 16:50:42 +00:00
|
|
|
# llvm patches
|
2010-03-28 11:54:59 +00:00
|
|
|
%patch0 -p1 -b .timestamp
|
2012-06-03 08:33:39 +00:00
|
|
|
#patch1 -p1 -b .link_llvmgold_to_lto
|
|
|
|
|
|
|
|
# r600 llvm patch
|
|
|
|
%patch600 -p1 -b .r600
|
|
|
|
%patch601 -p1 -b .r601
|
2011-08-01 16:50:42 +00:00
|
|
|
|
|
|
|
# clang patches
|
2012-08-14 07:50:03 +00:00
|
|
|
%if %{with clang}
|
2012-06-03 08:33:39 +00:00
|
|
|
pushd tools/clang
|
|
|
|
%patch610 -p1 -b .r610
|
|
|
|
%patch611 -p1 -b .r611
|
|
|
|
%patch612 -p1 -b .r612
|
|
|
|
popd
|
2012-08-14 07:50:03 +00:00
|
|
|
%endif
|
2010-03-28 11:54:59 +00:00
|
|
|
|
2012-07-13 09:28:31 +00:00
|
|
|
%patch700 -p0 -b .ghc
|
2012-07-13 07:33:20 +00:00
|
|
|
|
2012-02-05 17:30:43 +00:00
|
|
|
# fix ld search path
|
2012-03-30 09:58:41 +00:00
|
|
|
sed -i 's|/lib /usr/lib $lt_ld_extra|%{_libdir} $lt_ld_extra|' \
|
2012-02-05 17:30:43 +00:00
|
|
|
./configure
|
2009-09-09 05:04:12 +00:00
|
|
|
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
%build
|
2012-03-26 17:00:45 +00:00
|
|
|
# Build without -ftree-pre as a workaround for clang segfaulting on x86_64.
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=791365
|
|
|
|
%global optflags %(echo %{optflags} | sed 's/-O2 /-O2 -fno-tree-pre /')
|
|
|
|
|
2009-09-06 03:00:39 +00:00
|
|
|
# Disabling assertions now, rec. by pure and needed for OpenGTL
|
2010-05-24 09:24:22 +00:00
|
|
|
%configure \
|
2009-09-06 03:00:39 +00:00
|
|
|
--prefix=%{_prefix} \
|
2009-09-07 06:59:47 +00:00
|
|
|
--libdir=%{_libdir}/%{name} \
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with doxygen}
|
2010-05-24 09:24:22 +00:00
|
|
|
--enable-doxygen \
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2012-02-24 09:59:11 +00:00
|
|
|
%if %{with gold}
|
|
|
|
--with-binutils-include=%{_includedir} \
|
|
|
|
%endif
|
2011-12-05 22:44:54 +00:00
|
|
|
%if 0%{?rhel} >= 7
|
|
|
|
--enable-targets=host \
|
2012-05-25 13:47:38 +00:00
|
|
|
%endif
|
|
|
|
%ifarch armv7hl armv7l
|
|
|
|
--with-cpu=cortex-a8 \
|
|
|
|
--with-tune=cortex-a8 \
|
|
|
|
--with-arch=armv7-a \
|
|
|
|
--with-float=hard \
|
|
|
|
--with-fpu=vfpv3-d16 \
|
|
|
|
--with-abi=aapcs-linux \
|
2010-05-26 18:57:22 +00:00
|
|
|
%endif
|
2009-09-06 03:00:39 +00:00
|
|
|
--disable-assertions \
|
2008-01-21 17:33:11 +00:00
|
|
|
--enable-debug-runtime \
|
|
|
|
--enable-jit \
|
2011-08-01 16:50:42 +00:00
|
|
|
--enable-libffi \
|
2011-11-11 17:59:32 +00:00
|
|
|
--enable-shared
|
2009-09-06 03:00:39 +00:00
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
# FIXME file this
|
2009-09-06 03:00:39 +00:00
|
|
|
# configure does not properly specify libdir
|
2009-09-07 06:59:47 +00:00
|
|
|
sed -i 's|(PROJ_prefix)/lib|(PROJ_prefix)/%{_lib}/%{name}|g' Makefile.config
|
2008-12-12 05:46:36 +00:00
|
|
|
|
2012-06-03 14:42:52 +00:00
|
|
|
# FIXME upstream need to fix this
|
|
|
|
# llvm-config.cpp hardcodes lib in it
|
|
|
|
sed -i 's|ActiveLibDir = ActivePrefix + "/lib"|ActiveLibDir = ActivePrefix + "/%{_lib}/%{name}"|g' tools/llvm-config/llvm-config.cpp
|
|
|
|
|
2012-02-05 17:30:43 +00:00
|
|
|
make %{_smp_mflags} REQUIRES_RTTI=1 VERBOSE=1 \
|
2009-09-10 03:09:21 +00:00
|
|
|
%ifarch ppc
|
2012-03-17 21:36:00 +00:00
|
|
|
OPTIMIZE_OPTION="%{optflags} -fno-var-tracking-assignments -UPPC"
|
2009-09-10 03:09:21 +00:00
|
|
|
%else
|
|
|
|
OPTIMIZE_OPTION="%{optflags}"
|
|
|
|
%endif
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2012-02-07 08:40:34 +00:00
|
|
|
# workaround for http://llvm.org/bugs/show_bug.cgi?id=11177
|
|
|
|
%if %{with ocaml}
|
|
|
|
cp -p bindings/ocaml/llvm/META.llvm bindings/ocaml/llvm/Release/
|
|
|
|
%endif
|
2011-11-11 17:59:32 +00:00
|
|
|
|
2008-12-12 05:46:36 +00:00
|
|
|
make install DESTDIR=%{buildroot} \
|
2009-09-07 06:59:47 +00:00
|
|
|
PROJ_docsdir=/moredocs
|
|
|
|
|
2011-08-01 16:50:42 +00:00
|
|
|
# multilib fixes
|
|
|
|
mv %{buildroot}%{_bindir}/llvm-config{,-%{__isa_bits}}
|
|
|
|
|
|
|
|
pushd %{buildroot}%{_includedir}/llvm/Config
|
|
|
|
mv config.h config-%{__isa_bits}.h
|
|
|
|
cp -p %{SOURCE2} config.h
|
|
|
|
mv llvm-config.h llvm-config-%{__isa_bits}.h
|
|
|
|
cp -p %{SOURCE3} llvm-config.h
|
|
|
|
popd
|
|
|
|
|
2010-03-28 11:54:59 +00:00
|
|
|
# Create ld.so.conf.d entry
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d
|
2010-05-02 21:33:16 +00:00
|
|
|
cat >> %{buildroot}%{_sysconfdir}/ld.so.conf.d/llvm-%{_arch}.conf << EOF
|
2010-03-28 11:54:59 +00:00
|
|
|
%{_libdir}/llvm
|
|
|
|
EOF
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2009-09-07 22:44:07 +00:00
|
|
|
# Static analyzer not installed by default:
|
|
|
|
# http://clang-analyzer.llvm.org/installation#OtherPlatforms
|
2010-03-28 11:54:59 +00:00
|
|
|
mkdir -p %{buildroot}%{_libdir}/clang-analyzer
|
2009-09-08 03:19:39 +00:00
|
|
|
# create launchers
|
|
|
|
for f in scan-{build,view}; do
|
2010-03-28 11:54:59 +00:00
|
|
|
ln -s %{_libdir}/clang-analyzer/$f/$f %{buildroot}%{_bindir}/$f
|
2009-09-08 03:19:39 +00:00
|
|
|
done
|
|
|
|
|
2010-03-28 11:54:59 +00:00
|
|
|
(cd tools/clang/tools && cp -pr scan-{build,view} \
|
|
|
|
%{buildroot}%{_libdir}/clang-analyzer/)
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2009-09-07 22:44:07 +00:00
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
# Move documentation back to build directory
|
|
|
|
#
|
2009-09-09 15:57:46 +00:00
|
|
|
mv %{buildroot}/moredocs .
|
2010-07-17 13:43:22 +00:00
|
|
|
rm -f moredocs/*.tar.gz
|
|
|
|
rm -f moredocs/ocamldoc/html/*.tar.gz
|
2009-09-09 15:57:46 +00:00
|
|
|
|
2010-05-24 09:24:22 +00:00
|
|
|
# and separate the apidoc
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with doxygen}
|
2010-05-24 09:24:22 +00:00
|
|
|
mv moredocs/html/doxygen apidoc
|
|
|
|
mv tools/clang/docs/doxygen/html clang-apidoc
|
2010-05-26 18:57:22 +00:00
|
|
|
%endif
|
2010-05-24 09:24:22 +00:00
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
# And prepare Clang documentation
|
|
|
|
#
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2009-09-09 15:57:46 +00:00
|
|
|
mkdir clang-docs
|
2011-11-11 17:59:32 +00:00
|
|
|
for f in LICENSE.TXT NOTES.txt README.txt; do # TODO.txt; do
|
2009-09-09 15:57:46 +00:00
|
|
|
ln tools/clang/$f clang-docs/
|
|
|
|
done
|
|
|
|
rm -rf tools/clang/docs/{doxygen*,Makefile*,*.graffle,tools}
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2009-09-09 15:57:46 +00:00
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
|
2010-11-12 15:12:10 +00:00
|
|
|
#find %%{buildroot} -name .dir -print0 | xargs -0r rm -f
|
2008-01-21 17:33:11 +00:00
|
|
|
file %{buildroot}/%{_bindir}/* | awk -F: '$2~/ELF/{print $1}' | xargs -r chrpath -d
|
2009-09-07 06:59:47 +00:00
|
|
|
file %{buildroot}/%{_libdir}/llvm/*.so | awk -F: '$2~/ELF/{print $1}' | xargs -r chrpath -d
|
2010-11-12 15:12:10 +00:00
|
|
|
#chrpath -d %%{buildroot}/%%{_libexecdir}/clang-cc
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
# Get rid of erroneously installed example files.
|
2009-09-07 06:59:47 +00:00
|
|
|
rm %{buildroot}%{_libdir}/%{name}/*LLVMHello.*
|
2008-12-12 05:46:36 +00:00
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
# FIXME file this bug
|
|
|
|
sed -i 's,ABS_RUN_DIR/lib",ABS_RUN_DIR/%{_lib}/%{name}",' \
|
2011-08-01 16:50:42 +00:00
|
|
|
%{buildroot}%{_bindir}/llvm-config-%{__isa_bits}
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2009-09-07 14:11:08 +00:00
|
|
|
chmod -x %{buildroot}%{_libdir}/%{name}/*.a
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2009-03-05 01:25:55 +00:00
|
|
|
# remove documentation makefiles:
|
|
|
|
# they require the build directory to work
|
2009-09-07 06:59:47 +00:00
|
|
|
find examples -name 'Makefile' | xargs -0r rm -f
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2008-12-12 05:46:36 +00:00
|
|
|
|
2011-08-01 16:50:42 +00:00
|
|
|
%check
|
2011-08-01 22:03:34 +00:00
|
|
|
# the Koji build server does not seem to have enough RAM
|
|
|
|
# for the default 16 threads
|
2011-08-06 15:06:07 +00:00
|
|
|
|
2012-02-07 02:00:49 +00:00
|
|
|
# LLVM test suite failing on ARM, PPC64 and s390(x)
|
2011-10-11 11:35:38 +00:00
|
|
|
make check LIT_ARGS="-v -j4" \
|
2012-02-07 02:00:49 +00:00
|
|
|
%ifarch %{arm} ppc64 s390 s390x
|
|
|
|
| tee llvm-testlog-%{_arch}.txt
|
2011-10-11 11:35:38 +00:00
|
|
|
%else
|
|
|
|
%{nil}
|
2011-08-06 15:06:07 +00:00
|
|
|
%endif
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2011-10-11 11:35:38 +00:00
|
|
|
# clang test suite failing on PPC and s390(x)
|
2012-02-05 17:30:43 +00:00
|
|
|
# FIXME:
|
|
|
|
# unexpected failures on all platforms with GCC 4.7.0.
|
|
|
|
# capture logs
|
2011-10-11 11:35:38 +00:00
|
|
|
make -C tools/clang/test TESTARGS="-v -j4" \
|
2012-02-07 02:00:49 +00:00
|
|
|
| tee clang-testlog-%{_arch}.txt
|
2012-02-05 17:30:43 +00:00
|
|
|
#ifarch ppc ppc64 s390 s390x
|
|
|
|
# || :
|
|
|
|
#else
|
|
|
|
# %{nil}
|
|
|
|
#endif
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2011-08-01 16:50:42 +00:00
|
|
|
|
|
|
|
|
2011-03-17 18:03:50 +00:00
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
%postun libs -p /sbin/ldconfig
|
2011-12-05 22:44:54 +00:00
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2011-12-05 22:44:54 +00:00
|
|
|
%post -n clang -p /sbin/ldconfig
|
2011-03-17 18:03:50 +00:00
|
|
|
%postun -n clang -p /sbin/ldconfig
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
|
2011-08-01 16:50:42 +00:00
|
|
|
%posttrans devel
|
|
|
|
# link llvm-config to the platform-specific file;
|
|
|
|
# use ISA bits as priority so that 64-bit is preferred
|
|
|
|
# over 32-bit if both are installed
|
|
|
|
alternatives \
|
|
|
|
--install \
|
|
|
|
%{_bindir}/llvm-config \
|
|
|
|
llvm-config \
|
|
|
|
%{_bindir}/llvm-config-%{__isa_bits} \
|
|
|
|
%{__isa_bits}
|
|
|
|
|
|
|
|
%postun devel
|
|
|
|
if [ $1 -eq 0 ]; then
|
|
|
|
alternatives --remove llvm-config \
|
|
|
|
%{_bindir}/llvm-config-%{__isa_bits}
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|
2008-01-21 17:33:11 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2011-03-17 16:36:08 +00:00
|
|
|
%doc CREDITS.TXT LICENSE.TXT README.txt
|
2012-02-07 02:00:49 +00:00
|
|
|
%ifarch %{arm} ppc64 s390 s390x
|
|
|
|
%doc llvm-testlog-%{_arch}.txt
|
|
|
|
%endif
|
2008-01-21 17:33:11 +00:00
|
|
|
%{_bindir}/bugpoint
|
|
|
|
%{_bindir}/llc
|
|
|
|
%{_bindir}/lli
|
2011-08-01 16:50:42 +00:00
|
|
|
%exclude %{_bindir}/llvm-config-%{__isa_bits}
|
2008-01-21 17:33:11 +00:00
|
|
|
%{_bindir}/llvm*
|
2011-03-10 21:40:20 +00:00
|
|
|
%{_bindir}/macho-dump
|
2008-01-21 17:33:11 +00:00
|
|
|
%{_bindir}/opt
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2009-09-08 03:19:39 +00:00
|
|
|
%exclude %{_mandir}/man1/clang.1.*
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2010-03-28 11:54:59 +00:00
|
|
|
%doc %{_mandir}/man1/*.1.*
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2011-08-01 16:50:42 +00:00
|
|
|
%{_bindir}/llvm-config-%{__isa_bits}
|
2008-01-21 17:33:11 +00:00
|
|
|
%{_includedir}/%{name}
|
|
|
|
%{_includedir}/%{name}-c
|
2010-03-28 11:54:59 +00:00
|
|
|
%{_libdir}/%{name}/*.a
|
2009-09-07 06:59:47 +00:00
|
|
|
|
2011-03-17 17:24:51 +00:00
|
|
|
%files libs
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/llvm-%{_arch}.conf
|
|
|
|
%dir %{_libdir}/%{name}
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2011-03-17 17:24:51 +00:00
|
|
|
%exclude %{_libdir}/%{name}/libclang.so
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2011-03-17 17:24:51 +00:00
|
|
|
%{_libdir}/%{name}/*.so
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2009-09-09 15:57:46 +00:00
|
|
|
%files -n clang
|
2009-09-07 06:59:47 +00:00
|
|
|
%defattr(-,root,root,-)
|
2012-02-07 02:00:49 +00:00
|
|
|
%doc clang-docs/* clang-testlog-%{_arch}.txt
|
2009-09-07 06:59:47 +00:00
|
|
|
%{_bindir}/clang*
|
2011-11-11 17:59:32 +00:00
|
|
|
%{_bindir}/c-index-test
|
2011-03-17 17:24:51 +00:00
|
|
|
%{_libdir}/%{name}/libclang.so
|
2009-09-09 15:57:46 +00:00
|
|
|
%{_prefix}/lib/clang
|
2009-09-08 03:19:39 +00:00
|
|
|
%doc %{_mandir}/man1/clang.1.*
|
|
|
|
|
2010-03-28 11:54:59 +00:00
|
|
|
%files -n clang-devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_includedir}/clang
|
|
|
|
%{_includedir}/clang-c
|
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
%files -n clang-analyzer
|
2009-09-08 03:19:39 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/scan-build
|
|
|
|
%{_bindir}/scan-view
|
|
|
|
%{_libdir}/clang-analyzer
|
2009-09-07 06:59:47 +00:00
|
|
|
|
2009-09-09 15:57:46 +00:00
|
|
|
%files -n clang-doc
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc tools/clang/docs/*
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2009-09-09 15:57:46 +00:00
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
%files doc
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc examples moredocs/html
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2010-07-17 13:43:22 +00:00
|
|
|
%if %{with ocaml}
|
2008-12-12 05:46:36 +00:00
|
|
|
%files ocaml
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/ocaml/*.cma
|
|
|
|
%{_libdir}/ocaml/*.cmi
|
2011-11-11 17:59:32 +00:00
|
|
|
%{_libdir}/ocaml/META.llvm
|
2008-12-12 05:46:36 +00:00
|
|
|
|
|
|
|
%files ocaml-devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/ocaml/*.a
|
|
|
|
%{_libdir}/ocaml/*.cmx*
|
|
|
|
%{_libdir}/ocaml/*.mli
|
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
%files ocaml-doc
|
2008-01-21 17:33:11 +00:00
|
|
|
%defattr(-,root,root,-)
|
2009-09-07 06:59:47 +00:00
|
|
|
%doc moredocs/ocamldoc/html/*
|
2010-07-17 13:43:22 +00:00
|
|
|
%endif
|
2008-01-21 17:33:11 +00:00
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with doxygen}
|
2008-01-21 17:33:11 +00:00
|
|
|
%files apidoc
|
|
|
|
%defattr(-,root,root,-)
|
2010-05-24 09:24:22 +00:00
|
|
|
%doc apidoc/*
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
%if %{with clang}
|
2010-05-24 09:26:17 +00:00
|
|
|
%files -n clang-apidoc
|
2010-05-24 09:24:22 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc clang-apidoc/*
|
2010-05-26 18:57:22 +00:00
|
|
|
%endif
|
2011-12-05 22:44:54 +00:00
|
|
|
%endif
|
2008-01-21 17:33:11 +00:00
|
|
|
|
|
|
|
%changelog
|
2012-10-29 14:25:55 +00:00
|
|
|
* Mon Oct 29 2012 Richard W.M. Jones <rjones@redhat.com> - 3.1-12
|
|
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
|
2012-09-24 08:49:03 +00:00
|
|
|
* Mon Sep 24 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-11
|
|
|
|
- Actually build against GCC 4.7.2
|
|
|
|
|
2012-09-24 07:16:58 +00:00
|
|
|
* Mon Sep 24 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-10
|
|
|
|
- Rebuild for GCC 4.7.2
|
|
|
|
|
2012-08-14 07:50:03 +00:00
|
|
|
* Tue Aug 14 2012 Dan Horák <dan[at]danny.cz> - 3.1-9
|
|
|
|
- Apply clang patches only when clang is being built
|
|
|
|
|
2012-07-19 22:02:02 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-13 09:28:31 +00:00
|
|
|
* Fri Jul 13 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1-7
|
|
|
|
- Rename patch as it actually fixes Haskell
|
|
|
|
|
2012-07-13 07:33:20 +00:00
|
|
|
* Thu Jul 12 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1-6
|
|
|
|
- Add patch to fix building OCAML on ARM
|
|
|
|
|
2012-07-04 14:21:24 +00:00
|
|
|
* Wed Jul 4 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-5
|
|
|
|
- Actually set runtime dependency on libstdc++ 4.7.1
|
|
|
|
|
2012-07-03 08:36:16 +00:00
|
|
|
* Mon Jul 2 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1-4
|
|
|
|
- Rebuild for new libstdc++ bump
|
|
|
|
|
2012-06-10 20:43:17 +00:00
|
|
|
* Sun Jun 10 2012 Richard W.M. Jones <rjones@redhat.com> - 3.1-3
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-06-08 16:48:35 +00:00
|
|
|
* Fri Jun 8 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-2
|
|
|
|
- Rebuild for ocaml 4.00.0 beta
|
|
|
|
|
2012-06-03 08:33:39 +00:00
|
|
|
* Sun Jun 03 2012 Dave Airlie <airlied@redhat.com> 3.1-1
|
|
|
|
- rebase to 3.1 + add r600 patches from Tom Stellar
|
|
|
|
|
2012-05-25 13:47:38 +00:00
|
|
|
* Fri May 25 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0-13
|
|
|
|
- Add compiler build options for ARM hardfp
|
|
|
|
|
2012-05-06 09:04:00 +00:00
|
|
|
* Sun May 6 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0-12
|
|
|
|
- Bump build
|
|
|
|
|
2012-03-30 09:58:41 +00:00
|
|
|
* Fri Mar 30 2012 Michel Alexandre Salim <michel@hermione.localdomain> - 3.0-11
|
|
|
|
- Replace overly-broad dependency on gcc-c++ with gcc and libstdc++-devel
|
|
|
|
- Pin clang's dependency on libstdc++-devel to the version used for building
|
|
|
|
- Standardize on bcond for conditional build options
|
|
|
|
- Remove /lib from search path, everything is now in /usr/lib*
|
|
|
|
|
2012-03-26 17:00:45 +00:00
|
|
|
* Mon Mar 26 2012 Kalev Lember <kalevlember@gmail.com> - 3.0-10
|
|
|
|
- Build without -ftree-pre as a workaround for clang segfaulting
|
|
|
|
on x86_64 (#791365)
|
|
|
|
|
2012-03-17 21:36:00 +00:00
|
|
|
* Sat Mar 17 2012 Karsten Hopp <karsten@redhat.com> 3.0-9
|
|
|
|
- undefine PPC on ppc as a temporary workaround for
|
|
|
|
http://llvm.org/bugs/show_bug.cgi?id=10969 and
|
|
|
|
RHBZ#769803
|
|
|
|
|
2012-02-25 08:41:59 +00:00
|
|
|
* Sat Feb 25 2012 Michel Salim <salimma@fedoraproject.org> - 3.0-8
|
|
|
|
- Apply upstream patch to properly link LLVMgold against LTO
|
|
|
|
|
2012-02-24 09:59:11 +00:00
|
|
|
* Fri Feb 24 2012 Michel Salim <salimma@fedoraproject.org> - 3.0-7
|
|
|
|
- Build LLVMgold plugin on supported architectures
|
|
|
|
|
2012-02-07 02:00:49 +00:00
|
|
|
* Tue Feb 7 2012 Michel Salim <salimma@fedoraproject.org> - 3.0-6
|
|
|
|
- Make subpackage dependencies arch-specific
|
|
|
|
- Make LLVM test failures non-fatal on ARM architectures as well (# 770208)
|
|
|
|
- Save LLVM test log on platforms where it fails
|
|
|
|
|
2012-02-05 17:30:43 +00:00
|
|
|
* Sun Feb 5 2012 Michel Salim <salimma@fedoraproject.org> - 3.0-5
|
|
|
|
- Clang test suite yields unexpected failures with GCC 4.7.0. Make
|
|
|
|
this non-fatal and save the results
|
|
|
|
- Multilib fix for harcoded ld search path in ./configure script
|
|
|
|
|
2012-01-07 18:05:03 +00:00
|
|
|
* Sat Jan 07 2012 Richard W.M. Jones <rjones@redhat.com> - 3.0-4
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-12-14 17:52:23 +00:00
|
|
|
* Wed Dec 14 2011 Adam Jackson <ajax@redhat.com> 3.0-3
|
|
|
|
- Also ExcludeArch: ppc* in RHEL
|
|
|
|
|
2011-12-13 19:34:14 +00:00
|
|
|
* Tue Dec 13 2011 Adam Jackson <ajax@redhat.com> 3.0-2
|
|
|
|
- ExcludeArch: s390* in RHEL since the native backend has disappeared in 3.0
|
|
|
|
|
2011-12-11 10:44:19 +00:00
|
|
|
* Sun Dec 11 2011 Michel Salim <salimma@fedoraproject.org> - 3.0-1
|
|
|
|
- Update to final 3.0 release
|
|
|
|
|
2011-12-05 22:44:54 +00:00
|
|
|
* Mon Dec 05 2011 Adam Jackson <ajax@redhat.com> 3.0-0.2.rc3
|
|
|
|
- RHEL customization: disable clang, --enable-targets=host
|
|
|
|
|
2011-11-11 17:59:32 +00:00
|
|
|
* Fri Nov 11 2011 Michel Salim <salimma@fedoraproject.org> - 3.0-0.1.rc3
|
|
|
|
- Update to 3.0rc3
|
|
|
|
|
2011-10-11 11:35:38 +00:00
|
|
|
* Tue Oct 11 2011 Dan Horák <dan[at]danny.cz> - 2.9-5
|
|
|
|
- don't fail the build on failing tests on ppc(64) and s390(x)
|
|
|
|
|
2011-09-30 14:33:35 +00:00
|
|
|
* Fri Sep 30 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-4
|
|
|
|
- Apply upstream patch for Operator.h C++0x incompatibility (# 737365)
|
|
|
|
|
2011-08-06 15:06:07 +00:00
|
|
|
* Sat Aug 6 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-3
|
|
|
|
- Disable LLVM test suite on ppc64 architecture (# 728604)
|
|
|
|
- Disable clang test suite on ppc* architectures (-)
|
|
|
|
|
2011-08-03 09:34:38 +00:00
|
|
|
* Wed Aug 3 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-2
|
|
|
|
- Add runtime dependency of -devel on libffi-devel
|
|
|
|
|
2011-08-01 16:50:42 +00:00
|
|
|
* Mon Aug 1 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-1
|
|
|
|
- Update to 2.9
|
|
|
|
- Depend on libffi to allow the LLVM interpreter to call external functions
|
|
|
|
- Build with RTTI enabled, needed by e.g. Rubinius (# 722714)
|
2011-08-01 22:03:34 +00:00
|
|
|
- Fix multilib installation (# 699416)
|
|
|
|
- Fix incorrect platform-specific include path on i686
|
2011-08-01 16:50:42 +00:00
|
|
|
|
2011-05-30 23:30:56 +00:00
|
|
|
* Tue May 31 2011 Karsten Hopp <karsten@redhat.com> 2.9-0.4.rc2
|
|
|
|
- enable ppc64 build
|
|
|
|
|
2011-04-04 23:30:57 +00:00
|
|
|
* Fri Mar 25 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-0.3.rc2
|
2011-03-25 14:47:42 +00:00
|
|
|
- Update to 2.9rc2
|
|
|
|
|
2011-03-17 11:47:48 +00:00
|
|
|
* Thu Mar 18 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-0.2.rc1
|
2011-03-17 17:24:51 +00:00
|
|
|
- Split shared libraries into separate subpackage
|
2011-03-17 16:36:08 +00:00
|
|
|
- Don't include test logs; breaks multilib (# 666195)
|
2011-03-17 11:47:48 +00:00
|
|
|
- clang++: also search for platform-specific include files (# 680644)
|
|
|
|
|
2011-03-10 21:25:04 +00:00
|
|
|
* Thu Mar 10 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-0.1.rc1
|
|
|
|
- Update to 2.9rc1
|
|
|
|
|
2011-02-08 13:26:30 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-10 17:16:53 +00:00
|
|
|
* Mon Jan 10 2011 Richard W.M. Jones <rjones@redhat.com> - 2.8-6
|
|
|
|
- Rebuild for OCaml 3.12 (http://fedoraproject.org/wiki/Features/OCaml3.12).
|
|
|
|
|
2010-11-27 14:30:51 +00:00
|
|
|
* Sat Nov 27 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-5
|
|
|
|
- clang now requires gcc-c++ for linking and headers (bug #654560)
|
|
|
|
|
2010-11-12 15:12:10 +00:00
|
|
|
* Fri Nov 12 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-4
|
|
|
|
- Backport support for C++0x (# 648990)
|
|
|
|
|
2010-10-14 23:02:11 +00:00
|
|
|
* Fri Oct 15 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-3
|
|
|
|
- Re-add omitted %%{_includedir}
|
|
|
|
|
2010-10-14 20:24:08 +00:00
|
|
|
* Thu Oct 14 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-2
|
|
|
|
- Add correct C include directory at compile time (# 641500)
|
|
|
|
|
2010-10-12 15:38:42 +00:00
|
|
|
* Tue Oct 12 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-1
|
|
|
|
- Update to 2.8 release
|
|
|
|
|
2010-09-29 21:45:01 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 2.7-10
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-20 12:50:09 +00:00
|
|
|
* Mon Sep 20 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-9
|
|
|
|
- Dynamically determine C++ include path at compile time (# 630474)
|
|
|
|
- Remove unneeded BuildRoot field and clean section
|
|
|
|
|
2010-09-15 14:30:46 +00:00
|
|
|
* Wed Sep 15 2010 Dennis Gilmore <dennis@ausil.us> - 2.7-8
|
|
|
|
- disable ocaml support on sparc64
|
|
|
|
|
2010-08-11 21:46:55 +00:00
|
|
|
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-7
|
|
|
|
- recompiling .py files against Python 2.7 (rhbz#623332)
|
|
|
|
|
2010-07-17 13:43:22 +00:00
|
|
|
* Sat Jul 17 2010 Dan Horák <dan[at]danny.cz> - 2.7-6
|
|
|
|
- conditionalize ocaml support
|
|
|
|
|
2010-06-09 18:51:39 +00:00
|
|
|
* Mon Jun 7 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-5
|
|
|
|
- Make the new noarch -doc obsoletes older (arched) subpackages
|
|
|
|
|
2010-06-05 11:49:56 +00:00
|
|
|
* Sat Jun 5 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-4
|
|
|
|
- Add F-12/x86_64 and F-13 C++ header paths
|
|
|
|
|
2010-05-26 18:57:22 +00:00
|
|
|
* Wed May 26 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-3
|
|
|
|
- Revert to disabling apidoc by default
|
|
|
|
|
2010-05-24 09:24:22 +00:00
|
|
|
* Mon May 24 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-2
|
|
|
|
- Exclude llm-gcc manpages
|
|
|
|
- Turn on apidoc generation
|
|
|
|
- Build with srcdir=objdir, otherwise clang doxygen build fails
|
|
|
|
|
2010-05-02 21:33:16 +00:00
|
|
|
* Sun May 2 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-1
|
|
|
|
- Update to final 2.7 release
|
|
|
|
|
2010-03-28 11:54:59 +00:00
|
|
|
* Sun Mar 28 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-0.1.pre1
|
|
|
|
- Update to first 2.7 pre-release
|
|
|
|
|
2009-09-30 01:42:02 +00:00
|
|
|
* Fri Sep 18 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.6.pre2
|
|
|
|
- Update to 2.6 pre-release2
|
|
|
|
- -devel subpackage now virtually provides -static
|
|
|
|
|
2009-09-10 03:04:02 +00:00
|
|
|
* Wed Sep 9 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.5.pre1
|
|
|
|
- Disable var tracking assignments on PPC
|
|
|
|
|
2009-09-09 05:04:12 +00:00
|
|
|
* Wed Sep 9 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.4.pre1
|
2009-09-09 15:57:46 +00:00
|
|
|
- Don't adjust clang include dir; files there are noarch (bz#521893)
|
2009-09-09 05:04:12 +00:00
|
|
|
- Enable clang unit tests
|
2009-09-09 15:57:46 +00:00
|
|
|
- clang and clang-analyzer renamed; no longer depend on llvm at runtime
|
2009-09-09 05:04:12 +00:00
|
|
|
|
2009-09-07 22:44:07 +00:00
|
|
|
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.3.pre1
|
|
|
|
- Package Clang's static analyzer tools
|
|
|
|
|
2009-09-07 21:05:32 +00:00
|
|
|
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.2.pre1
|
|
|
|
- PIC is now enabled by default; explicitly disable on %%{ix86}
|
|
|
|
|
2009-09-07 06:59:47 +00:00
|
|
|
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.1.pre1
|
|
|
|
- First 2.6 prerelease
|
|
|
|
- Enable Clang front-end
|
|
|
|
- Enable debuginfo generation
|
|
|
|
|
|
|
|
* Sat Sep 5 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-6
|
2009-09-09 05:04:12 +00:00
|
|
|
- Disable assertions (needed by OpenGTL, bz#521261)
|
2009-09-06 03:00:39 +00:00
|
|
|
- Align spec file with upstream build instructions
|
|
|
|
- Enable unit tests
|
|
|
|
|
2009-08-22 21:18:32 +00:00
|
|
|
* Sat Aug 22 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-5
|
|
|
|
- Only disable PIC on %%ix86; ppc actually needs it
|
|
|
|
|
2009-08-22 16:52:17 +00:00
|
|
|
* Sat Aug 22 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-4
|
|
|
|
- Disable use of position-independent code on 32-bit platforms
|
|
|
|
(buggy in LLVM <= 2.5)
|
|
|
|
|
2009-07-25 11:11:42 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-05 01:25:55 +00:00
|
|
|
* Wed Mar 4 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-2
|
|
|
|
- Remove build scripts; they require the build directory to work
|
|
|
|
|
2009-03-05 00:27:31 +00:00
|
|
|
* Wed Mar 4 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-1
|
|
|
|
- Update to 2.5
|
|
|
|
- Package build scripts (bug #457881)
|
2009-02-25 20:43:15 +00:00
|
|
|
|
2008-12-12 05:46:36 +00:00
|
|
|
* Tue Dec 2 2008 Michel Salim <salimma@fedoraproject.org> - 2.4-2
|
|
|
|
- Patched build process for the OCaml binding
|
|
|
|
|
|
|
|
* Tue Dec 2 2008 Michel Salim <salimma@fedoraproject.org> - 2.4-1
|
|
|
|
- Update to 2.4
|
|
|
|
- Package Ocaml binding
|
|
|
|
|
2008-06-19 03:03:29 +00:00
|
|
|
* Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.3-2
|
|
|
|
- Add dependency on groff
|
|
|
|
|
2008-06-19 02:48:35 +00:00
|
|
|
* Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.3-1
|
|
|
|
- LLVM 2.3
|
|
|
|
|
2008-05-29 17:29:30 +00:00
|
|
|
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.2-4
|
|
|
|
- fix license tags
|
|
|
|
|
2008-03-06 07:18:30 +00:00
|
|
|
* Wed Mar 5 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.2-3
|
|
|
|
- Fix compilation problems with gcc 4.3
|
|
|
|
|
2008-02-18 21:26:38 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-21 17:33:11 +00:00
|
|
|
* Sun Jan 20 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.1-2
|
|
|
|
- Fix review comments
|
|
|
|
|
|
|
|
* Sun Jan 20 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.1-1
|
|
|
|
- Initial version
|