llvm/llvm.spec

552 lines
16 KiB
RPMSpec
Raw Normal View History

# Build options:
#
# --with doxygen
# The doxygen docs are HUGE, so they are not built by default.
%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-03-25 14:47:42 +00:00
%global prerel rc2
2011-03-10 21:25:04 +00:00
%global downloadurl http://llvm.org/%{?prerel:pre-}releases/%{version}
Name: llvm
2011-03-10 21:25:04 +00:00
Version: 2.9
2011-05-30 23:30:56 +00:00
Release: 0.4.%{prerel}%{?dist}
Summary: The Low Level Virtual Machine
Group: Development/Languages
License: NCSA
URL: http://llvm.org/
2011-03-10 21:25:04 +00:00
Source0: %{downloadurl}/llvm-%{version}%{?prerel}.src.tar.gz
Source1: %{downloadurl}/clang-%{version}%{?prerel}.src.tar.gz
# Data files should be installed with timestamps preserved
2010-03-28 11:54:59 +00:00
Patch0: llvm-2.6-timestamp.patch
BuildRequires: bison
BuildRequires: chrpath
BuildRequires: flex
BuildRequires: gcc-c++ >= 3.4
BuildRequires: groff
BuildRequires: libtool-ltdl-devel
2010-07-17 13:43:22 +00:00
%if %{with ocaml}
BuildRequires: ocaml-ocamldoc
2010-07-17 13:43:22 +00:00
%endif
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
# for doxygen documentation
%if 0%{?_with_doxygen}
BuildRequires: doxygen graphviz
%endif
Requires: llvm-libs = %{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
Summary: Libraries and header files for LLVM
Group: Development/Languages
Requires: %{name} = %{version}-%{release}
Requires: libstdc++-devel >= 3.4
Provides: llvm-static = %{version}-%{release}
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
Summary: Documentation for LLVM
Group: Documentation
2010-05-24 09:38:59 +00:00
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}
2008-01-21 17:33:11 +00:00
%description doc
Documentation for the LLVM compiler infrastructure.
%package libs
Summary: LLVM shared libraries
Group: System Environment/Libraries
%description libs
Shared libraries for the LLVM compiler infrastructure.
%package -n clang
2010-05-02 21:33:16 +00:00
Summary: A C language family front-end for LLVM
License: NCSA
Group: Development/Languages
Requires: llvm = %{version}-%{release}
# clang requires gcc; clang++ gcc-c++
2011-03-10 21:25:04 +00:00
Requires: gcc-c++
2008-01-21 17:33:11 +00:00
%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.
2008-01-21 17:33:11 +00:00
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
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
Requires: clang = %{version}-%{release}
%description -n clang-devel
This package contains header files for the Clang compiler.
%package -n clang-analyzer
2009-09-08 03:19:39 +00:00
Summary: A source code analysis framework
License: NCSA
Group: Development/Languages
Requires: clang = %{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
%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.
%package -n clang-doc
Summary: Documentation for Clang
Group: Documentation
2010-05-24 09:38:59 +00:00
BuildArch: noarch
Requires: %{name} = %{version}-%{release}
%description -n clang-doc
Documentation for the Clang compiler front-end.
%if 0%{?_with_doxygen}
2008-01-21 17:33:11 +00:00
%package apidoc
Summary: API documentation for LLVM
Group: Development/Languages
BuildArch: noarch
Requires: %{name}-doc = %{version}-%{release}
2008-01-21 17:33:11 +00:00
%description apidoc
API documentation for the LLVM compiler infrastructure.
%package -n clang-apidoc
Summary: API documentation for Clang
Group: Development/Languages
BuildArch: noarch
Requires: clang-doc = %{version}-%{release}
%description -n clang-apidoc
API documentation for the Clang compiler.
%endif
2008-01-21 17:33:11 +00:00
2010-07-17 13:43:22 +00:00
%if %{with ocaml}
%package ocaml
Summary: OCaml binding for LLVM
Group: Development/Libraries
2008-12-12 05:46:36 +00:00
Requires: %{name} = %{version}-%{release}
Requires: ocaml-runtime
2008-12-12 05:46:36 +00:00
%description ocaml
2008-12-12 05:46:36 +00:00
OCaml binding for LLVM.
%package ocaml-devel
Summary: Development files for %{name}-ocaml
Group: Development/Libraries
2008-12-12 05:46:36 +00:00
Requires: %{name}-devel = %{version}-%{release}
Requires: %{name}-ocaml = %{version}-%{release}
2009-09-30 16:48:32 +00:00
Requires: ocaml
2008-12-12 05:46:36 +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.
%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.
2010-07-17 13:43:22 +00:00
%endif
2008-01-21 17:33:11 +00:00
%prep
2011-03-10 21:25:04 +00:00
%setup -q -n llvm-%{version}%{?prerel} -a1 %{?_with_gcc:-a2}
mv clang-%{version}%{?prerel} tools/clang
2008-01-21 17:33:11 +00:00
2010-03-28 11:54:59 +00:00
%patch0 -p1 -b .timestamp
pushd tools/clang
popd
2010-03-28 11:54:59 +00:00
# Encoding fix
2010-10-12 15:38:42 +00:00
#(cd tools/clang/docs && \
# iconv -f ISO88591 -t UTF8 BlockImplementation.txt \
# -o BlockImplementation.txt)
2008-01-21 17:33:11 +00:00
%build
2009-09-06 03:00:39 +00:00
# Disabling assertions now, rec. by pure and needed for OpenGTL
2010-05-02 21:33:16 +00:00
# TESTFIX no PIC on ix86: http://llvm.org/bugs/show_bug.cgi?id=3801
%configure \
2009-09-06 03:00:39 +00:00
--prefix=%{_prefix} \
--libdir=%{_libdir}/%{name} \
--datadir=%{_libdir}/%{name} \
%if 0%{?_with_doxygen}
--enable-doxygen \
%endif
2009-09-06 03:00:39 +00:00
--disable-assertions \
2008-01-21 17:33:11 +00:00
--enable-debug-runtime \
--enable-jit \
2010-09-20 12:50:09 +00:00
--enable-shared \
--with-c-include-dirs=%{_includedir}:$(find %{_prefix}/lib/gcc/*/* \
-maxdepth 0 -type d)/include \
--with-cxx-include-root=$(find %{_includedir}/c++/* -maxdepth 0 -type d) \
--with-cxx-include-arch=%{_arch}-%{_vendor}-%{_os} \
--with-cxx-include-32bit-dir=32
2009-09-06 03:00:39 +00:00
# FIXME file this
2009-09-06 03:00:39 +00:00
# configure does not properly specify libdir
sed -i 's|(PROJ_prefix)/lib|(PROJ_prefix)/%{_lib}/%{name}|g' Makefile.config
2008-12-12 05:46:36 +00:00
make %{_smp_mflags} \
%ifarch ppc
OPTIMIZE_OPTION="%{optflags} -fno-var-tracking-assignments"
%else
OPTIMIZE_OPTION="%{optflags}"
%endif
2008-01-21 17:33:11 +00:00
2009-09-06 03:00:39 +00:00
%check
2010-05-02 21:33:16 +00:00
# no current unexpected failures. Use || true if they recur to force ignore
make check 2>&1 | tee llvm-testlog.txt
(cd tools/clang && make test 2>&1) | tee clang-testlog.txt
2009-09-06 03:00:39 +00:00
2008-01-21 17:33:11 +00:00
%install
rm -rf %{buildroot}
2008-12-12 05:46:36 +00:00
make install DESTDIR=%{buildroot} \
PROJ_docsdir=/moredocs
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
# 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/)
2009-09-08 03:19:39 +00:00
# Move documentation back to build directory
#
mv %{buildroot}/moredocs .
2010-07-17 13:43:22 +00:00
rm -f moredocs/*.tar.gz
rm -f moredocs/ocamldoc/html/*.tar.gz
# and separate the apidoc
%if 0%{?_with_doxygen}
mv moredocs/html/doxygen apidoc
mv tools/clang/docs/doxygen/html clang-apidoc
%endif
# And prepare Clang documentation
#
mkdir clang-docs
for f in LICENSE.TXT NOTES.txt README.txt TODO.txt; do
ln tools/clang/$f clang-docs/
done
rm -rf tools/clang/docs/{doxygen*,Makefile*,*.graffle,tools}
#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
file %{buildroot}/%{_libdir}/llvm/*.so | awk -F: '$2~/ELF/{print $1}' | xargs -r chrpath -d
#chrpath -d %%{buildroot}/%%{_libexecdir}/clang-cc
2008-01-21 17:33:11 +00:00
# Get rid of erroneously installed example files.
rm %{buildroot}%{_libdir}/%{name}/*LLVMHello.*
2008-12-12 05:46:36 +00:00
# FIXME file this bug
sed -i 's,ABS_RUN_DIR/lib",ABS_RUN_DIR/%{_lib}/%{name}",' \
2008-01-21 17:33:11 +00:00
%{buildroot}%{_bindir}/llvm-config
chmod -x %{buildroot}%{_libdir}/%{name}/*.a
2008-01-21 17:33:11 +00:00
# remove documentation makefiles:
# they require the build directory to work
find examples -name 'Makefile' | xargs -0r rm -f
2008-01-21 17:33:11 +00:00
2008-12-12 05:46:36 +00:00
%post libs -p /sbin/ldconfig
%post -n clang -p /sbin/ldconfig
2008-01-21 17:33:11 +00:00
%postun libs -p /sbin/ldconfig
%postun -n clang -p /sbin/ldconfig
2008-01-21 17:33:11 +00:00
%files
%defattr(-,root,root,-)
%doc CREDITS.TXT LICENSE.TXT README.txt
2008-01-21 17:33:11 +00:00
%{_bindir}/bugpoint
%{_bindir}/llc
%{_bindir}/lli
2010-03-28 11:54:59 +00:00
%exclude %{_bindir}/llvm-config
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
2009-09-08 03:19:39 +00:00
%exclude %{_mandir}/man1/clang.1.*
%exclude %{_mandir}/man1/llvmg??.1.*
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,-)
%{_bindir}/llvm-config
%{_includedir}/%{name}
%{_includedir}/%{name}-c
2010-03-28 11:54:59 +00:00
%{_libdir}/%{name}/*.a
%files libs
%defattr(-,root,root,-)
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/llvm-%{_arch}.conf
%dir %{_libdir}/%{name}
%exclude %{_libdir}/%{name}/libclang.so
%{_libdir}/%{name}/*.so
%files -n clang
%defattr(-,root,root,-)
%doc clang-docs/*
%{_bindir}/clang*
2011-03-10 21:25:04 +00:00
#%{_bindir}/c-index-test
%{_bindir}/tblgen
%{_libdir}/%{name}/libclang.so
%{_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
%files -n clang-analyzer
2009-09-08 03:19:39 +00:00
%defattr(-,root,root,-)
%{_bindir}/scan-build
%{_bindir}/scan-view
%{_libdir}/clang-analyzer
%files -n clang-doc
%defattr(-,root,root,-)
%doc tools/clang/docs/*
%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
%files ocaml-devel
%defattr(-,root,root,-)
%{_libdir}/ocaml/*.a
%{_libdir}/ocaml/*.cmx*
%{_libdir}/ocaml/*.mli
%files ocaml-doc
2008-01-21 17:33:11 +00:00
%defattr(-,root,root,-)
%doc moredocs/ocamldoc/html/*
2010-07-17 13:43:22 +00:00
%endif
2008-01-21 17:33:11 +00:00
%if 0%{?_with_doxygen}
2008-01-21 17:33:11 +00:00
%files apidoc
%defattr(-,root,root,-)
%doc apidoc/*
%files -n clang-apidoc
%defattr(-,root,root,-)
%doc clang-apidoc/*
%endif
2008-01-21 17:33:11 +00:00
%changelog
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
* Thu Mar 18 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)
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
* 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).
* 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)
2010-10-14 23:02:11 +00:00
* 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)
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
* 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)
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
* 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
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
* 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)
2009-09-06 03:00:39 +00:00
- 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)
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