lldb/lldb.spec

130 lines
3.5 KiB
RPMSpec
Raw Normal View History

2016-01-27 14:32:24 +00:00
Name: lldb
2016-02-19 00:19:00 +00:00
Version: 3.8.0
Release: 2%{?dist}
2016-01-27 14:32:24 +00:00
Summary: Next generation high-performance debugger
License: NCSA
URL: http://llvm.org
2016-03-10 01:06:05 +00:00
Source0: http://llvm.org/releases/%{version}/%{name}-%{version}.src.tar.xz
2016-02-19 00:19:00 +00:00
# hack patch from upstream review systems to fix out of tree builds.
Patch0: D15067.id41365.diff
2016-01-27 14:32:24 +00:00
BuildRequires: cmake
BuildRequires: llvm-devel = %{version}
BuildRequires: clang-devel = %{version}
BuildRequires: libedit-devel
BuildRequires: swig
2016-02-14 04:03:20 +00:00
BuildRequires: llvm-static = %{version}
2016-02-14 07:36:06 +00:00
BuildRequires: libffi-devel
2016-02-14 08:04:06 +00:00
BuildRequires: zlib-devel
BuildRequires: libxml2-devel
2016-01-27 14:32:24 +00:00
%description
LLDB is a next generation, high-performance debugger. It is built as a set
of reusable components which highly leverage existing libraries in the
larger LLVM Project, such as the Clang expression parser and LLVM
disassembler.
%package devel
Summary: Development header files for LLDB
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The package contains header files for the LLDB debugger.
%package -n python-lldb
Summary: Python module for LLDB
BuildRequires: python2-devel
2016-02-19 00:19:00 +00:00
Requires: python2-six
2016-01-27 14:32:24 +00:00
%description -n python-lldb
The package contains the LLDB Python module.
%prep
2016-03-10 01:06:05 +00:00
%setup -q -n %{name}-%{version}.src
2016-01-27 14:32:24 +00:00
2016-02-19 00:19:00 +00:00
%patch0 -p1 -b .dave
2016-01-27 14:32:24 +00:00
%build
mkdir -p _build
cd _build
# Python version detection is broken
LDFLAGS="%{__global_ldflags} -lpthread -ldl"
2016-02-19 00:19:00 +00:00
CFLAGS="%{optflags} -fno-strict-aliasing -Wno-error=format-security"
CXXFLAGS="%{optflags} -fno-strict-aliasing -Wno-error=format-security"
2016-01-27 14:32:24 +00:00
%cmake .. \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
2016-02-24 23:48:14 +00:00
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
2016-01-27 14:32:24 +00:00
-DLLVM_CONFIG:FILEPATH=/usr/bin/llvm-config-%{__isa_bits} \
\
-DLLDB_PATH_TO_LLVM_BUILD=%{_prefix} \
-DLLDB_PATH_TO_CLANG_BUILD=%{_prefix} \
\
-DLLDB_DISABLE_CURSES:BOOL=OFF \
-DLLDB_DISABLE_LIBEDIT:BOOL=OFF \
-DLLDB_DISABLE_PYTHON:BOOL=OFF \
\
-DPYTHON_EXECUTABLE:STRING=%{__python} \
-DPYTHON_VERSION_MAJOR:STRING=$(%{__python} -c "import sys; print sys.version_info.major") \
-DPYTHON_VERSION_MINOR:STRING=$(%{__python} -c "import sys; print sys.version_info.minor")
make %{?_smp_mflags}
%install
cd _build
make install DESTDIR=%{buildroot}
# remove static libraries
rm -fv %{buildroot}%{_libdir}/*.a
# python: fix binary libraries location
liblldb=$(basename $(readlink -e %{buildroot}%{_libdir}/liblldb.so))
ln -vsf "../../../${liblldb}" %{buildroot}%{python_sitearch}/lldb/_lldb.so
mv -v %{buildroot}%{python_sitearch}/readline.so %{buildroot}%{python_sitearch}/lldb/readline.so
2016-02-19 00:19:00 +00:00
# remove bundled six.py
rm -f %{buildroot}%{python_sitearch}/six.*
2016-01-27 14:32:24 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%{_bindir}/lldb*
%{_libdir}/liblldb.so.*
%files devel
%{_includedir}/lldb
%{_libdir}/*.so
%files -n python-lldb
%{python_sitearch}/lldb
%changelog
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.0-2
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
2016-03-10 01:06:05 +00:00
* Thu Mar 10 2016 Dave Airlie <airlied@redhat.com> 3.8.0-1
- lldb 3.8.0
2016-03-02 23:29:20 +00:00
* Thu Mar 03 2016 Dave Airlie <airlied@redhat.com> 3.8.0-0.3
- lldb 3.8.0 rc3
2016-02-24 23:48:14 +00:00
* Wed Feb 24 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.2
- dynamically link to llvm
2016-02-19 00:19:00 +00:00
* Thu Feb 18 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.1
- lldb 3.8.0 rc2
2016-02-14 03:16:20 +00:00
* Sun Feb 14 2016 Dave Airlie <airlied@redhat.com> 3.7.1-3
- rebuild lldb against latest llvm
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2016-01-27 14:32:24 +00:00
* Tue Oct 06 2015 Jan Vcelak <jvcelak@fedoraproject.org> 3.7.0-100
- initial version using cmake build system