# Build options: # # --with doxygen # The doxygen docs are HUGE, so they are not built by default. %bcond_with doxygen # clang header paths are hard-coded at compile time # and need adjustment whenever there's a new GCC version %global gcc_version 4.8.0 %ifarch s390 s390x sparc64 # No ocaml on these arches %bcond_with ocaml %else %bcond_without ocaml %endif %if 0%{?rhel} >= 7 %bcond_with clang ExcludeArch: s390 s390x ppc ppc64 %else %bcond_without clang %endif #global prerel rcX %global downloadurl http://llvm.org/%{?prerel:pre-}releases/%{version}%{?prerel:/%{prerel}} # gold linker support # arch list from binutils spec %global gold_arches %ix86 x86_64 %ifarch %gold_arches %bcond_without gold %else %bcond_with gold %endif Name: llvm Version: 3.1 Release: 16%{?dist} Summary: The Low Level Virtual Machine Group: Development/Languages License: NCSA URL: http://llvm.org/ Source0: %{downloadurl}/llvm-%{version}%{?prerel:%{prerel}}.src.tar.gz Source1: %{downloadurl}/clang-%{version}%{?prerel:%{prerel}}.src.tar.gz # multilib fixes Source2: llvm-Config-config.h Source3: llvm-Config-llvm-config.h # Data files should be installed with timestamps preserved Patch0: llvm-2.6-timestamp.patch # 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 # ghc Patch700: llvm-fix-ghc.patch # doc Patch800: llvm-3.1-docs-pod-markup-fixes.patch BuildRequires: bison BuildRequires: chrpath BuildRequires: flex BuildRequires: gcc = %{gcc_version} BuildRequires: gcc-c++ = %{gcc_version} BuildRequires: groff BuildRequires: libffi-devel BuildRequires: libtool-ltdl-devel %if %{with gold} BuildRequires: binutils-devel %endif %if %{with ocaml} BuildRequires: ocaml-ocamldoc %endif BuildRequires: zip # for DejaGNU test suite BuildRequires: dejagnu tcl-devel python # for doxygen documentation %if %{with doxygen} BuildRequires: doxygen graphviz %endif # pod2man moved to perl-podlators in F19 BuildRequires: %{_bindir}/pod2man Requires: llvm-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 Provides: llvm-static = %{version}-%{release} 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 %description libs Shared libraries for the LLVM compiler infrastructure. %if %{with clang} %package -n clang Summary: A C language family front-end for LLVM License: NCSA Group: Development/Languages Requires: llvm%{?_isa} = %{version}-%{release} # clang requires gcc, clang++ requires libstdc++-devel Requires: gcc Requires: libstdc++-devel = %{gcc_version} %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-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 Requires: clang%{?_isa} = %{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. %package -n clang-doc Summary: Documentation for Clang Group: Documentation BuildArch: noarch Requires: %{name} = %{version}-%{release} %description -n clang-doc Documentation for the Clang compiler front-end. %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 Requires: clang-doc = %{version}-%{release} %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}-devel%{?_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 -n llvm-%{version}%{?prerel}.src %{?with_clang:-a1} rm -r -f tools/clang %if %{with clang} mv clang-%{version}%{?prerel}.src tools/clang %endif # llvm patches %patch0 -p1 -b .timestamp #patch1 -p1 -b .link_llvmgold_to_lto # r600 llvm patch %patch600 -p1 -b .r600 %patch601 -p1 -b .r601 # clang patches %if %{with clang} pushd tools/clang %patch610 -p1 -b .r610 %patch611 -p1 -b .r611 %patch612 -p1 -b .r612 popd %endif %patch700 -p0 -b .ghc %patch800 -p1 -b .r800 # fix ld search path sed -i 's|/lib /usr/lib $lt_ld_extra|%{_libdir} $lt_ld_extra|' \ ./configure %build # 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 /') # Disabling assertions now, rec. by pure and needed for OpenGTL %configure \ --prefix=%{_prefix} \ --libdir=%{_libdir}/%{name} \ %if %{with doxygen} --enable-doxygen \ %endif %if %{with gold} --with-binutils-include=%{_includedir} \ %endif %if 0%{?rhel} >= 7 --enable-targets=host \ %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 \ %endif --disable-assertions \ --enable-debug-runtime \ --enable-jit \ --enable-libffi \ --enable-shared \ --with-c-include-dirs=%{_includedir}:$(echo %{_prefix}/lib/gcc/%{_target_cpu}*/%{gcc_version}/include) # FIXME file this # configure does not properly specify libdir sed -i 's|(PROJ_prefix)/lib|(PROJ_prefix)/%{_lib}/%{name}|g' Makefile.config # 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 make %{_smp_mflags} REQUIRES_RTTI=1 VERBOSE=1 \ %ifarch ppc OPTIMIZE_OPTION="%{optflags} -fno-var-tracking-assignments -UPPC" %else OPTIMIZE_OPTION="%{optflags}" %endif %install # 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 make install DESTDIR=%{buildroot} \ PROJ_docsdir=/moredocs # 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 # Create ld.so.conf.d entry mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d cat >> %{buildroot}%{_sysconfdir}/ld.so.conf.d/llvm-%{_arch}.conf << EOF %{_libdir}/llvm EOF %if %{with clang} # Static analyzer not installed by default: # http://clang-analyzer.llvm.org/installation#OtherPlatforms mkdir -p %{buildroot}%{_libdir}/clang-analyzer # create launchers for f in scan-{build,view}; do ln -s %{_libdir}/clang-analyzer/$f/$f %{buildroot}%{_bindir}/$f done (cd tools/clang/tools && cp -pr scan-{build,view} \ %{buildroot}%{_libdir}/clang-analyzer/) %endif # Move documentation back to build directory # mv %{buildroot}/moredocs . rm -f moredocs/*.tar.gz rm -f moredocs/ocamldoc/html/*.tar.gz # and separate the apidoc %if %{with doxygen} mv moredocs/html/doxygen apidoc mv tools/clang/docs/doxygen/html clang-apidoc %endif # And prepare Clang documentation # %if %{with clang} mkdir clang-docs for f in LICENSE.TXT NOTES.txt README.txt; do # TODO.txt; do ln tools/clang/$f clang-docs/ done rm -rf tools/clang/docs/{doxygen*,Makefile*,*.graffle,tools} %endif #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 # Get rid of erroneously installed example files. rm %{buildroot}%{_libdir}/%{name}/*LLVMHello.* # FIXME file this bug sed -i 's,ABS_RUN_DIR/lib",ABS_RUN_DIR/%{_lib}/%{name}",' \ %{buildroot}%{_bindir}/llvm-config-%{__isa_bits} chmod -x %{buildroot}%{_libdir}/%{name}/*.a # remove documentation makefiles: # they require the build directory to work find examples -name 'Makefile' | xargs -0r rm -f %check # the Koji build server does not seem to have enough RAM # for the default 16 threads # LLVM test suite failing on ARM, PPC64 and s390(x) make check LIT_ARGS="-v -j4" \ %ifarch %{arm} ppc64 s390 s390x | tee llvm-testlog-%{_arch}.txt %else %{nil} %endif %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 make -C tools/clang/test TESTARGS="-v -j4" \ | tee clang-testlog-%{_arch}.txt #ifarch ppc ppc64 s390 s390x # || : #else # %{nil} #endif %endif %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %if %{with clang} %post -n clang -p /sbin/ldconfig %postun -n clang -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 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 %defattr(-,root,root,-) %doc CREDITS.TXT LICENSE.TXT README.txt %ifarch %{arm} ppc64 s390 s390x %doc llvm-testlog-%{_arch}.txt %endif %{_bindir}/bugpoint %{_bindir}/llc %{_bindir}/lli %exclude %{_bindir}/llvm-config-%{__isa_bits} %{_bindir}/llvm* %{_bindir}/macho-dump %{_bindir}/opt %if %{with clang} %exclude %{_mandir}/man1/clang.1.* %endif %doc %{_mandir}/man1/*.1.* %exclude %{_mandir}/man1/llvm-config.1.* %files devel %defattr(-,root,root,-) %{_bindir}/llvm-config-%{__isa_bits} %{_includedir}/%{name} %{_includedir}/%{name}-c %{_libdir}/%{name}/*.a %doc %{_mandir}/man1/llvm-config.1.* %files libs %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/ld.so.conf.d/llvm-%{_arch}.conf %dir %{_libdir}/%{name} %if %{with clang} %exclude %{_libdir}/%{name}/libclang.so %endif %{_libdir}/%{name}/*.so %if %{with clang} %files -n clang %defattr(-,root,root,-) %doc clang-docs/* clang-testlog-%{_arch}.txt %{_bindir}/clang* %{_bindir}/c-index-test %{_libdir}/%{name}/libclang.so %{_prefix}/lib/clang %doc %{_mandir}/man1/clang.1.* %files -n clang-devel %defattr(-,root,root,-) %{_includedir}/clang %{_includedir}/clang-c %files -n clang-analyzer %defattr(-,root,root,-) %{_bindir}/scan-build %{_bindir}/scan-view %{_libdir}/clang-analyzer %files -n clang-doc %defattr(-,root,root,-) %doc tools/clang/docs/* %endif %files doc %defattr(-,root,root,-) %doc examples moredocs/html %if %{with ocaml} %files ocaml %defattr(-,root,root,-) %{_libdir}/ocaml/*.cma %{_libdir}/ocaml/*.cmi %{_libdir}/ocaml/META.llvm %files ocaml-devel %defattr(-,root,root,-) %{_libdir}/ocaml/*.a %{_libdir}/ocaml/*.cmx* %{_libdir}/ocaml/*.mli %files ocaml-doc %defattr(-,root,root,-) %doc moredocs/ocamldoc/html/* %endif %if %{with doxygen} %files apidoc %defattr(-,root,root,-) %doc apidoc/* %if %{with clang} %files -n clang-apidoc %defattr(-,root,root,-) %doc clang-apidoc/* %endif %endif %changelog * Mon Feb 4 2013 Jens Petersen - 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 - 3.1-15 - move lvm-config manpage to devel subpackage (#855882) - pod2man moved to perl-podlators in F19 * Fri Jan 25 2013 Kalev Lember - 3.1-14 - Rebuilt for GCC 4.8.0 * Wed Jan 23 2013 Jens Petersen - 3.1-13 - fix some docs pod markup errors to build with new perl-Pod-Parser * Mon Oct 29 2012 Richard W.M. Jones - 3.1-12 - Rebuild for OCaml 4.00.1. * Mon Sep 24 2012 Michel Salim - 3.1-11 - Actually build against GCC 4.7.2 * Mon Sep 24 2012 Michel Salim - 3.1-10 - Rebuild for GCC 4.7.2 * Tue Aug 14 2012 Dan Horák - 3.1-9 - Apply clang patches only when clang is being built * Thu Jul 19 2012 Fedora Release Engineering - 3.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Fri Jul 13 2012 Peter Robinson - 3.1-7 - Rename patch as it actually fixes Haskell * Thu Jul 12 2012 Peter Robinson - 3.1-6 - Add patch to fix building OCAML on ARM * Wed Jul 4 2012 Michel Salim - 3.1-5 - Actually set runtime dependency on libstdc++ 4.7.1 * Mon Jul 2 2012 Peter Robinson - 3.1-4 - Rebuild for new libstdc++ bump * Sun Jun 10 2012 Richard W.M. Jones - 3.1-3 - Rebuild for OCaml 4.00.0. * Fri Jun 8 2012 Michel Salim - 3.1-2 - Rebuild for ocaml 4.00.0 beta * Sun Jun 03 2012 Dave Airlie 3.1-1 - rebase to 3.1 + add r600 patches from Tom Stellar * Fri May 25 2012 Peter Robinson - 3.0-13 - Add compiler build options for ARM hardfp * Sun May 6 2012 Peter Robinson - 3.0-12 - Bump build * Fri Mar 30 2012 Michel Alexandre Salim - 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 - 3.0-10 - Build without -ftree-pre as a workaround for clang segfaulting on x86_64 (#791365) * Sat Mar 17 2012 Karsten Hopp 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 - 3.0-8 - Apply upstream patch to properly link LLVMgold against LTO * Fri Feb 24 2012 Michel Salim - 3.0-7 - Build LLVMgold plugin on supported architectures * Tue Feb 7 2012 Michel Salim - 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 - 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 - 3.0-4 - Rebuild for OCaml 3.12.1. * Wed Dec 14 2011 Adam Jackson 3.0-3 - Also ExcludeArch: ppc* in RHEL * Tue Dec 13 2011 Adam Jackson 3.0-2 - ExcludeArch: s390* in RHEL since the native backend has disappeared in 3.0 * Sun Dec 11 2011 Michel Salim - 3.0-1 - Update to final 3.0 release * Mon Dec 05 2011 Adam Jackson 3.0-0.2.rc3 - RHEL customization: disable clang, --enable-targets=host * Fri Nov 11 2011 Michel Salim - 3.0-0.1.rc3 - Update to 3.0rc3 * Tue Oct 11 2011 Dan Horák - 2.9-5 - don't fail the build on failing tests on ppc(64) and s390(x) * Fri Sep 30 2011 Michel Salim - 2.9-4 - Apply upstream patch for Operator.h C++0x incompatibility (# 737365) * Sat Aug 6 2011 Michel Salim - 2.9-3 - Disable LLVM test suite on ppc64 architecture (# 728604) - Disable clang test suite on ppc* architectures (-) * Wed Aug 3 2011 Michel Salim - 2.9-2 - Add runtime dependency of -devel on libffi-devel * Mon Aug 1 2011 Michel Salim - 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 2.9-0.4.rc2 - enable ppc64 build * Fri Mar 25 2011 Michel Salim - 2.9-0.3.rc2 - Update to 2.9rc2 * Thu Mar 18 2011 Michel Salim - 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 - 2.9-0.1.rc1 - Update to 2.9rc1 * Tue Feb 08 2011 Fedora Release Engineering - 2.8-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Mon Jan 10 2011 Richard W.M. Jones - 2.8-6 - Rebuild for OCaml 3.12 (http://fedoraproject.org/wiki/Features/OCaml3.12). * Sat Nov 27 2010 Michel Salim - 2.8-5 - clang now requires gcc-c++ for linking and headers (bug #654560) * Fri Nov 12 2010 Michel Salim - 2.8-4 - Backport support for C++0x (# 648990) * Fri Oct 15 2010 Michel Salim - 2.8-3 - Re-add omitted %%{_includedir} * Thu Oct 14 2010 Michel Salim - 2.8-2 - Add correct C include directory at compile time (# 641500) * Tue Oct 12 2010 Michel Salim - 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 - 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 - 2.7-8 - disable ocaml support on sparc64 * Wed Aug 11 2010 David Malcolm - 2.7-7 - recompiling .py files against Python 2.7 (rhbz#623332) * Sat Jul 17 2010 Dan Horák - 2.7-6 - conditionalize ocaml support * Mon Jun 7 2010 Michel Salim - 2.7-5 - Make the new noarch -doc obsoletes older (arched) subpackages * Sat Jun 5 2010 Michel Salim - 2.7-4 - Add F-12/x86_64 and F-13 C++ header paths * Wed May 26 2010 Michel Salim - 2.7-3 - Revert to disabling apidoc by default * Mon May 24 2010 Michel Salim - 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 - 2.7-1 - Update to final 2.7 release * Sun Mar 28 2010 Michel Salim - 2.7-0.1.pre1 - Update to first 2.7 pre-release * Fri Sep 18 2009 Michel Salim - 2.6-0.6.pre2 - Update to 2.6 pre-release2 - -devel subpackage now virtually provides -static * Wed Sep 9 2009 Michel Salim - 2.6-0.5.pre1 - Disable var tracking assignments on PPC * Wed Sep 9 2009 Michel Salim - 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 - 2.6-0.3.pre1 - Package Clang's static analyzer tools * Mon Sep 7 2009 Michel Salim - 2.6-0.2.pre1 - PIC is now enabled by default; explicitly disable on %%{ix86} * Mon Sep 7 2009 Michel Salim - 2.6-0.1.pre1 - First 2.6 prerelease - Enable Clang front-end - Enable debuginfo generation * Sat Sep 5 2009 Michel Salim - 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 - 2.5-5 - Only disable PIC on %%ix86; ppc actually needs it * Sat Aug 22 2009 Michel Salim - 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 - 2.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Wed Mar 4 2009 Michel Salim - 2.5-2 - Remove build scripts; they require the build directory to work * Wed Mar 4 2009 Michel Salim - 2.5-1 - Update to 2.5 - Package build scripts (bug #457881) * Tue Dec 2 2008 Michel Salim - 2.4-2 - Patched build process for the OCaml binding * Tue Dec 2 2008 Michel Salim - 2.4-1 - Update to 2.4 - Package Ocaml binding * Wed Jun 18 2008 Bryan O'Sullivan - 2.3-2 - Add dependency on groff * Wed Jun 18 2008 Bryan O'Sullivan - 2.3-1 - LLVM 2.3 * Thu May 29 2008 Tom "spot" Callaway - 2.2-4 - fix license tags * Wed Mar 5 2008 Bryan O'Sullivan - 2.2-3 - Fix compilation problems with gcc 4.3 * Mon Feb 18 2008 Fedora Release Engineering - 2.2-2 - Autorebuild for GCC 4.3 * Sun Jan 20 2008 Bryan O'Sullivan - 2.1-2 - Fix review comments * Sun Jan 20 2008 Bryan O'Sullivan - 2.1-1 - Initial version