llvm/llvm.spec

393 lines
10 KiB
RPMSpec
Raw Normal View History

2008-01-21 17:33:11 +00:00
# Build options:
#
# --with doxygen
# The doxygen docs are HUGE, so they are not built by default.
2008-12-12 05:46:36 +00:00
Name: llvm
Version: 2.6
Release: 0.3.pre1%{?dist}
Summary: The Low Level Virtual Machine
Group: Development/Languages
License: NCSA
URL: http://llvm.org/
Source0: http://llvm.org/prereleases/%{version}/llvm-%{version}.tar.gz
Source1: http://llvm.org/prereleases/%{version}/clang-%{version}.tar.gz
# http://llvm.org/bugs/show_bug.cgi?id=3153
Patch0: llvm-2.6-destdir.patch
Patch1: llvm-2.6-destdir-clang.patch
# http://llvm.org/bugs/show_bug.cgi?id=4911
Patch2: llvm-2.5-tclsh_check.patch
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: bison
BuildRequires: chrpath
BuildRequires: flex
BuildRequires: gcc-c++ >= 3.4
BuildRequires: groff
BuildRequires: libtool-ltdl-devel
BuildRequires: ocaml-ocamldoc
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
2008-01-21 17:33:11 +00:00
%if %{?_with_doxygen:1}%{!?_with_doxygen:0}
BuildRequires: doxygen graphviz
2008-01-21 17:33:11 +00:00
%endif
# LLVM is not supported on PPC64
# http://llvm.org/bugs/show_bug.cgi?id=3729
ExcludeArch: ppc64
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
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: Development/Languages
Requires: %{name} = %{version}-%{release}
2008-01-21 17:33:11 +00:00
%description doc
Documentation for the LLVM compiler infrastructure.
%package clang
Summary: A C language family frontend for LLVM
License: NCSA
Group: Development/Languages
Requires: %{name} = %{version}-%{release}
2008-01-21 17:33:11 +00:00
%description 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 qqqtools are built
as libraries and designed to be loosely-coupled and extendable.
2008-01-21 17:33:11 +00:00
2009-09-08 03:19:39 +00:00
%package clang-analyzer
Summary: A source code analysis framework
License: NCSA
Group: Development/Languages
Requires: %{name}-clang = %{version}-%{release}
# not picked up automatically since files are currently not instaled
# in standard Python hierarchies yet
Requires: python
%description 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.
2008-01-21 17:33:11 +00:00
%if %{?_with_doxygen:1}%{!?_with_doxygen:0}
%package apidoc
Summary: API documentation for LLVM
Group: Development/Languages
Requires: %{name}-docs = %{version}-%{release}
2008-01-21 17:33:11 +00:00
%description apidoc
API documentation for the LLVM compiler infrastructure.
%endif
%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}
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
Requires: %{name}-ocaml = %{version}-%{release}
%description ocaml-doc
HTML documentation for LLVM's OCaml binding.
2008-01-21 17:33:11 +00:00
%prep
%setup -q -n llvm-%{version} -a1 %{?_with_gcc:-a2}
mv clang-2.6 tools/clang
2008-01-21 17:33:11 +00:00
%patch0 -p0 -b .destdir
pushd tools/clang
%patch1 -p0 -b .destdir-clang
popd
%patch2 -p1 -b .tclsh_check
2009-09-06 03:00:39 +00:00
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
# no PIC on ix86: http://llvm.org/bugs/show_bug.cgi?id=3239
2009-09-06 03:00:39 +00:00
mkdir obj && cd obj
../configure \
--prefix=%{_prefix} \
--libdir=%{_libdir}/%{name} \
2009-09-06 03:00:39 +00:00
--disable-assertions \
2008-01-21 17:33:11 +00:00
--enable-debug-runtime \
--enable-jit \
%ifarch %{ix86}
--enable-pic=no
%endif
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} OPTIMIZE_OPTION='%{optflags}'
2008-01-21 17:33:11 +00:00
2009-09-06 03:00:39 +00:00
%check
# some tests fail on PPC
# http://www.nabble.com/LLVM-2.6-pre1%3A-test-failures-on-Fedora-11.91-%28Rawhide%29-ppc-td25334198.html
2009-09-07 17:54:33 +00:00
%ifnarch ppc
2009-09-07 17:24:07 +00:00
cd obj && make check
2009-09-07 17:54:33 +00:00
%endif
2009-09-06 03:00:39 +00:00
2008-01-21 17:33:11 +00:00
%install
rm -rf %{buildroot}
2009-09-06 03:00:39 +00:00
cd obj
2008-01-21 17:33:11 +00:00
chmod -x examples/Makefile
# Fix hard-coded libdir for clang Headers
sed -i 's|(PROJ_prefix)/lib/clang|(PROJ_prefix)/%{_lib}/clang|g' \
tools/clang/lib/Headers/Makefile
2008-12-12 05:46:36 +00:00
make install DESTDIR=%{buildroot} \
PROJ_docsdir=/moredocs
# Static analyzer not installed by default:
# http://clang-analyzer.llvm.org/installation#OtherPlatforms
2009-09-08 03:19:39 +00:00
mkdir -p %{buildroot}%{_libdir}/clang-analyzer/libexec
# link clang-cc for scan-build to find
ln -s %{_libexecdir}/clang-cc %{buildroot}%{_libdir}/clang-analyzer/libexec/
# create launchers
for f in scan-{build,view}; do
2009-09-08 03:42:39 +00:00
ln -s %{_libdir}/clang-analyzer/$f %{buildroot}%{_bindir}/$f
2009-09-08 03:19:39 +00:00
done
pushd ../tools/clang/utils
cp -p ccc-analyzer %{buildroot}%{_libdir}/clang-analyzer/libexec/
for f in scan-build scanview.css sorttable.js; do
cp -p $f %{buildroot}%{_libdir}/clang-analyzer/
done
popd
pushd ../tools/clang/tools/scan-view
cp -pr * %{buildroot}%{_libdir}/clang-analyzer/
popd
# Move documentation back to build directory
#
mv %{buildroot}/moredocs ../
rm ../moredocs/*.tar.gz
rm ../moredocs/ocamldoc/html/*.tar.gz
2008-01-21 17:33:11 +00:00
find %{buildroot} -name .dir -print0 | xargs -0r rm -f
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
2008-01-21 17:33:11 +00:00
# Remove deprecated tools.
rm %{buildroot}%{_bindir}/gcc{as,ld}
# 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
2008-01-21 17:33:11 +00:00
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc CREDITS.TXT LICENSE.TXT README.txt
2008-01-21 17:33:11 +00:00
%exclude %{_bindir}/llvm-config
%{_bindir}/bugpoint
%{_bindir}/llc
%{_bindir}/lli
%{_bindir}/llvm*
%{_bindir}/opt
2009-09-08 03:19:39 +00:00
%exclude %{_mandir}/man1/clang.1.*
%exclude %{_mandir}/man1/FileCheck.1.*
2008-01-21 17:33:11 +00:00
%doc %{_mandir}/man1/*.1.gz
%if %{?_with_doxygen:1}%{!?_with_doxygen:0}
%exclude %{_bindir}/llvm-[cg]++
%exclude %{_bindir}/llvm-gcc
%exclude %{_mandir}/man1/llvm-[cg]++.*
%exclude %{_mandir}/man1/llvm-gcc.*
%endif
%files devel
%defattr(-,root,root,-)
%{_bindir}/llvm-config
%{_includedir}/%{name}
%{_includedir}/%{name}-c
%{_libdir}/%{name}
2008-01-21 17:33:11 +00:00
%files clang
%defattr(-,root,root,-)
%{_bindir}/clang*
%{_bindir}/FileCheck
%{_bindir}/FileUpdate
%{_bindir}/tblgen
%{_libdir}/clang
%{_libexecdir}/clang-cc
2009-09-08 03:19:39 +00:00
%doc %{_mandir}/man1/clang.1.*
%doc %{_mandir}/man1/FileCheck.1.*
%files clang-analyzer
%defattr(-,root,root,-)
%{_bindir}/scan-build
%{_bindir}/scan-view
%{_libdir}/clang-analyzer
%files doc
%defattr(-,root,root,-)
%doc examples moredocs/html
2008-01-21 17:33:11 +00:00
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/*
2008-01-21 17:33:11 +00:00
%if %{?_with_doxygen:1}%{!?_with_doxygen:0}
%files apidoc
%defattr(-,root,root,-)
%doc docs/doxygen
%endif
%changelog
* 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
2009-09-08 16:24:29 +00:00
- Disable assertions (needed by OpenGTL, #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