478ee5f860
- Link with -static-libstdc++ to work around bundled libstdc++ in Steam
1166 lines
35 KiB
RPMSpec
1166 lines
35 KiB
RPMSpec
# Components skipped by default:
|
|
%bcond_with doxygen
|
|
|
|
# Components built by default:
|
|
%bcond_without clang
|
|
%bcond_without crt
|
|
|
|
# Components enabled if supported by target arch:
|
|
%ifnarch s390 s390x sparc64
|
|
%bcond_with ocaml
|
|
%else
|
|
%bcond_with ocaml
|
|
%endif
|
|
%ifarch %ix86 x86_64
|
|
%bcond_without gold
|
|
%else
|
|
%bcond_with gold
|
|
%endif
|
|
# lldb not ported to anything but x86 so far.
|
|
%ifarch x86_64 %{ix86}
|
|
%bcond_without lldb
|
|
%else
|
|
%bcond_with lldb
|
|
%endif
|
|
|
|
|
|
# Documentation install path
|
|
%if 0%{?fedora} < 20
|
|
%global llvmdocdir() %{_docdir}/%1-%{version}
|
|
%else
|
|
%global llvmdocdir() %{_docdir}/%1
|
|
%endif
|
|
|
|
#global prerel rc3
|
|
|
|
Name: llvm
|
|
Version: 3.7.0
|
|
Release: 2%{?dist}
|
|
Summary: The Low Level Virtual Machine
|
|
|
|
Group: Development/Languages
|
|
License: NCSA
|
|
URL: http://llvm.org/
|
|
|
|
# source archives
|
|
Source0: http://llvm.org/releases/%{version}/llvm-%{version}.src.tar.xz
|
|
Source1: http://llvm.org/releases/%{version}/cfe-%{version}.src.tar.xz
|
|
Source2: http://llvm.org/releases/%{version}/compiler-rt-%{version}.src.tar.xz
|
|
Source3: http://llvm.org/releases/%{version}/lldb-%{version}.src.tar.xz
|
|
|
|
# multilib fixes
|
|
Source10: llvm-Config-config.h
|
|
Source11: llvm-Config-llvm-config.h
|
|
|
|
# patches
|
|
# there is a double slash in an include, it breaks debugedit
|
|
Patch0: fix-broken-include-path.patch
|
|
|
|
Patch2: 0001-data-install-preserve-timestamps.patch
|
|
|
|
# the next two are various attempts to get clang to actually work on arm
|
|
# by forcing a hard-float ABI. They don't apply anymore as of 3.5.0,
|
|
# and didn't seem to work very well in the first place. Interested parties
|
|
# are advised to follow:
|
|
#
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=803433
|
|
# http://llvm.org/bugs/show_bug.cgi?id=15666
|
|
#Patch20: clang-3.4-arm-hard-float.patch
|
|
# http://llvm.org/bugs/attachment.cgi?id=12586
|
|
#Patch22: pr12586.patch
|
|
|
|
Patch200: lldb-python.patch
|
|
Patch202: lldb-python-module-symlink.patch
|
|
|
|
BuildRequires: bison
|
|
BuildRequires: chrpath
|
|
BuildRequires: flex
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libstdc++-static
|
|
BuildRequires: groff
|
|
BuildRequires: libffi-devel
|
|
BuildRequires: libtool-ltdl-devel
|
|
%if %{with gold}
|
|
BuildRequires: binutils-devel
|
|
%endif
|
|
%if %{with ocaml}
|
|
BuildRequires: ocaml-ocamldoc
|
|
%endif
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: zip
|
|
# for DejaGNU test suite
|
|
BuildRequires: dejagnu tcl-devel python
|
|
BuildRequires: python-sphinx
|
|
# for doxygen documentation
|
|
%if %{with doxygen}
|
|
BuildRequires: doxygen graphviz
|
|
%endif
|
|
# pod2man moved to perl-podlators in F19
|
|
BuildRequires: %{_bindir}/pod2man
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
%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
|
|
Summary: Libraries and header files for LLVM
|
|
Group: Development/Languages
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
Requires: libffi-devel
|
|
Requires: libstdc++-devel >= 3.4
|
|
Requires: ncurses-devel
|
|
Requires(posttrans): /usr/sbin/alternatives
|
|
Requires(postun): /usr/sbin/alternatives
|
|
|
|
%description devel
|
|
This package contains library and header files needed to develop new
|
|
native programs that use the LLVM infrastructure.
|
|
|
|
|
|
%package doc
|
|
Summary: Documentation for LLVM
|
|
Group: Documentation
|
|
BuildArch: noarch
|
|
Requires: %{name} = %{version}-%{release}
|
|
# might seem redundant, but needed to kill off the old arch-ed -doc subpackage
|
|
Obsoletes: %{name}-doc < %{version}-%{release}
|
|
|
|
%description doc
|
|
Documentation for the LLVM compiler infrastructure.
|
|
|
|
|
|
%package libs
|
|
Summary: LLVM shared libraries
|
|
Group: System Environment/Libraries
|
|
%if 0%{?fedora} > 20
|
|
## retire OpenGTL/libQtGTL here
|
|
Obsoletes: OpenGTL < 0.9.18-50
|
|
Obsoletes: OpenGTL-libs < 0.9.18-50
|
|
Obsoletes: OpenGTL-devel < 0.9.18-50
|
|
Obsoletes: libQtGTL < 0.9.3-50
|
|
Obsoletes: libQtGTL-devel < 0.9.3-50
|
|
%endif
|
|
Obsoletes: python-llvmpy < 0.12.7-2
|
|
Obsoletes: python3-llvmpy < 0.12.7-2
|
|
|
|
%description libs
|
|
Shared libraries for the LLVM compiler infrastructure.
|
|
|
|
|
|
%package static
|
|
Summary: LLVM static libraries
|
|
Group: Development/Languages
|
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
|
|
|
%description static
|
|
Static libraries for the LLVM compiler infrastructure. Not recommended
|
|
for general consumption.
|
|
|
|
|
|
%if %{with clang}
|
|
%package -n clang
|
|
Summary: A C language family front-end for LLVM
|
|
License: NCSA
|
|
Group: Development/Languages
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
# clang requires gcc, clang++ requires libstdc++-devel
|
|
Requires: libstdc++-devel
|
|
# See https://bugzilla.redhat.com/show_bug.cgi?id=1021645
|
|
# and https://bugzilla.redhat.com/show_bug.cgi?id=1158594
|
|
Requires: gcc-c++
|
|
# remove clang-doc pacakge
|
|
Obsoletes: clang-doc < %{version}-%{release}
|
|
|
|
%description -n clang
|
|
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 -n clang-libs
|
|
Summary: Runtime library for clang
|
|
Group: System Environment/Libraries
|
|
|
|
%description -n clang-libs
|
|
Runtime library for clang.
|
|
|
|
|
|
%package -n clang-devel
|
|
Summary: Header files for clang
|
|
Group: Development/Languages
|
|
Requires: clang%{?_isa} = %{version}-%{release}
|
|
|
|
%description -n clang-devel
|
|
This package contains header files for the Clang compiler.
|
|
|
|
|
|
%package -n clang-analyzer
|
|
Summary: A source code analysis framework
|
|
License: NCSA
|
|
Group: Development/Languages
|
|
BuildArch: noarch
|
|
Requires: clang = %{version}-%{release}
|
|
# not picked up automatically since files are currently not instaled
|
|
# in standard Python hierarchies yet
|
|
Requires: python
|
|
|
|
%description -n clang-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.
|
|
|
|
%endif
|
|
|
|
%if %{with lldb}
|
|
%package -n lldb
|
|
Summary: Next generation high-performance debugger
|
|
License: NCSA
|
|
Group: Development/Languages
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
BuildRequires: swig
|
|
BuildRequires: libedit-devel
|
|
BuildRequires: python-devel
|
|
|
|
%description -n lldb
|
|
LLDB is a next generation, high-performance debugger. It is built as a set
|
|
of reusable components which highly leverage existing libraries in the
|
|
larger LLVM Project, such as the Clang expression parser and LLVM
|
|
disassembler.
|
|
|
|
%package -n lldb-devel
|
|
Summary: Header files for LLDB
|
|
Group: Development/Languages
|
|
Requires: lldb%{?_isa} = %{version}-%{release}
|
|
|
|
%description -n lldb-devel
|
|
This package contains header files for the LLDB debugger.
|
|
%endif
|
|
|
|
%if %{with doxygen}
|
|
%package apidoc
|
|
Summary: API documentation for LLVM
|
|
Group: Development/Languages
|
|
BuildArch: noarch
|
|
Requires: %{name}-doc = %{version}-%{release}
|
|
|
|
|
|
%description apidoc
|
|
API documentation for the LLVM compiler infrastructure.
|
|
|
|
|
|
%if %{with clang}
|
|
%package -n clang-apidoc
|
|
Summary: API documentation for Clang
|
|
Group: Development/Languages
|
|
BuildArch: noarch
|
|
|
|
|
|
%description -n clang-apidoc
|
|
API documentation for the Clang compiler.
|
|
%endif
|
|
%endif
|
|
|
|
|
|
%if %{with ocaml}
|
|
%package ocaml
|
|
Summary: OCaml binding for LLVM
|
|
Group: Development/Libraries
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
Requires: ocaml-runtime
|
|
|
|
%description ocaml
|
|
OCaml binding for LLVM.
|
|
|
|
|
|
%package ocaml-devel
|
|
Summary: Development files for %{name}-ocaml
|
|
Group: Development/Libraries
|
|
Requires: %{name}-static%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-ocaml%{?_isa} = %{version}-%{release}
|
|
Requires: ocaml
|
|
|
|
%description ocaml-devel
|
|
The %{name}-ocaml-devel package contains libraries and signature files
|
|
for developing applications that use %{name}-ocaml.
|
|
|
|
|
|
%package ocaml-doc
|
|
Summary: Documentation for LLVM's OCaml binding
|
|
Group: Documentation
|
|
BuildArch: noarch
|
|
Requires: %{name}-ocaml = %{version}-%{release}
|
|
|
|
%description ocaml-doc
|
|
HTML documentation for LLVM's OCaml binding.
|
|
%endif
|
|
|
|
|
|
%prep
|
|
%setup -q %{?with_clang:-a1} %{?with_crt:-a2} %{?with_lldb:-a3} -n llvm-%{version}.src
|
|
rm -rf tools/clang tools/lldb projects/compiler-rt
|
|
%if %{with clang}
|
|
mv cfe-*/ tools/clang
|
|
%endif
|
|
%if %{with crt}
|
|
mv compiler-rt-*/ projects/compiler-rt
|
|
%endif
|
|
%if %{with lldb}
|
|
mv lldb-*/ tools/lldb
|
|
%endif
|
|
|
|
|
|
%patch0 -p1
|
|
%patch2 -p1
|
|
|
|
%if %{with lldb}
|
|
pushd tools/lldb
|
|
# careful when recreating this patch...
|
|
%patch200 -p1 -b .python
|
|
%patch202 -p1
|
|
sed -i s/@lib@/%{_lib}/g scripts/Python/modules/readline/Makefile
|
|
popd
|
|
%endif
|
|
|
|
# fix library paths
|
|
sed -i 's|/lib /usr/lib $lt_ld_extra|%{_libdir} $lt_ld_extra|' configure
|
|
sed -i 's|(PROJ_prefix)/lib|(PROJ_prefix)/%{_lib}/%{name}|g' Makefile.config.in
|
|
sed -i 's|/lib\>|/%{_lib}/%{name}|g' tools/llvm-config/llvm-config.cpp
|
|
sed -ri "/ifeq.*CompilerTargetArch/s#i386#i686#g" projects/compiler-rt/make/platform/clang_linux.mk
|
|
|
|
%build
|
|
%ifarch s390
|
|
# Decrease debuginfo verbosity to reduce memory consumption in linker
|
|
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
|
|
%endif
|
|
|
|
mkdir build
|
|
cd build
|
|
ln -s ../configure .
|
|
# clang is lovely and all, but fedora builds with gcc
|
|
export CC=gcc
|
|
export CXX=g++
|
|
export CFLAGS="%{optflags} -DLLDB_DISABLE_PYTHON -DHAVE_PROCESS_VM_READV"
|
|
export CXXFLAGS="%{optflags} -DLLDB_DISABLE_PYTHON -DHAVE_PROCESS_VM_READV"
|
|
%configure \
|
|
--with-extra-ld-options="-Wl,-Bsymbolic -static-libstdc++" \
|
|
--libdir=%{_libdir}/%{name} \
|
|
--disable-polly \
|
|
--disable-libcpp \
|
|
--enable-cxx11 \
|
|
--enable-clang-arcmt \
|
|
--enable-clang-static-analyzer \
|
|
--enable-clang-rewriter \
|
|
--enable-optimized \
|
|
--disable-profiling \
|
|
--disable-assertions \
|
|
--disable-werror \
|
|
--disable-expensive-checks \
|
|
--enable-debug-runtime \
|
|
--enable-keep-symbols \
|
|
--enable-jit \
|
|
--enable-docs \
|
|
%if %{with doxygen}
|
|
--enable-doxygen \
|
|
%else
|
|
--disable-doxygen \
|
|
%endif
|
|
--enable-threads \
|
|
--enable-pthreads \
|
|
--enable-zlib \
|
|
--enable-pic \
|
|
--enable-shared \
|
|
--enable-timestamps \
|
|
--enable-backtraces \
|
|
--enable-targets=x86,powerpc,arm,aarch64,cpp,nvptx,systemz,r600 \
|
|
%if %{with ocaml}
|
|
--enable-bindings=ocaml \
|
|
%else
|
|
--enable-bindings=none \
|
|
%endif
|
|
--enable-libffi \
|
|
--enable-ltdl-install \
|
|
\
|
|
%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-vfp \
|
|
%endif
|
|
\
|
|
%if %{with gold}
|
|
--with-binutils-include=%{_includedir} \
|
|
%endif
|
|
|
|
make %{?_smp_mflags} REQUIRES_RTTI=1 VERBOSE=1
|
|
#make REQUIRES_RTTI=1 VERBOSE=1
|
|
|
|
%install
|
|
cd build
|
|
make install DESTDIR=%{buildroot} PROJ_docsdir=/moredocs
|
|
cd -
|
|
|
|
# you have got to be kidding me
|
|
rm -f %{buildroot}%{_bindir}/{FileCheck,count,not,verify-uselistorder,obj2yaml,yaml2obj}
|
|
|
|
# multilib fixes
|
|
mv %{buildroot}%{_bindir}/llvm-config{,-%{__isa_bits}}
|
|
|
|
pushd %{buildroot}%{_includedir}/llvm/Config
|
|
mv config.h config-%{__isa_bits}.h
|
|
cp -p %{SOURCE10} config.h
|
|
mv llvm-config.h llvm-config-%{__isa_bits}.h
|
|
cp -p %{SOURCE11} llvm-config.h
|
|
popd
|
|
|
|
# Create ld.so.conf.d entry
|
|
mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d
|
|
cat >> %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf << EOF
|
|
%{_libdir}/%{name}
|
|
EOF
|
|
|
|
%if %{with clang}
|
|
# Static analyzer not installed by default:
|
|
# http://clang-analyzer.llvm.org/installation#OtherPlatforms
|
|
|
|
# scan-view
|
|
mkdir -p %{buildroot}%{_libexecdir}/clang-analyzer/
|
|
cp -pr tools/clang/tools/scan-view %{buildroot}%{_libexecdir}/clang-analyzer/
|
|
|
|
# scan-build
|
|
mkdir -p %{buildroot}%{_libexecdir}/clang-analyzer/scan-build
|
|
for file in c++-analyzer ccc-analyzer scan-build scanview.css sorttable.js; do
|
|
cp -p tools/clang/tools/scan-build/$file %{buildroot}%{_libexecdir}/clang-analyzer/scan-build/
|
|
done
|
|
|
|
# scan-build manual page
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
cp -p tools/clang/tools/scan-build/scan-build.1 %{buildroot}%{_mandir}/man1/
|
|
|
|
# scan-build requires clang in search path
|
|
ln -s ../../../bin/clang %{buildroot}%{_libexecdir}/clang-analyzer/scan-build/clang
|
|
|
|
# launchers in /bin
|
|
for f in scan-{build,view}; do
|
|
ln -s %{_libexecdir}/clang-analyzer/$f/$f %{buildroot}%{_bindir}/$f
|
|
done
|
|
%endif
|
|
|
|
# Get rid of erroneously installed example files.
|
|
rm %{buildroot}%{_libdir}/%{name}/*LLVMHello.*
|
|
|
|
# remove executable bit from static libraries
|
|
find %{buildroot}%{_libdir} -name "*.a" -type f -print0 | xargs -0 chmod -x
|
|
|
|
# Install man page for LLDB
|
|
%if %{with lldb}
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
cp tools/lldb/docs/lldb.1 %{buildroot}%{_mandir}/man1/
|
|
%endif
|
|
|
|
# Install documentation documentation
|
|
find %{buildroot}/moredocs/ -name "*.tar.gz" -print0 | xargs -0 rm -rf
|
|
mkdir -p %{buildroot}%{_docdir}
|
|
|
|
# llvm-doc
|
|
mkdir -p %{buildroot}%{llvmdocdir %{name}-doc}
|
|
cp -ar examples %{buildroot}%{llvmdocdir %{name}-doc}/examples
|
|
find %{buildroot}%{llvmdocdir %{name}-doc} -name Makefile -o -name CMakeLists.txt -o -name LLVMBuild.txt -print0 | xargs -0 rm -f
|
|
|
|
# llvm-apidoc
|
|
%if %{with doxygen}
|
|
mv %{buildroot}/moredocs/html/doxygen %{buildroot}%{llvmdocdir %{name}-apidoc}
|
|
%endif
|
|
|
|
# llvm-ocaml-doc
|
|
%if %{with ocaml}
|
|
mv %{buildroot}/moredocs/ocamldoc/html %{buildroot}%{llvmdocdir %{name}-ocaml-doc}
|
|
%endif
|
|
|
|
# clang
|
|
%if %{with clang}
|
|
cd tools/clang/docs/
|
|
make -f Makefile.sphinx man
|
|
cd -
|
|
cp tools/clang/docs/_build/man/clang.1 %{buildroot}%{_mandir}/man1/clang.1
|
|
|
|
mkdir -p %{buildroot}%{llvmdocdir clang}
|
|
for f in LICENSE.TXT NOTES.txt README.txt CODE_OWNERS.TXT; do
|
|
cp tools/clang/$f %{buildroot}%{llvmdocdir clang}/
|
|
done
|
|
%endif
|
|
|
|
# clang-apidoc
|
|
%if %{with clang}
|
|
%if %{with doxygen}
|
|
cp -ar tools/clang/docs/doxygen/html %{buildroot}%{llvmdocdir clang-apidoc}
|
|
%endif
|
|
%endif
|
|
|
|
# lldb
|
|
%if %{with lldb}
|
|
mkdir -p %{buildroot}%{llvmdocdir lldb}
|
|
cp tools/lldb/LICENSE.TXT %{buildroot}%{llvmdocdir lldb}/
|
|
%endif
|
|
|
|
# delete the rest of installed documentation (because it's bad)
|
|
rm -rf %{buildroot}/moredocs
|
|
|
|
# install CMake modules
|
|
mkdir -p %{buildroot}%{_datadir}/llvm/cmake/
|
|
cp -p cmake/modules/*.cmake %{buildroot}%{_datadir}/llvm/cmake/
|
|
|
|
# remove RPATHs
|
|
file %{buildroot}%{_bindir}/* | awk -F: '$2~/ELF/{print $1}' | xargs -r chrpath -d
|
|
file %{buildroot}%{_libdir}/%{name}/*.so | awk -F: '$2~/ELF/{print $1}' | xargs -r chrpath -d
|
|
|
|
%check
|
|
# the Koji build server does not seem to have enough RAM
|
|
# for the default 16 threads
|
|
|
|
# the || : is wrong, i know, but the git snaps fail to make check due to
|
|
# broken makefiles in the doc dirs.
|
|
|
|
# LLVM test suite failing on ARM, PPC64 and s390(x)
|
|
mkdir -p %{buildroot}%{llvmdocdir %{name}-devel}
|
|
cd build
|
|
make -k check LIT_ARGS="-v -j4" | tee %{buildroot}%{llvmdocdir %{name}-devel}/testlog-%{_arch}.txt || :
|
|
cd -
|
|
|
|
%if %{with clang}
|
|
# clang test suite failing on PPC and s390(x)
|
|
# FIXME:
|
|
# unexpected failures on all platforms with GCC 4.7.0.
|
|
# capture logs
|
|
mkdir -p %{buildroot}%{llvmdocdir clang-devel}
|
|
cd build
|
|
make -C tools/clang/test TESTARGS="-v -j4" | tee %{buildroot}%{llvmdocdir clang-devel}/testlog-%{_arch}.txt || :
|
|
cd -
|
|
%endif
|
|
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
%if %{with clang}
|
|
%post -n clang-libs -p /sbin/ldconfig
|
|
%postun -n clang-libs -p /sbin/ldconfig
|
|
%endif
|
|
|
|
%if %{with lldb}
|
|
%post -n lldb -p /sbin/ldconfig
|
|
%postun -n lldb -p /sbin/ldconfig
|
|
%endif
|
|
|
|
|
|
%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
|
|
#
|
|
# XXX ew alternatives though. seems like it'd be better to install a
|
|
# shell script that cases on $(arch) and calls out to the appropriate
|
|
# llvm-config-%d.
|
|
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
|
|
|
|
|
|
%files
|
|
%doc CREDITS.TXT
|
|
%doc README.txt
|
|
%dir %{_datadir}/llvm
|
|
%{_bindir}/bugpoint
|
|
%{_bindir}/llc
|
|
%{_bindir}/lli
|
|
%{_bindir}/lli-child-target
|
|
%exclude %{_bindir}/llvm-config-%{__isa_bits}
|
|
%{_bindir}/llvm*
|
|
%{_bindir}/macho-dump
|
|
%{_bindir}/opt
|
|
%if %{with clang}
|
|
%exclude %{_mandir}/man1/clang.1.*
|
|
%exclude %{_mandir}/man1/scan-build.1.*
|
|
%endif
|
|
%if %{with lldb}
|
|
%exclude %{_mandir}/man1/lldb.1.*
|
|
%endif
|
|
%doc %{_mandir}/man1/*.1.*
|
|
|
|
%files devel
|
|
%doc %{llvmdocdir %{name}-devel}/
|
|
%{_bindir}/llvm-config-%{__isa_bits}
|
|
%{_includedir}/%{name}
|
|
%{_includedir}/%{name}-c
|
|
%{_datadir}/llvm/cmake
|
|
|
|
%files libs
|
|
%doc LICENSE.TXT
|
|
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
|
|
%dir %{_libdir}/%{name}
|
|
%if %{with clang}
|
|
%exclude %{_libdir}/%{name}/libclang.so
|
|
%endif
|
|
%if %{with lldb}
|
|
%exclude %{_libdir}/%{name}/liblldb.so
|
|
%endif
|
|
%{_libdir}/%{name}/*.so
|
|
|
|
%files static
|
|
%{_libdir}/%{name}/*.a
|
|
|
|
%if %{with clang}
|
|
%files -n clang
|
|
%doc %{llvmdocdir clang}/
|
|
%{_bindir}/clang*
|
|
%{_bindir}/c-index-test
|
|
%{_prefix}/lib/clang
|
|
%doc %{_mandir}/man1/clang.1.*
|
|
|
|
%files -n clang-libs
|
|
%{_libdir}/%{name}/libclang.so
|
|
|
|
%files -n clang-devel
|
|
%doc %{llvmdocdir clang-devel}/
|
|
%{_includedir}/clang
|
|
%{_includedir}/clang-c
|
|
|
|
%files -n clang-analyzer
|
|
%{_mandir}/man1/scan-build.1.*
|
|
%{_bindir}/scan-build
|
|
%{_bindir}/scan-view
|
|
%{_libexecdir}/clang-analyzer
|
|
%endif
|
|
|
|
%if %{with lldb}
|
|
%files -n lldb
|
|
%doc %{llvmdocdir lldb}/
|
|
%{_bindir}/lldb
|
|
%{_bindir}/lldb-*
|
|
%{_libdir}/%{name}/liblldb.so
|
|
# XXX double check this
|
|
#{python2_sitearch}/*
|
|
%doc %{_mandir}/man1/lldb.1.*
|
|
|
|
%files -n lldb-devel
|
|
%{_includedir}/lldb
|
|
%endif
|
|
|
|
%files doc
|
|
%doc %{llvmdocdir %{name}-doc}/
|
|
|
|
%if %{with ocaml}
|
|
%files ocaml
|
|
%{_libdir}/ocaml/*.cma
|
|
%{_libdir}/ocaml/*.cmi
|
|
%{_libdir}/ocaml/dll*.so
|
|
%{_libdir}/ocaml/META.llvm*
|
|
|
|
%files ocaml-devel
|
|
%{_libdir}/ocaml/*.a
|
|
%{_libdir}/ocaml/*.cmx*
|
|
%{_libdir}/ocaml/*.mli
|
|
|
|
%files ocaml-doc
|
|
%doc %{llvmdocdir %{name}-ocaml-doc}/
|
|
%endif
|
|
|
|
%if %{with doxygen}
|
|
%files apidoc
|
|
%doc %{llvmdocdir %{name}-apidoc}/
|
|
|
|
%if %{with clang}
|
|
%files -n clang-apidoc
|
|
%doc %{llvmdocdir clang-apidoc}/
|
|
%endif
|
|
%endif
|
|
|
|
%changelog
|
|
* Thu Oct 29 2015 Adam Jackson <ajax@redhat.com> 3.7.0-2
|
|
- Drop -fno-devirtualize
|
|
- Link with -static-libstdc++ to work around bundled libstdc++ in Steam
|
|
|
|
* Wed Sep 16 2015 Dave Airlie <airlied@redhat.com> 3.7.0-1
|
|
- llvm 3.7.0
|
|
|
|
* Wed Jul 22 2015 Adam Jackson <ajax@redhat.com> 3.6.2-1
|
|
- llvm 3.6.2
|
|
|
|
* Wed Jun 17 2015 Dave Airlie <airlied@redhat.com> 3.6.1-1
|
|
- llvm 3.6.1
|
|
|
|
* Fri May 29 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.6.0-2
|
|
- Also require gcc-c++ at runtime (#1021645)
|
|
|
|
* Thu Apr 09 2015 Adam Jackson <ajax@redhat.com> 3.6.0-1
|
|
- llvm 3.6.0
|
|
|
|
* Wed Feb 18 2015 Jonathan Wakely <jwakely@redhat.com> - 3.5.0-11
|
|
- Add patch for http://llvm.org/bugs/show_bug.cgi?id=22625
|
|
|
|
* Wed Feb 18 2015 Richard W.M. Jones <rjones@redhat.com> - 3.5.0-10
|
|
- Bump release and rebuild.
|
|
|
|
* Tue Feb 17 2015 Peter Robinson <pbrobinson@fedoraproject.org> 3.5.0-9
|
|
- Run ldconfig on clang-libs not clang
|
|
- Update ARMv7 config options
|
|
|
|
* Tue Feb 17 2015 Richard W.M. Jones <rjones@redhat.com> - 3.5.0-8
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
* Mon Feb 16 2015 Orion Poplawski <orion@cora.nwra.com> - 3.5.0-7
|
|
- Rebuild for gcc 5 C++11
|
|
|
|
* Thu Dec 25 2014 Jan Vcelak <jvcelak@fedoraproject.org> 3.5.0-6
|
|
- lldb: fix broken expression parser
|
|
- lldb, python module: fix symlink to lldb.so (#1177143)
|
|
|
|
* Thu Dec 18 2014 Dan Horák <dan[at]danny.cz> - 3.5.0-5
|
|
- use the common workaround for OOM during linking on s390
|
|
|
|
* Wed Nov 19 2014 Jens Petersen <petersen@redhat.com> - 3.5.0-4
|
|
- minor spec file cleanup from llvm34 package review:
|
|
- move LICENSE to llvm-libs
|
|
- remove tabs from spec
|
|
- use name macro to keep llvm34.spec closer
|
|
- remove defattr's
|
|
|
|
* Wed Nov 05 2014 Adam Jackson <ajax@redhat.com> 3.5.0-3
|
|
- Split out clang-libs
|
|
|
|
* Tue Oct 28 2014 Kalev Lember <kalevlember@gmail.com> - 3.5.0-2
|
|
- Obsolete python-llvmpy
|
|
|
|
* Mon Oct 27 2014 Adam Jackson <ajax@redhat.com> 3.5.0-1
|
|
- llvm 3.5.0
|
|
|
|
* Sun Aug 31 2014 Richard W.M. Jones <rjones@redhat.com> - 3.4-20
|
|
- Bump release and rebuild.
|
|
|
|
* Sun Aug 31 2014 Richard W.M. Jones <rjones@redhat.com> - 3.4-19
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
* Sun Aug 24 2014 Richard W.M. Jones <rjones@redhat.com> - 3.4-18
|
|
- Bump release and rebuild.
|
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 3.4-17
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-16
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Thu Aug 14 2014 Adam Jackson <ajax@redhat.com> 3.4-15
|
|
- Restore ppc64le fix
|
|
|
|
* Sat Aug 02 2014 Richard W.M. Jones <rjones@redhat.com> - 3.4-14
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
|
|
|
* Thu Jul 24 2014 Adam Jackson <ajax@redhat.com> 3.4-13
|
|
- llvm and clang 3.4.2
|
|
|
|
* Tue Jul 22 2014 Richard W.M. Jones <rjones@redhat.com> - 3.4-12
|
|
- OCaml 4.02.0 beta rebuild.
|
|
|
|
* Wed Jun 11 2014 Adam Jackson <ajax@redhat.com> 3.4-11
|
|
- Different attempt to default to hard-float on arm (#803433)
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-10
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Wed Jun 04 2014 Adam Jackson <ajax@redhat.com> 3.4-9
|
|
- Backport a ppc64le fix to get things started bootstrapping
|
|
|
|
* Mon Jun 02 2014 Adam Jackson <ajax@redhat.com> 3.4-8
|
|
- Attempt to default to hard-float on arm (#803433)
|
|
|
|
* Thu May 29 2014 Adam Jackson <ajax@redhat.com> 3.4-7
|
|
- Update to llvm 3.4.1 plus a few things from svn
|
|
- Drop radeonsi patch, merged in 3.4.1
|
|
|
|
* Thu Mar 27 2014 Rex Dieter <rdieter@fedoraproject.org> 3.4-6
|
|
- -libs: Obsoletes: OpenGTL libQtGTL
|
|
|
|
* Wed Mar 19 2014 Dave Airlie <airlied@redhat.com> 3.4-5
|
|
- backport patches from 3.5 to enable GL3.3 on radeonsi
|
|
|
|
* Fri Jan 31 2014 Kyle McMartin <kyle@redhat.com> 3.4-4
|
|
- Disable lldb on everything but x86_64, and i686. It hasn't been ported
|
|
beyond those platforms so far.
|
|
|
|
* Fri Jan 17 2014 Dave Airlie <airlied@redhat.com> 3.4-3
|
|
- bump nvr for lldb on ppc disable
|
|
|
|
* Tue Jan 14 2014 Dave Airlie <airlied@redhat.com> 3.4-2
|
|
- add ncurses-devel BR and Requires
|
|
|
|
* Tue Jan 14 2014 Dave Airlie <airlied@redhat.com> 3.4-1
|
|
- update to llvm 3.4 release
|
|
|
|
* Fri Dec 20 2013 Jan Vcelak <jvcelak@fedoraproject.org> 3.3-4
|
|
- remove RPATHs
|
|
- run ldconfig when installing lldb (#1044431)
|
|
- fix: scan-build manual page is installed into wrong location (#1038829)
|
|
- fix: requirements for llvm-ocaml-devel packages (#975914)
|
|
- add LLVM cmake modules into llvm-devel (#914713)
|
|
|
|
* Sat Nov 30 2013 Jan Vcelak <jvcelak@fedoraproject.org> 3.3-3
|
|
- properly obsolete clang-doc subpackage (#1035268)
|
|
- clang-analyzer: fix scan-build search for compiler (#982645)
|
|
- clang-analyzer: switch package architecture to noarch
|
|
|
|
* Thu Nov 21 2013 Jan Vcelak <jvcelak@fedoraproject.org> 3.3-2
|
|
- fix build failure, missing __clear_cache() declaration
|
|
|
|
* Tue Nov 12 2013 Jan Vcelak <jvcelak@fedoraproject.org> 3.3-1
|
|
- upgrade to 3.3 release
|
|
- add compiler-rt, enables address sanitizer (#949489)
|
|
- add LLDB - debugger from LLVM project (#1009406)
|
|
- clean up documentation
|
|
|
|
* Thu Oct 17 2013 Jakub Jelinek <jakub@redhat.com> - 3.3-0.10.rc3
|
|
- Rebuild for gcc 4.8.2
|
|
|
|
* Sat Sep 14 2013 Petr Pisar <ppisar@redhat.com> - 3.3-0.9.rc3
|
|
- Rebuild for OCaml 4.01.0.
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-0.8.rc3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 3.3-0.7.rc3
|
|
- Perl 5.18 rebuild
|
|
|
|
* Mon Jun 10 2013 Adam Jackson <ajax@redhat.com> 3.3-0.6.rc3
|
|
- llvm 3.3-rc3
|
|
|
|
* Tue Jun 04 2013 Adam Jackson <ajax@redhat.com> 3.3-0.5.rc2
|
|
- Rebuild for gcc 4.8.1
|
|
|
|
* Tue May 28 2013 Adam Jackson <ajax@redhat.com> 3.3-0.4.rc2
|
|
- llvm 3.3-rc2
|
|
|
|
* Sat May 18 2013 Peter Robinson <pbrobinson@fedoraproject.org> 3.3-0.3.20130507
|
|
- Enable aarch64 target
|
|
|
|
* Tue May 07 2013 Adam Jackson <ajax@redhat.com> 3.3-0.1.20130507
|
|
- Bump to LLVM 3.3svn
|
|
- Enable s390 backend
|
|
|
|
* Mon May 06 2013 Adam Jackson <ajax@redhat.com> 3.2-6
|
|
- Only build codegen backends for arches that actually exist in Fedora
|
|
|
|
* Wed May 01 2013 Adam Jackson <ajax@redhat.com> 3.2-5
|
|
- Tweak ld flags for memory usage and performance
|
|
|
|
* Thu Apr 4 2013 Jens Petersen <petersen@redhat.com> - 3.2-4
|
|
- fix bogus date for 2.9-0.2.rc1
|
|
- drop insufficient llvm-3.2-clang-driver-secondary-arch-triplets.patch
|
|
|
|
* Sun Mar 31 2013 Dennis Gilmore <dennis@ausil.us> - 3.2-3
|
|
- add a hack to clang defaulting arm to hardfloat
|
|
|
|
* Fri Mar 08 2013 Adam Jackson <ajax@redhat.com> 3.2-2
|
|
- Update R600 patches
|
|
- Move static libs to -static subpackage
|
|
- Prep for F18 backport
|
|
|
|
* Wed Feb 13 2013 Jens Petersen <petersen@redhat.com> - 3.2-1
|
|
- update to 3.2
|
|
- update R600 patches to Tom Stellard's git tree
|
|
- llvm-fix-ghc.patch is upstream
|
|
- llvm-3.1-docs-pod-markup-fixes.patch no longer needed
|
|
- add llvm-3.2-clang-driver-secondary-arch-triplets.patch (#803433)
|
|
- build with gcc/g++ even if clang is installed
|
|
- llvm-config.1 manpage is no longer
|
|
|
|
* Mon Feb 4 2013 Jens Petersen <petersen@redhat.com> - 3.1-16
|
|
- bring back configuration for gcc arch include dir (Yury Zaytsev, #893817)
|
|
which was dropped in 3.0-0.1.rc3
|
|
- BR gcc and gcc-c++ with gcc_version
|
|
|
|
* Thu Jan 31 2013 Jens Petersen <petersen@redhat.com> - 3.1-15
|
|
- move lvm-config manpage to devel subpackage (#855882)
|
|
- pod2man moved to perl-podlators in F19
|
|
|
|
* Fri Jan 25 2013 Kalev Lember <kalevlember@gmail.com> - 3.1-14
|
|
- Rebuilt for GCC 4.8.0
|
|
|
|
* Wed Jan 23 2013 Jens Petersen <petersen@redhat.com> - 3.1-13
|
|
- fix some docs pod markup errors to build with new perl-Pod-Parser
|
|
|
|
* Mon Oct 29 2012 Richard W.M. Jones <rjones@redhat.com> - 3.1-12
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
* Mon Sep 24 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-11
|
|
- Actually build against GCC 4.7.2
|
|
|
|
* Mon Sep 24 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-10
|
|
- Rebuild for GCC 4.7.2
|
|
|
|
* Tue Aug 14 2012 Dan Horák <dan[at]danny.cz> - 3.1-9
|
|
- Apply clang patches only when clang is being built
|
|
|
|
* 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
|
|
|
|
* Fri Jul 13 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1-7
|
|
- Rename patch as it actually fixes Haskell
|
|
|
|
* Thu Jul 12 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1-6
|
|
- Add patch to fix building OCAML on ARM
|
|
|
|
* Wed Jul 4 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-5
|
|
- Actually set runtime dependency on libstdc++ 4.7.1
|
|
|
|
* Mon Jul 2 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1-4
|
|
- Rebuild for new libstdc++ bump
|
|
|
|
* Sun Jun 10 2012 Richard W.M. Jones <rjones@redhat.com> - 3.1-3
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
* Fri Jun 8 2012 Michel Salim <salimma@fedoraproject.org> - 3.1-2
|
|
- Rebuild for ocaml 4.00.0 beta
|
|
|
|
* Sun Jun 03 2012 Dave Airlie <airlied@redhat.com> 3.1-1
|
|
- rebase to 3.1 + add r600 patches from Tom Stellar
|
|
|
|
* Fri May 25 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0-13
|
|
- Add compiler build options for ARM hardfp
|
|
|
|
* Sun May 6 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0-12
|
|
- Bump build
|
|
|
|
* 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*
|
|
|
|
* 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)
|
|
|
|
* 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
|
|
|
|
* Sat Feb 25 2012 Michel Salim <salimma@fedoraproject.org> - 3.0-8
|
|
- Apply upstream patch to properly link LLVMgold against LTO
|
|
|
|
* Fri Feb 24 2012 Michel Salim <salimma@fedoraproject.org> - 3.0-7
|
|
- Build LLVMgold plugin on supported architectures
|
|
|
|
* 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
|
|
|
|
* 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
|
|
|
|
* Sat Jan 07 2012 Richard W.M. Jones <rjones@redhat.com> - 3.0-4
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
* Wed Dec 14 2011 Adam Jackson <ajax@redhat.com> 3.0-3
|
|
- Also ExcludeArch: ppc* in RHEL
|
|
|
|
* 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
|
|
|
|
* Sun Dec 11 2011 Michel Salim <salimma@fedoraproject.org> - 3.0-1
|
|
- Update to final 3.0 release
|
|
|
|
* Mon Dec 05 2011 Adam Jackson <ajax@redhat.com> 3.0-0.2.rc3
|
|
- RHEL customization: disable clang, --enable-targets=host
|
|
|
|
* Fri Nov 11 2011 Michel Salim <salimma@fedoraproject.org> - 3.0-0.1.rc3
|
|
- Update to 3.0rc3
|
|
|
|
* 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)
|
|
|
|
* Fri Sep 30 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-4
|
|
- Apply upstream patch for Operator.h C++0x incompatibility (# 737365)
|
|
|
|
* 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 (-)
|
|
|
|
* Wed Aug 3 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-2
|
|
- Add runtime dependency of -devel on libffi-devel
|
|
|
|
* 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)
|
|
- Fix multilib installation (# 699416)
|
|
- Fix incorrect platform-specific include path on i686
|
|
|
|
* Tue May 31 2011 Karsten Hopp <karsten@redhat.com> 2.9-0.4.rc2
|
|
- enable ppc64 build
|
|
|
|
* Fri Mar 25 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-0.3.rc2
|
|
- Update to 2.9rc2
|
|
|
|
* Thu Mar 17 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-0.2.rc1
|
|
- Split shared libraries into separate subpackage
|
|
- Don't include test logs; breaks multilib (# 666195)
|
|
- clang++: also search for platform-specific include files (# 680644)
|
|
|
|
* Thu Mar 10 2011 Michel Salim <salimma@fedoraproject.org> - 2.9-0.1.rc1
|
|
- Update to 2.9rc1
|
|
|
|
* 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
|
|
|
|
* 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).
|
|
|
|
* Sat Nov 27 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-5
|
|
- clang now requires gcc-c++ for linking and headers (bug #654560)
|
|
|
|
* Fri Nov 12 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-4
|
|
- Backport support for C++0x (# 648990)
|
|
|
|
* Fri Oct 15 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-3
|
|
- Re-add omitted %%{_includedir}
|
|
|
|
* Thu Oct 14 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-2
|
|
- Add correct C include directory at compile time (# 641500)
|
|
|
|
* Tue Oct 12 2010 Michel Salim <salimma@fedoraproject.org> - 2.8-1
|
|
- Update to 2.8 release
|
|
|
|
* Wed Sep 29 2010 jkeating - 2.7-10
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
* 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
|
|
|
|
* Wed Sep 15 2010 Dennis Gilmore <dennis@ausil.us> - 2.7-8
|
|
- disable ocaml support on sparc64
|
|
|
|
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 2.7-7
|
|
- recompiling .py files against Python 2.7 (rhbz#623332)
|
|
|
|
* Sat Jul 17 2010 Dan Horák <dan[at]danny.cz> - 2.7-6
|
|
- conditionalize ocaml support
|
|
|
|
* Mon Jun 7 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-5
|
|
- Make the new noarch -doc obsoletes older (arched) subpackages
|
|
|
|
* Sat Jun 5 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-4
|
|
- Add F-12/x86_64 and F-13 C++ header paths
|
|
|
|
* Wed May 26 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-3
|
|
- Revert to disabling apidoc by default
|
|
|
|
* 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
|
|
|
|
* Sun May 2 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-1
|
|
- Update to final 2.7 release
|
|
|
|
* Sun Mar 28 2010 Michel Salim <salimma@fedoraproject.org> - 2.7-0.1.pre1
|
|
- Update to first 2.7 pre-release
|
|
|
|
* 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
|
|
|
|
* Wed Sep 9 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.5.pre1
|
|
- Disable var tracking assignments on PPC
|
|
|
|
* Wed Sep 9 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.4.pre1
|
|
- Don't adjust clang include dir; files there are noarch (bz#521893)
|
|
- Enable clang unit tests
|
|
- clang and clang-analyzer renamed; no longer depend on llvm at runtime
|
|
|
|
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.3.pre1
|
|
- Package Clang's static analyzer tools
|
|
|
|
* Mon Sep 7 2009 Michel Salim <salimma@fedoraproject.org> - 2.6-0.2.pre1
|
|
- PIC is now enabled by default; explicitly disable on %%{ix86}
|
|
|
|
* 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
|
|
- Disable assertions (needed by OpenGTL, bz#521261)
|
|
- Align spec file with upstream build instructions
|
|
- Enable unit tests
|
|
|
|
* Sat Aug 22 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-5
|
|
- Only disable PIC on %%ix86; ppc actually needs it
|
|
|
|
* 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)
|
|
|
|
* 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
|
|
|
|
* Wed Mar 4 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-2
|
|
- Remove build scripts; they require the build directory to work
|
|
|
|
* Wed Mar 4 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-1
|
|
- Update to 2.5
|
|
- Package build scripts (bug #457881)
|
|
|
|
* 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
|
|
|
|
* Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.3-2
|
|
- Add dependency on groff
|
|
|
|
* Wed Jun 18 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.3-1
|
|
- LLVM 2.3
|
|
|
|
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.2-4
|
|
- fix license tags
|
|
|
|
* Wed Mar 5 2008 Bryan O'Sullivan <bos@serpentine.com> - 2.2-3
|
|
- Fix compilation problems with gcc 4.3
|
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2-2
|
|
- Autorebuild for GCC 4.3
|
|
|
|
* 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
|