Blame SPECS/lldb.spec

1f4c4e
#%%global rc_ver 5
1f4c4e
%global lldb_srcdir %{name}-%{version}%{?rc_ver:rc%{rc_ver}}.src
1f4c4e
1f4c4e
Name:		lldb
1f4c4e
Version:	12.0.0%{?rc_ver:~rc%{rc_ver}}
1f4c4e
Release:	1%{?dist}
1f4c4e
Summary:	Next generation high-performance debugger
1f4c4e
1f4c4e
License:	NCSA
1f4c4e
URL:		http://lldb.llvm.org/
1f4c4e
Source0:	https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}%{?rc_ver:-rc%{rc_ver}}/%{lldb_srcdir}.tar.xz
1f4c4e
Source1:	https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}%{?rc_ver:-rc%{rc_ver}}/%{lldb_srcdir}.tar.xz.sig
1f4c4e
Source2:	tstellar-gpg-key.asc
1f4c4e
1f4c4e
BuildRequires:	gcc
1f4c4e
BuildRequires:	gcc-c++
1f4c4e
BuildRequires:	cmake
1f4c4e
BuildRequires:	ninja-build
1f4c4e
BuildRequires:	llvm-devel = %{version}
1f4c4e
BuildRequires:	llvm-test = %{version}
1f4c4e
BuildRequires:	clang-devel = %{version}
1f4c4e
BuildRequires:	ncurses-devel
1f4c4e
BuildRequires:	swig
1f4c4e
BuildRequires:	llvm-static = %{version}
1f4c4e
BuildRequires:	libffi-devel
1f4c4e
BuildRequires:	zlib-devel
1f4c4e
BuildRequires:	libxml2-devel
1f4c4e
BuildRequires:	libedit-devel
1f4c4e
BuildRequires:	python3-lit
1f4c4e
BuildRequires:	multilib-rpm-config
1f4c4e
1f4c4e
Requires:	python3-lldb
1f4c4e
1f4c4e
# For origin certification
1f4c4e
BuildRequires:	gnupg2
1f4c4e
1f4c4e
Patch0:     0001-PATCH-lldb-Portable-asm-ptrace.h-include.patch
1f4c4e
Patch1:     0002-PATCH-lldb-Support-DWARF-5-DW_FORM_line_strp-used-by.patch
1f4c4e
1f4c4e
%description
1f4c4e
LLDB is a next generation, high-performance debugger. It is built as a set
1f4c4e
of reusable components which highly leverage existing libraries in the
1f4c4e
larger LLVM Project, such as the Clang expression parser and LLVM
1f4c4e
disassembler.
1f4c4e
1f4c4e
%package devel
1f4c4e
Summary:	Development header files for LLDB
1f4c4e
Requires:	%{name}%{?_isa} = %{version}-%{release}
1f4c4e
1f4c4e
%description devel
1f4c4e
The package contains header files for the LLDB debugger.
1f4c4e
1f4c4e
%package -n python3-lldb
1f4c4e
%{?python_provide:%python_provide python3-lldb}
1f4c4e
Summary:	Python module for LLDB
1f4c4e
BuildRequires:	python3-devel
1f4c4e
BuildRequires:	python3-setuptools
1f4c4e
Requires:	python3-six
1f4c4e
Requires:	%{name}%{?_isa} = %{version}-%{release}
1f4c4e
1f4c4e
%description -n python3-lldb
1f4c4e
The package contains the LLDB Python module.
1f4c4e
1f4c4e
%prep
1f4c4e
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
1f4c4e
%autosetup -n %{lldb_srcdir} -p2
1f4c4e
1f4c4e
%build
1f4c4e
1f4c4e
CFLAGS="%{optflags} -Wno-error=format-security"
1f4c4e
CXXFLAGS="%{optflags} -Wno-error=format-security"
1f4c4e
1f4c4e
%cmake  -GNinja \
1f4c4e
	-DCMAKE_BUILD_TYPE=RelWithDebInfo \
1f4c4e
	-DCMAKE_SKIP_RPATH:BOOL=ON \
1f4c4e
	-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
1f4c4e
	-DLLVM_CONFIG:FILEPATH=/usr/bin/llvm-config-%{__isa_bits} \
1f4c4e
	\
1f4c4e
	-DLLDB_DISABLE_CURSES:BOOL=OFF \
1f4c4e
	-DLLDB_DISABLE_LIBEDIT:BOOL=OFF \
1f4c4e
	-DLLDB_DISABLE_PYTHON:BOOL=OFF \
1f4c4e
%if 0%{?__isa_bits} == 64
1f4c4e
	-DLLVM_LIBDIR_SUFFIX=64 \
1f4c4e
%else
1f4c4e
	-DLLVM_LIBDIR_SUFFIX= \
1f4c4e
%endif
1f4c4e
	\
1f4c4e
	-DPYTHON_EXECUTABLE:STRING=%{__python3} \
1f4c4e
	-DPYTHON_VERSION_MAJOR:STRING=$(%{__python3} -c "import sys; print(sys.version_info.major)") \
1f4c4e
	-DPYTHON_VERSION_MINOR:STRING=$(%{__python3} -c "import sys; print(sys.version_info.minor)") \
1f4c4e
	-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
1f4c4e
	-DCLANG_LINK_CLANG_DYLIB=ON \
1f4c4e
	-DLLVM_LIT_ARGS="-sv \
1f4c4e
	--path %{_libdir}/llvm" \
1f4c4e
1f4c4e
%cmake_build
1f4c4e
1f4c4e
%install
1f4c4e
%cmake_install
1f4c4e
1f4c4e
%multilib_fix_c_header --file %{_includedir}/lldb/Host/Config.h
1f4c4e
1f4c4e
# remove static libraries
1f4c4e
rm -fv %{buildroot}%{_libdir}/*.a
1f4c4e
1f4c4e
# python: fix binary libraries location
1f4c4e
liblldb=$(basename $(readlink -e %{buildroot}%{_libdir}/liblldb.so))
1f4c4e
ln -vsf "../../../${liblldb}" %{buildroot}%{python3_sitearch}/lldb/_lldb.so
1f4c4e
%py_byte_compile %{__python3} %{buildroot}%{python3_sitearch}/lldb
1f4c4e
1f4c4e
# remove bundled six.py
1f4c4e
rm -f %{buildroot}%{python3_sitearch}/six.*
1f4c4e
1f4c4e
%ldconfig_scriptlets
1f4c4e
1f4c4e
%check
1f4c4e
1f4c4e
1f4c4e
%files
1f4c4e
%license LICENSE.TXT
1f4c4e
%{_bindir}/lldb*
1f4c4e
%{_libdir}/liblldb.so.*
1f4c4e
%{_libdir}/liblldbIntelFeatures.so.*
1f4c4e
1f4c4e
%files devel
1f4c4e
%{_includedir}/lldb
1f4c4e
%{_libdir}/*.so
1f4c4e
1f4c4e
%files -n python3-lldb
1f4c4e
%{python3_sitearch}/lldb
1f4c4e
1f4c4e
%changelog
1f4c4e
* Fri Apr 16 2021 Tom Stellard <tstellar@redhat.com> - 12.0.0-1
1f4c4e
- 12.0.0 Release
1f4c4e
1f4c4e
* Thu Apr 08 2021 sguelton@redhat.com - 12.0.0-11.rc5
1f4c4e
- New upstream release candidate
1f4c4e
1f4c4e
* Fri Apr 02 2021 sguelton@redhat.com - 12.0.0-10.rc4
1f4c4e
- New upstream release candidate
1f4c4e
1f4c4e
* Wed Mar 31 2021 Jonathan Wakely <jwakely@redhat.com> - 12.0.0-9.rc3
1f4c4e
- Rebuilt for removed libstdc++ symbols (#1937698)
1f4c4e
1f4c4e
* Thu Mar 11 2021 sguelton@redhat.com - 12.0.0-8.rc3
1f4c4e
- LLVM 12.0.0 rc3
1f4c4e
1f4c4e
* Thu Mar 11 2021 sguelton@redhat.com - 12.0.0-7.rc2
1f4c4e
- rebuilt
1f4c4e
1f4c4e
* Tue Mar 02 2021 sguelton@redhat.com - 12.0.0-6.rc2
1f4c4e
- Update test regexp
1f4c4e
1f4c4e
* Tue Mar 02 2021 sguelton@redhat.com - 12.0.0-5.rc2
1f4c4e
- Improve CI debugging
1f4c4e
1f4c4e
* Tue Mar 02 2021 sguelton@redhat.com - 12.0.0-4.rc2
1f4c4e
- Apply upstream D97721
1f4c4e
1f4c4e
* Mon Mar 01 2021 sguelton@redhat.com - 12.0.0-3.rc2
1f4c4e
- Update CI test
1f4c4e
1f4c4e
* Thu Feb 25 2021 sguelton@redhat.com - 12.0.0-0.2.rc2
1f4c4e
- 12.0.0-rc2 release
1f4c4e
1f4c4e
* Wed Feb 17 2021 sguelton@redhat.com - 12.0.0-0.1.rc1
1f4c4e
- 12.0.0-rc1 release
1f4c4e
1f4c4e
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11.1.0-3.rc2
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
1f4c4e
1f4c4e
* Fri Jan 22 2021 Serge Guelton - 11.1.0-2.rc2
1f4c4e
- llvm 11.1.0-rc2 release
1f4c4e
1f4c4e
* Thu Jan 14 2021 Serge Guelton - 11.1.0-0.1.rc1
1f4c4e
- 11.1.0-rc1 release
1f4c4e
1f4c4e
* Wed Jan 06 2021 Serge Guelton - 11.0.1-3
1f4c4e
- LLVM 11.0.1 final
1f4c4e
1f4c4e
* Tue Dec 22 2020 sguelton@redhat.com - 11.0.1-2.rc2
1f4c4e
- llvm 11.0.1-rc2
1f4c4e
1f4c4e
* Tue Dec 01 2020 sguelton@redhat.com - 11.0.1-1.rc1
1f4c4e
- llvm 11.0.1-rc1
1f4c4e
1f4c4e
* Thu Oct 15 2020 sguelton@redhat.com - 11.0.0-1
1f4c4e
- Fix NVR
1f4c4e
1f4c4e
* Mon Oct 12 2020 sguelton@redhat.com - 11.0.0-0.5
1f4c4e
- llvm 11.0.0 - final release
1f4c4e
1f4c4e
* Thu Oct 08 2020 sguelton@redhat.com - 11.0.0-0.4.rc6
1f4c4e
- 11.0.0-rc6
1f4c4e
1f4c4e
* Fri Oct 02 2020 sguelton@redhat.com - 11.0.0-0.3.rc5
1f4c4e
- 11.0.0-rc5 Release
1f4c4e
1f4c4e
* Sun Sep 27 2020 sguelton@redhat.com - 11.0.0-0.2.rc3
1f4c4e
- Fix NVR
1f4c4e
1f4c4e
* Thu Sep 24 2020 sguelton@redhat.com - 11.0.0-0.1.rc3
1f4c4e
- 11.0.0-rc3 Release
1f4c4e
1f4c4e
* Tue Sep 01 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
1f4c4e
- 11.0.0-rc2 Release
1f4c4e
1f4c4e
* Mon Aug 10 2020 Tom Stellard <tstellar@redhat.com> - 11.0.0-0.1.rc1
1f4c4e
- 11.0.0-rc1 Release
1f4c4e
1f4c4e
* Wed Jul 29 2020 sguelton@redhat.com - 10.0.0-8
1f4c4e
- Make gcc dependency explicit, see https://fedoraproject.org/wiki/Packaging:C_and_C%2B%2B#BuildRequires_and_Requires
1f4c4e
- use %%license macro
1f4c4e
1f4c4e
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-7
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1f4c4e
1f4c4e
* Fri Jul 17 2020 sguelton@redhat.com - 10.0.0-6
1f4c4e
- Use ninja and according macros as build system
1f4c4e
1f4c4e
* Tue Jun 16 2020 sguelton@redhat.com - 10.0.0-5
1f4c4e
- Finer grain specification of python3-lldb deps
1f4c4e
1f4c4e
* Tue Jun 02 2020 sguelton@redhat.com - 10.0.0-4
1f4c4e
- Fix arch-dependent header
1f4c4e
1f4c4e
* Tue Jun 02 2020 sguelton@redhat.com - 10.0.0-3
1f4c4e
- Instruct cmake not to generate RPATH
1f4c4e
1f4c4e
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 10.0.0-2
1f4c4e
- Rebuilt for Python 3.9
1f4c4e
1f4c4e
* Mon Mar 30 2020 sguelton@redhat.com - 10.0.0-1
1f4c4e
- 10.0.0 final
1f4c4e
1f4c4e
* Wed Mar 25 2020 sguelton@redhat.com - 10.0.0-0.6.rc6
1f4c4e
- 10.0.0 rc6
1f4c4e
1f4c4e
* Fri Mar 20 2020 sguelton@redhat.com - 10.0.0-0.5.rc5
1f4c4e
- 10.0.0 rc5
1f4c4e
1f4c4e
* Sun Mar 15 2020 sguelton@redhat.com - 10.0.0-0.4.rc4
1f4c4e
- 10.0.0 rc4
1f4c4e
1f4c4e
* Thu Mar 05 2020 sguelton@redhat.com - 10.0.0-0.3.rc3
1f4c4e
- 10.0.0 rc3
1f4c4e
1f4c4e
* Fri Feb 14 2020 sguelton@redhat.com - 10.0.0-0.2.rc2
1f4c4e
- 10.0.0 rc2
1f4c4e
1f4c4e
* Fri Jan 31 2020 sguelton@redhat.com - 10.0.0-0.1.rc1
1f4c4e
- 10.0.0 rc1
1f4c4e
1f4c4e
* Wed Jan 29 2020 Tom Stellard <tstellar@redhat.com> - 9.0.1-4
1f4c4e
- Link against libclang-cpp.so
1f4c4e
- https://fedoraproject.org/wiki/Changes/Stop-Shipping-Individual-Component-Libraries-In-clang-lib-Package
1f4c4e
1f4c4e
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-3
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
1f4c4e
1f4c4e
* Sat Dec 21 2019 Tom Stellard <tstellar@redhat.com> - 9.0.1-2
1f4c4e
- 9.0.1 Release
1f4c4e
1f4c4e
* Thu Sep 19 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
1f4c4e
- 9.0.0 Release
1f4c4e
1f4c4e
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.1.rc3
1f4c4e
- 9.0.0-rc3 Release
1f4c4e
1f4c4e
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 8.0.0-2.2
1f4c4e
- Rebuilt for Python 3.8
1f4c4e
1f4c4e
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-2.1
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1f4c4e
1f4c4e
* Tue Mar 26 2019 sguelton@redhat.com - 8.0.0-2
1f4c4e
- Only depend on Python3
1f4c4e
1f4c4e
* Wed Mar 20 2019 sguelton@redhat.com - 8.0.0-1
1f4c4e
- 8.0.0 final
1f4c4e
1f4c4e
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.4.rc4
1f4c4e
- 8.0.0 Release candidate 4
1f4c4e
1f4c4e
* Tue Mar 5 2019 sguelton@redhat.com - 8.0.0-0.3.rc3
1f4c4e
- 8.0.0 Release candidate 3
1f4c4e
1f4c4e
* Fri Feb 22 2019 sguelton@redhat.com - 8.0.0-0.2.rc2
1f4c4e
- 8.0.0 Release candidate 2
1f4c4e
1f4c4e
* Mon Feb 11 2019 sguelton@redhat.com - 8.0.0-0.1.rc1
1f4c4e
- 8.0.0 Release candidate 1
1f4c4e
1f4c4e
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-1.1
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1f4c4e
1f4c4e
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-1
1f4c4e
- 7.0.1 Release
1f4c4e
1f4c4e
* Tue Dec 04 2018 sguelton@redhat.com - 7.0.0-2
1f4c4e
- Ensure rpmlint passes on specfile
1f4c4e
1f4c4e
* Tue Sep 25 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
1f4c4e
- 7.0.0 Release
1f4c4e
1f4c4e
* Fri Sep 21 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.5.rc3
1f4c4e
- lldb should depend on python2-lldb
1f4c4e
1f4c4e
* Mon Sep 17 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.4.rc3
1f4c4e
- 7.0.0-rc3 Release
1f4c4e
1f4c4e
* Wed Sep 12 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.3.rc2
1f4c4e
- Enable build on s390x
1f4c4e
1f4c4e
* Fri Aug 31 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.2.rc2
1f4c4e
- 7.0.0-rc2 Release
1f4c4e
1f4c4e
* Tue Aug 14 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc1
1f4c4e
- 7.0.1-rc1 Release
1f4c4e
1f4c4e
* Tue Aug 07 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-3
1f4c4e
- Enable ppc64le arch
1f4c4e
1f4c4e
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1f4c4e
1f4c4e
* Mon May 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
1f4c4e
- 6.0.1 Release
1f4c4e
1f4c4e
* Mon May 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.1.rc1
1f4c4e
- 6.0.1-rc1 Release
1f4c4e
1f4c4e
* Sat May 05 2018 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-4
1f4c4e
- Update Python macros to new packaging standards
1f4c4e
  (See https://fedoraproject.org/wiki/Changes/Avoid_usr_bin_python_in_RPM_Build)
1f4c4e
1f4c4e
* Tue Mar 20 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-3
1f4c4e
- Rebuild against llvm with the rhbz#1558657 fix
1f4c4e
1f4c4e
* Wed Mar 14 2018 Tilmann Scheller <tschelle@redhat.com> - 6.0.0-2
1f4c4e
- Restore LLDB SB API headers, fixes rhbz#1548758
1f4c4e
1f4c4e
* Fri Mar 09 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
1f4c4e
- 6.0.0 Release
1f4c4e
1f4c4e
* Tue Feb 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc2
1f4c4e
- 6.0.0-rc2 release
1f4c4e
1f4c4e
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-0.2.rc1
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1f4c4e
1f4c4e
* Thu Jan 25 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
1f4c4e
- 6.0.1-rc1 Release
1f4c4e
1f4c4e
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
1f4c4e
- 5.0.1 Release
1f4c4e
1f4c4e
* Fri Oct 06 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
1f4c4e
- 5.0.0 Release
1f4c4e
1f4c4e
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.0.1-4
1f4c4e
- Python 2 binary package renamed to python2-lldb
1f4c4e
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
1f4c4e
1f4c4e
* Mon Jul 31 2017 Jan Kratochvil <jan.kratochvil@redhat.com> - 4.0.1-3
1f4c4e
- Backport lldb r303907
1f4c4e
  Resolves rhbz #1356140
1f4c4e
1f4c4e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1f4c4e
1f4c4e
* Mon Jun 26 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
1f4c4e
- 4.0.1 Release
1f4c4e
1f4c4e
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-2
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
1f4c4e
1f4c4e
* Fri Mar 24 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
1f4c4e
- lldb 4.0.0
1f4c4e
1f4c4e
* Tue Mar 21 2017 Tom Stellard <tstellar@redhat.com> - 3.9.1-4
1f4c4e
- Add explicit Requires for llvm-libs and clang-libs
1f4c4e
1f4c4e
* Fri Mar 17 2017 Tom Stellard <tstellar@redhat.org> - 3.9.1-3
1f4c4e
- Adjust python sys.path so lldb can find readline.so
1f4c4e
1f4c4e
* Tue Mar 14 2017 Tom Stellard <tstellar@redhat.com> - 3.9.1-2
1f4c4e
- Fix build with gcc 7
1f4c4e
1f4c4e
* Thu Mar 02 2017 Dave Airlie 
1f4c4e
- lldb 3.9.1
1f4c4e
1f4c4e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.0-4
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1f4c4e
1f4c4e
* Mon Nov 14 2016 Nathaniel McCallum <npmccallum@redhat.com> - 3.9.0-3
1f4c4e
- Disable libedit support until upstream fixes it (#1356140)
1f4c4e
1f4c4e
* Wed Nov  2 2016 Peter Robinson <pbrobinson@fedoraproject.org> 3.9.0-2
1f4c4e
- Set upstream supported architectures in an ExclusiveArch
1f4c4e
1f4c4e
* Wed Oct 26 2016 Dave Airlie <airlied@redhat.com> - 3.9.0-1
1f4c4e
- lldb 3.9.0
1f4c4e
- fixup some issues with MIUtilParse by removing it
1f4c4e
- build with -fno-rtti
1f4c4e
1f4c4e
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.0-2
1f4c4e
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
1f4c4e
1f4c4e
* Thu Mar 10 2016 Dave Airlie <airlied@redhat.com> 3.8.0-1
1f4c4e
- lldb 3.8.0
1f4c4e
1f4c4e
* Thu Mar 03 2016 Dave Airlie <airlied@redhat.com> 3.8.0-0.3
1f4c4e
- lldb 3.8.0 rc3
1f4c4e
1f4c4e
* Wed Feb 24 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.2
1f4c4e
- dynamically link to llvm
1f4c4e
1f4c4e
* Thu Feb 18 2016 Dave Airlie <airlied@redhat.com> - 3.8.0-0.1
1f4c4e
- lldb 3.8.0 rc2
1f4c4e
1f4c4e
* Sun Feb 14 2016 Dave Airlie <airlied@redhat.com> 3.7.1-3
1f4c4e
- rebuild lldb against latest llvm
1f4c4e
1f4c4e
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.1-2
1f4c4e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1f4c4e
1f4c4e
* Tue Oct 06 2015 Jan Vcelak <jvcelak@fedoraproject.org> 3.7.0-100
1f4c4e
- initial version using cmake build system