llvm/llvm.spec

424 lines
11 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.
#
# --with gcc
# The llvm-gcc package doesn't currently build
# (builds on x86_64, not on i686). Plan is to enable clang instead.
2008-01-21 17:33:11 +00:00
%define lgcc_version 4.2
# LLVM object files don't contain build IDs. I don't know why yet.
# Suppress their generation for now.
2009-09-06 03:00:39 +00:00
%define _missing_build_ids_terminate_build 0
#define debug_package %{nil}
2008-12-12 05:46:36 +00:00
Name: llvm
Version: 2.5
2009-09-06 03:00:39 +00:00
Release: 6%{?dist}
Summary: The Low Level Virtual Machine
Group: Development/Languages
License: NCSA
URL: http://llvm.org/
Source0: http://llvm.org/releases/%{version}/llvm-%{version}.tar.gz
2008-12-12 05:46:36 +00:00
%if %{?_with_gcc:1}%{!?_with_gcc:0}
2009-08-10 03:43:29 +00:00
Source1: http://llvm.org/releases/%{version}/llvm-gcc-%{lgcc_version}-%{version}.source.tar.gz
2008-12-12 05:46:36 +00:00
%endif
Patch0: llvm-2.1-fix-sed.patch
2008-12-12 05:46:36 +00:00
Patch1: llvm-2.4-fix-ocaml.patch
# http://llvm.org/bugs/show_bug.cgi?id=3726
Patch2: llvm-2.5-gcc44.patch
2009-09-06 03:00:39 +00:00
Patch3: llvm-2.5-tclsh_check.patch
Patch4: llvm-2.5-Base.td-x86_32.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
BuildRequires: dejagnu tcl-devel
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.
%if %{?_with_gcc:1}%{!?_with_gcc:0}
It currently supports compilation of C and C++ programs, using front
ends derived from GCC %{lgcc_version}.
%endif
%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.
%if %{?_with_gcc:1}%{!?_with_gcc:0}
%package gcc
Summary: C compiler for LLVM
License: GPL+
Group: Development/Languages
Requires: %{name} = %{version}-%{release}
2008-01-21 17:33:11 +00:00
%description gcc
C compiler for LLVM.
%package gcc-c++
Summary: C++ compiler for LLVM
License: GPL+
Group: Development/Languages
Requires: %{name}-gcc = %{version}-%{release}
2008-01-21 17:33:11 +00:00
%description gcc-c++
C++ compiler for LLVM.
%endif
%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.
2008-01-21 17:33:11 +00:00
%prep
%setup -q -n llvm-%{version} %{?_with_gcc:-a1}
%patch0 -p1 -b .fix-sed
2008-12-12 05:46:36 +00:00
%patch1 -p1 -b .fix-ocaml
%patch2 -p1 -b .gcc44
2009-09-06 03:00:39 +00:00
%patch3 -p1 -b .tclsh_check
%ifarch %{ix86}
%patch4 -p0 -b .ix86pic
%endif
2008-01-21 17:33:11 +00:00
%build
# Note: --enable-pic can be turned off when 2.6 comes out
# and up to 2.5, unsafe on 32-bit archs (in our case,
# anything but x86_64)
2009-09-06 03:00:39 +00:00
# Disabling assertions now, rec. by pure and needed for OpenGTL
mkdir obj && cd obj
../configure \
--prefix=%{_prefix} \
--libdir=%{_libdir}/llvm \
2009-09-06 03:00:39 +00:00
--disable-assertions \
2008-01-21 17:33:11 +00:00
--enable-debug-runtime \
--enable-jit \
2009-09-06 03:00:39 +00:00
%ifnarch %{ix86}
--enable-pic
%endif
2009-09-06 03:00:39 +00:00
# configure does not properly specify libdir
sed -i 's|(PROJ_prefix)/lib|(PROJ_prefix)/%{_lib}/llvm|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
%if %{?_with_gcc:1}%{!?_with_gcc:0}
# Build llvm-gcc.
2009-09-06 03:00:39 +00:00
export PATH=%{_builddir}/obj/Release-Asserts/bin:$PATH
cd ..
mkdir gcc-obj
cd gcc-obj
2009-09-06 18:58:34 +00:00
../llvm-gcc%{lgcc_version}-%{version}.source/configure \
--target=%{_target_platform} \
--prefix=%{_libdir}/llvm-gcc \
--libdir=%{_libdir}/llvm-gcc/%{_lib} \
--enable-languages=c,c++ \
2009-09-06 03:00:39 +00:00
--enable-checking \
--enable-llvm=$PWD/../obj \
--disable-bootstrap \
2008-01-21 17:33:11 +00:00
%ifarch x86_64
--disable-multilib \
--disable-shared \
%endif
--program-prefix=llvm-
2009-09-06 03:00:39 +00:00
2008-01-21 17:33:11 +00:00
make %{_smp_mflags} LLVM_VERSION_INFO=%{version}
%endif
2009-09-06 03:00:39 +00:00
%check
(cd obj && make check) 2>&1 | tee testlogs.txt ; true
# Report failures and unexpected successes
echo
cat testlogs.txt | grep FAIL
cat testlogs.txt | grep XPASS
echo
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
2008-12-12 05:46:36 +00:00
# OVERRIDE_libdir used by our patched Makefile.ocaml:
# see http://llvm.org/bugs/show_bug.cgi?id=3153
make install DESTDIR=%{buildroot} \
OVERRIDE_libdir=%{_libdir}/llvm \
2009-09-06 03:00:39 +00:00
PROJ_docsdir=`pwd`/../moredocs
2008-12-12 05:46:36 +00:00
#make install \
# PROJ_prefix=%{buildroot}/%{_prefix} \
# PROJ_bindir=%{buildroot}/%{_bindir} \
# PROJ_libdir=%{buildroot}/%{_libdir}/%{name} \
# PROJ_datadir=%{buildroot}/%{_datadir} \
# PROJ_docsdir=%{buildroot}/%{_docdir}/%{name}-%{version} \
# PROJ_etcdir=%{buildroot}/%{_datadir}/%{name}-%{version} \
# PROJ_includedir=%{buildroot}/%{_includedir} \
# PROJ_infodir=%{buildroot}/%{_infodir} \
# PROJ_mandir=%{buildroot}/%{_mandir}
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
# Get rid of erroneously installed example files.
rm %{buildroot}%{_libdir}/llvm/LLVMHello.*
2008-01-21 17:33:11 +00:00
2008-12-12 05:46:36 +00:00
# And OCaml .o files
rm %{buildroot}%{_libdir}/ocaml/*.o
# Use relative links for ocaml's libLLVM*.a
#(cd %{buildroot}%{_libdir}/ocaml && for i in libLLVM*.a; do
# ln -sf %{_libdir}/llvm/$i $i;
# done)
2008-01-21 17:33:11 +00:00
# Remove deprecated tools.
rm %{buildroot}%{_bindir}/gcc{as,ld}
2009-09-06 18:58:34 +00:00
sed -i 's,ABS_RUN_DIR/lib",ABS_RUN_DIR/%{_lib}",' \
2008-01-21 17:33:11 +00:00
%{buildroot}%{_bindir}/llvm-config
2009-09-06 03:00:39 +00:00
chmod -x %{buildroot}%{_libdir}/*.[oa]
2008-01-21 17:33:11 +00:00
# remove documentation makefiles:
# they require the build directory to work
find examples -name 'Makefile'
2008-01-21 17:33:11 +00:00
%if %{?_with_gcc:1}%{!?_with_gcc:0}
# Install llvm-gcc.
2009-09-06 18:58:34 +00:00
make -C ../gcc-obj install DESTDIR=%{buildroot}
2008-01-21 17:33:11 +00:00
cd %{buildroot}%{_libdir}/llvm-gcc/%{_lib}
find . -name '*.la' -print0 | xargs -0r rm
find . -name '*.a' -exec %{buildroot}%{_bindir}/llvm-ranlib {} \;
cd ../bin
ln llvm-c++ llvm-gcc llvm-g++ %{buildroot}%{_bindir}
rm llvm-cpp llvm-gccbug llvm-gcov %{_target_platform}-gcc*
cd ..
mv man/man1/llvm-gcc.1 man/man1/llvm-g++.1 %{buildroot}%{_mandir}/man1
rm -r info man %{_lib}/libiberty.a
2009-09-06 18:58:34 +00:00
rm -r libexec/gcc/%{_target_platform}/*/install-tools
rm -r %{_lib}/gcc/%{_target_platform}/*/install-tools
2008-01-21 17:33:11 +00:00
%endif
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,-)
2009-09-06 03:00:39 +00:00
%doc CREDITS.TXT LICENSE.TXT README.txt testlogs.txt
2008-01-21 17:33:11 +00:00
%exclude %{_bindir}/llvm-config
%{_bindir}/bugpoint
%{_bindir}/llc
%{_bindir}/lli
%{_bindir}/llvm*
%{_bindir}/opt
%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}/llvm
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
2008-01-21 17:33:11 +00:00
%files doc
%defattr(-,root,root,-)
2008-12-12 05:46:36 +00:00
%doc docs/*.{html,css} docs/img examples moredocs/*
2008-01-21 17:33:11 +00:00
%if %{?_with_doxygen:1}%{!?_with_doxygen:0}
%files apidoc
%defattr(-,root,root,-)
%doc docs/doxygen
%endif
%if %{?_with_gcc:1}%{!?_with_gcc:0}
%files gcc
%defattr(-,root,root,-)
%{_bindir}/llvm-gcc
%dir %{_libdir}/llvm-gcc
%dir %{_libdir}/llvm-gcc/bin
%dir %{_libdir}/llvm-gcc/include
%dir %{_libdir}/llvm-gcc/%{_lib}
%dir %{_libdir}/llvm-gcc/libexec
%dir %{_libdir}/llvm-gcc/libexec/gcc
%dir %{_libdir}/llvm-gcc/libexec/gcc/%{_target_platform}/%{lgcc_version}
%{_libdir}/llvm-gcc/%{_lib}/gcc
%{_libdir}/llvm-gcc/%{_lib}/libmudflap*.a
%{_libdir}/llvm-gcc/bin/%{_target_platform}-llvm-gcc
%{_libdir}/llvm-gcc/bin/llvm-gcc
%{_libdir}/llvm-gcc/include/mf-runtime.h
%{_libdir}/llvm-gcc/libexec/gcc/%{_target_platform}/%{lgcc_version}/cc1
%{_libdir}/llvm-gcc/libexec/gcc/%{_target_platform}/%{lgcc_version}/collect2
%doc %{_mandir}/man1/llvm-gcc.*
%files gcc-c++
%defattr(-,root,root,-)
%{_bindir}/llvm-[cg]++
%{_libdir}/llvm-gcc/%{_lib}/lib*++.a
%{_libdir}/llvm-gcc/bin/%{_target_platform}-llvm-[cg]++
%{_libdir}/llvm-gcc/bin/llvm-[cg]++
%{_libdir}/llvm-gcc/include/c++
%{_libdir}/llvm-gcc/libexec/gcc/%{_target_platform}/%{lgcc_version}/cc1plus
%doc %{_mandir}/man1/llvm-g++.*
%endif
%changelog
2009-09-06 18:58:34 +00:00
* Sat Sep 6 2009 Michel Salim <salimma@fedoraproject.org> - 2.5-6
2009-09-06 03:00:39 +00:00
- Disable assertions (needed by OpenGTL)
- 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