llvm/llvm.spec

163 lines
3.9 KiB
RPMSpec
Raw Normal View History

2016-01-27 15:23:13 +00:00
# Components enabled if supported by target architecture:
%ifarch %ix86 x86_64
%bcond_without gold
2010-07-17 13:43:22 +00:00
%else
%bcond_with gold
2010-07-17 13:43:22 +00:00
%endif
2012-07-13 07:33:20 +00:00
2016-01-27 15:23:13 +00:00
Name: llvm
Version: 3.7.1
Release: 1%{?dist}
Summary: The Low Level Virtual Machine
2016-01-27 15:23:13 +00:00
License: NCSA
URL: http://llvm.org
Source0: http://llvm.org/releases/%{version}/%{name}-%{version}.src.tar.xz
2016-01-27 15:23:13 +00:00
Source100: llvm-config.h
2016-01-27 15:23:13 +00:00
BuildRequires: cmake
BuildRequires: zlib-devel
BuildRequires: libffi-devel
2016-01-27 15:23:13 +00:00
BuildRequires: python3-sphinx
%if %{with gold}
BuildRequires: binutils-devel
%endif
2016-01-27 15:23:13 +00:00
BuildRequires: libstdc++-static
2008-01-21 17:33:11 +00:00
2016-01-27 15:23:13 +00:00
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
2008-01-21 17:33:11 +00:00
2016-01-27 15:23:13 +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.
2008-01-21 17:33:11 +00:00
%package devel
2016-01-27 15:23:13 +00:00
Summary: Libraries and header files for LLVM
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires(posttrans): %{_sbindir}/alternatives
Requires(posttrans): %{_sbindir}/alternatives
2008-01-21 17:33:11 +00:00
%description devel
2016-01-27 15:23:13 +00:00
This package contains library and header files needed to develop new native
programs that use the LLVM infrastructure.
2008-01-21 17:33:11 +00:00
%package doc
2016-01-27 15:23:13 +00:00
Summary: Documentation for LLVM
BuildArch: noarch
Requires: %{name} = %{version}-%{release}
2008-01-21 17:33:11 +00:00
%description doc
Documentation for the LLVM compiler infrastructure.
%package libs
2016-01-27 15:23:13 +00:00
Summary: LLVM shared libraries
%description libs
Shared libraries for the LLVM compiler infrastructure.
2008-01-21 17:33:11 +00:00
%prep
2016-01-27 15:23:13 +00:00
%setup -q -n %{name}-%{version}.src
2008-01-21 17:33:11 +00:00
%build
2016-01-27 15:23:13 +00:00
mkdir -p _build
cd _build
%cmake .. \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_SHARED_LINKER_FLAGS="-Wl,-Bsymbolic -static-libstdc++" \
%if %{__isa_bits} == 64
-DLLVM_LIBDIR_SUFFIX=64 \
%else
2016-01-27 15:23:13 +00:00
-DLLVM_LIBDIR_SUFFIX= \
%endif
2016-01-27 15:23:13 +00:00
\
-DLLVM_ENABLE_LIBCXX:BOOL=OFF \
-DLLVM_ENABLE_ZLIB:BOOL=ON \
-DLLVM_ENABLE_FFI:BOOL=ON \
-DLLVM_ENABLE_RTTI:BOOL=ON \
%if %{with gold}
2016-01-27 15:23:13 +00:00
-DLLVM_BINUTILS_INCDIR=%{_includedir} \
%endif
\
-DLLVM_BUILD_RUNTIME:BOOL=ON \
\
-DLLVM_INCLUDE_TOOLS:BOOL=ON \
-DLLVM_BUILD_TOOLS:BOOL=ON \
\
-DLLVM_INCLUDE_TESTS:BOOL=ON \
-DLLVM_BUILD_TESTS:BOOL=ON \
\
-DLLVM_INCLUDE_EXAMPLES:BOOL=ON \
-DLLVM_BUILD_EXAMPLES:BOOL=OFF \
\
-DLLVM_INCLUDE_UTILS:BOOL=ON \
-DLLVM_INSTALL_UTILS:BOOL=OFF \
\
-DLLVM_INCLUDE_DOCS:BOOL=ON \
-DLLVM_BUILD_DOCS:BOOL=ON \
-DLLVM_ENABLE_SPHINX:BOOL=ON \
-DLLVM_ENABLE_DOXYGEN:BOOL=OFF \
\
-DLLVM_BUILD_LLVM_DYLIB:BOOL=OFF \
-DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=ON \
-DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \
\
-DSPHINX_EXECUTABLE=%{_bindir}/sphinx-build-3
make %{?_smp_mflags}
2008-01-21 17:33:11 +00:00
%install
2016-01-27 15:23:13 +00:00
cd _build
make install DESTDIR=%{buildroot}
2016-01-27 15:23:13 +00:00
# fix multi-lib
mv -v %{buildroot}%{_bindir}/llvm-config{,-%{__isa_bits}}
mv -v %{buildroot}%{_includedir}/llvm/Config/llvm-config{,-%{__isa_bits}}.h
install -m 0644 %{SOURCE100} %{buildroot}%{_includedir}/llvm/Config/llvm-config.h
2008-12-12 05:46:36 +00:00
%check
2016-01-27 15:23:13 +00:00
cd _build
make check-all || :
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
2016-01-27 15:23:13 +00:00
%post devel
%{_sbindir}/update-alternatives --install %{_bindir}/llvm-config llvm-config %{_bindir}/llvm-config-%{__isa_bits} %{__isa_bits}
%postun devel
2016-01-27 15:23:13 +00:00
[ $1 -eq 0 ] && %{_sbindir}/update-alternatives --remove llvm-config %{_bindir}/llvm-config-%{__isa_bits}
2008-01-21 17:33:11 +00:00
%files
2016-01-27 15:23:13 +00:00
%{_bindir}/*
%{_mandir}/man1/*.1.*
%exclude %{_bindir}/llvm-config-%{__isa_bits}
2016-01-27 15:23:13 +00:00
%exclude %{_mandir}/man1/llvm-config.1.*
%files libs
%{_libdir}/*.so.*
2008-01-21 17:33:11 +00:00
%files devel
%{_bindir}/llvm-config-%{__isa_bits}
2016-01-27 15:23:13 +00:00
%{_mandir}/man1/llvm-config.1.*
%{_includedir}/llvm
%{_includedir}/llvm-c
%{_libdir}/*.so
%{_datadir}/llvm/cmake
%files doc
2016-01-27 15:23:13 +00:00
%doc %{_pkgdocdir}/html
2008-01-21 17:33:11 +00:00
%changelog
2016-01-27 15:23:13 +00:00
* Thu Jan 07 2016 Jan Vcelak <jvcelak@fedoraproject.org> 3.7.1-1
- new upstream release
- enable gold linker
2008-02-18 21:26:38 +00:00
2016-01-27 15:23:13 +00:00
* Wed Nov 04 2015 Jan Vcelak <jvcelak@fedoraproject.org> 3.7.0-100
- fix Requires for subpackages on the main package
2008-01-21 17:33:11 +00:00
2016-01-27 15:23:13 +00:00
* Tue Oct 06 2015 Jan Vcelak <jvcelak@fedoraproject.org> 3.7.0-100
- initial version using cmake build system