Compare commits
No commits in common. "c8-stream-rhel8" and "c9-beta" have entirely different histories.
c8-stream-
...
c9-beta
@ -1,28 +0,0 @@
|
|||||||
From c0e0fdd99c372096a4e018d57443f2d842bb510a Mon Sep 17 00:00:00 2001
|
|
||||||
From: Tom Stellard <tstellar@redhat.com>
|
|
||||||
Date: Fri, 28 Apr 2023 15:42:55 -0700
|
|
||||||
Subject: [PATCH] lldb: Disable std vector pretty printer
|
|
||||||
|
|
||||||
---
|
|
||||||
lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp | 5 -----
|
|
||||||
1 file changed, 5 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp b/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
|
|
||||||
index 1b152c16eac2..a2b7aa4672bf 100644
|
|
||||||
--- a/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
|
|
||||||
+++ b/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
|
|
||||||
@@ -1089,11 +1089,6 @@ static void LoadLibStdcppFormatters(lldb::TypeCategoryImplSP cpp_category_sp) {
|
|
||||||
SyntheticChildren::Flags stl_deref_flags = stl_synth_flags;
|
|
||||||
stl_deref_flags.SetFrontEndWantsDereference();
|
|
||||||
|
|
||||||
- cpp_category_sp->AddTypeSynthetic(
|
|
||||||
- "^std::vector<.+>(( )?&)?$", eFormatterMatchRegex,
|
|
||||||
- SyntheticChildrenSP(new ScriptedSyntheticChildren(
|
|
||||||
- stl_synth_flags,
|
|
||||||
- "lldb.formatters.cpp.gnu_libstdcpp.StdVectorSynthProvider")));
|
|
||||||
cpp_category_sp->AddTypeSynthetic(
|
|
||||||
"^std::map<.+> >(( )?&)?$", eFormatterMatchRegex,
|
|
||||||
SyntheticChildrenSP(new ScriptedSyntheticChildren(
|
|
||||||
--
|
|
||||||
2.31.1
|
|
||||||
|
|
358
SPECS/lldb.spec
358
SPECS/lldb.spec
@ -1,39 +1,25 @@
|
|||||||
|
%global toolchain clang
|
||||||
|
|
||||||
# Opt out of https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer
|
# Opt out of https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2158587
|
# https://bugzilla.redhat.com/show_bug.cgi?id=2158587
|
||||||
%undefine _include_frame_pointers
|
%undefine _include_frame_pointers
|
||||||
|
|
||||||
|
%global gts_version 13
|
||||||
%global lldb_version 18.1.8
|
%global lldb_version 18.1.8
|
||||||
#global rc_ver 4
|
#global rc_ver 4
|
||||||
%global lldb_srcdir %{name}-%{lldb_version}%{?rc_ver:rc%{rc_ver}}.src
|
%global lldb_srcdir %{name}-%{lldb_version}%{?rc_ver:rc%{rc_ver}}.src
|
||||||
|
|
||||||
%ifarch ppc64le
|
|
||||||
# Too many threads on some systems causes OOM errors.
|
|
||||||
%global _smp_mflags -j8
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: lldb
|
Name: lldb
|
||||||
Version: %{lldb_version}%{?rc_ver:~rc%{rc_ver}}
|
Version: %{lldb_version}%{?rc_ver:~rc%{rc_ver}}
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Next generation high-performance debugger
|
Summary: Next generation high-performance debugger
|
||||||
|
|
||||||
License: NCSA
|
License: Apache-2.0 WITH LLVM-exception OR NCSA
|
||||||
URL: http://lldb.llvm.org/
|
URL: http://lldb.llvm.org/
|
||||||
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{lldb_version}%{?rc_ver:-rc%{rc_ver}}/%{lldb_srcdir}.tar.xz
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{lldb_version}%{?rc_ver:-rc%{rc_ver}}/%{lldb_srcdir}.tar.xz
|
||||||
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{lldb_version}%{?rc_ver:-rc%{rc_ver}}/%{lldb_srcdir}.tar.xz.sig
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{lldb_version}%{?rc_ver:-rc%{rc_ver}}/%{lldb_srcdir}.tar.xz.sig
|
||||||
Source2: release-keys.asc
|
Source2: release-keys.asc
|
||||||
|
|
||||||
# There is a problem with the debug info generated by the
|
|
||||||
# GCC version we ship in RHEL 8. It somehow makes it very
|
|
||||||
# hard for lldb to inspect std::vector types.
|
|
||||||
# Disable the pretty-printer for now, since otherwise
|
|
||||||
# such vectors look empty to the developer even though
|
|
||||||
# they aren't.
|
|
||||||
# See https://bugzilla.redhat.com/show_bug.cgi?id=2082508
|
|
||||||
Patch002: 0001-lldb-Disable-std-vector-pretty-printer.patch
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
|
|
||||||
BuildRequires: clang
|
BuildRequires: clang
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: ninja-build
|
BuildRequires: ninja-build
|
||||||
@ -50,6 +36,7 @@ BuildRequires: libxml2-devel
|
|||||||
BuildRequires: libedit-devel
|
BuildRequires: libedit-devel
|
||||||
BuildRequires: python3-lit
|
BuildRequires: python3-lit
|
||||||
BuildRequires: multilib-rpm-config
|
BuildRequires: multilib-rpm-config
|
||||||
|
BuildRequires: gcc-toolset-%{gts_version}-gdb
|
||||||
|
|
||||||
Requires: python3-lldb
|
Requires: python3-lldb
|
||||||
|
|
||||||
@ -85,11 +72,7 @@ The package contains the LLDB Python module.
|
|||||||
%autosetup -n %{lldb_srcdir} -p2
|
%autosetup -n %{lldb_srcdir} -p2
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%global _lto_cflags -flto=thin
|
||||||
%undefine __cmake_in_source_build
|
|
||||||
|
|
||||||
CFLAGS="%{optflags} -Wno-error=format-security"
|
|
||||||
CXXFLAGS="%{optflags} -Wno-error=format-security"
|
|
||||||
|
|
||||||
%cmake -GNinja \
|
%cmake -GNinja \
|
||||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||||
@ -100,7 +83,6 @@ CXXFLAGS="%{optflags} -Wno-error=format-security"
|
|||||||
-DLLDB_DISABLE_CURSES:BOOL=OFF \
|
-DLLDB_DISABLE_CURSES:BOOL=OFF \
|
||||||
-DLLDB_DISABLE_LIBEDIT:BOOL=OFF \
|
-DLLDB_DISABLE_LIBEDIT:BOOL=OFF \
|
||||||
-DLLDB_DISABLE_PYTHON:BOOL=OFF \
|
-DLLDB_DISABLE_PYTHON:BOOL=OFF \
|
||||||
-DLLDB_INCLUDE_TESTS=OFF \
|
|
||||||
%if 0%{?__isa_bits} == 64
|
%if 0%{?__isa_bits} == 64
|
||||||
-DLLVM_LIBDIR_SUFFIX=64 \
|
-DLLVM_LIBDIR_SUFFIX=64 \
|
||||||
%else
|
%else
|
||||||
@ -119,6 +101,11 @@ CXXFLAGS="%{optflags} -Wno-error=format-security"
|
|||||||
%cmake_build
|
%cmake_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
|
||||||
|
# Use newer GDB for gdb-add-index step, as system GDB can't handle the LTO debuginfo.
|
||||||
|
source scl_source enable gcc-toolset-%{gts_version}
|
||||||
|
export GDB=`which gdb`
|
||||||
|
|
||||||
%cmake_install
|
%cmake_install
|
||||||
|
|
||||||
%multilib_fix_c_header --file %{_includedir}/lldb/Host/Config.h
|
%multilib_fix_c_header --file %{_includedir}/lldb/Host/Config.h
|
||||||
@ -155,157 +142,296 @@ rm -f %{buildroot}%{python3_sitearch}/six.*
|
|||||||
%{python3_sitearch}/lldb
|
%{python3_sitearch}/lldb
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jul 09 2024 Tom Stellard <tstellar@redhat.com> - 18.1.8-1
|
* Wed Jul 17 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.8-1
|
||||||
- 18.1.8 Release
|
- Update to 18.1.8
|
||||||
|
|
||||||
* Mon Mar 25 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.2-2
|
* Wed Jun 05 2024 Konrad Kleine <kkleine@redhat.com> - 18.1.6-3
|
||||||
- Move liblldb symlink to the main package. Fix rhbz#2260611.
|
- Rebuild against clang-18.1.6-2 which defaults to DWARF4
|
||||||
|
|
||||||
* Fri Mar 22 2024 Tom Stellard <tstellar@redhat.com> - 18.1.2-1
|
* Mon Jun 03 2024 Konrad Kleine <kkkleine@redhat.com> - 18.1.6-1
|
||||||
- 18.1.2 Release
|
- Update to 18.1.6
|
||||||
|
|
||||||
* Tue Mar 12 2024 Tom Stellard <tstellar@redhat.com> - 18.1.1-1
|
* Mon Dec 11 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.6-1
|
||||||
- 18.1.1 Release
|
- Update to 17.0.6
|
||||||
|
|
||||||
* Wed Feb 28 2024 Tom Stellard <tstellar@redhat.com> - 18.1.0~rc4-1
|
* Wed Oct 04 2023 Timm Bäder <tbaeder@redhat.com> - 17.0.1-1
|
||||||
- 18.1.0-rc4 Release
|
- Update to 17.0.1
|
||||||
|
|
||||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-3
|
* Wed Jul 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.6-1
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
- Update to LLVM 16.0.6
|
||||||
|
|
||||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-2
|
* Wed Jun 28 2023 Nikita Popov <npopov@redhat.com> - 16.0.1-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
- Use gcc-toolset-13-gdb for gdb-add-index
|
||||||
|
|
||||||
* Wed Nov 29 2023 Nikita Popov <npopov@redhat.com> - 17.0.6-1
|
* Tue Jun 06 2023 Nikita Popov <npopov@redhat.com> - 16.0.1-3
|
||||||
- Update to LLVM 17.0.6
|
- Disable LTO on i686 due to OOM
|
||||||
|
|
||||||
* Wed Oct 04 2023 Nikita Popov <npopov@redhat.com> - 17.0.2-1
|
* Fri May 05 2023 Nikita Popov <npopov@redhat.com> - 16.0.1-2
|
||||||
- Update to LLVM 17.0.2
|
- Build with LTO
|
||||||
|
|
||||||
* Fri Jun 23 2023 Tom Stellard <tstellar@redhat.com> - 16.0.6-1
|
* Tue Apr 18 2023 Nikita Popov <npopov@redhat.com> - 16.0.1-1
|
||||||
- 16.0.6 Release
|
- Update to LLVM 16.0.1
|
||||||
|
|
||||||
* Fri Apr 28 2023 Tom Stellard <tstellar@redhat.com> - 16.0.0-1
|
* Tue Jan 17 2023 Konrad Kleine <kkleine@redhat.com> - 15.0.7-1
|
||||||
- 16.0.0 Release
|
- Update to 15.0.7
|
||||||
|
|
||||||
* Thu Jan 19 2023 Tom Stellard <tstellar@redhat.com> - 15.0.7-1
|
* Sat Dec 10 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.6-1
|
||||||
- Update to LLVM 15.0.7
|
- Update to 15.0.6
|
||||||
|
|
||||||
* Tue Sep 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-1
|
* Thu Oct 20 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.1-2
|
||||||
- Update to LLVM 15.0.0
|
- Bring back patch for rhbz#2052982
|
||||||
|
|
||||||
* Tue Jun 28 2022 Tom Stellard <tstellar@redhat.com> - 14.0.6-1
|
* Mon Oct 17 2022 Konrad Kleine <kkleine@redhat.com> - 15.0.1-1
|
||||||
|
- Update to 15.0.1
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.6-1
|
||||||
- 14.0.6 Release
|
- 14.0.6 Release
|
||||||
|
|
||||||
* Wed Jun 08 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-2
|
* Wed Jun 22 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.5-1
|
||||||
- Disable libstdc++ std::vector prettyprinter
|
- 14.0.5 Release
|
||||||
|
|
||||||
* Thu Apr 07 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
|
* Tue Apr 26 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
|
||||||
- Update to 14.0.0
|
- 14.0.0 Release
|
||||||
|
|
||||||
|
* Wed Mar 30 2022 Timm Bäder <tbaeder@redhat.com> - 13.0.1-2
|
||||||
|
- Work around a lldb-server crash on ppc64le
|
||||||
|
|
||||||
* Thu Feb 03 2022 Tom Stellard <tstellar@redhat.com> - 13.0.1-1
|
* Thu Feb 03 2022 Tom Stellard <tstellar@redhat.com> - 13.0.1-1
|
||||||
- 13.0.1 Release
|
- 13.0.1 Release
|
||||||
|
|
||||||
* Fri Oct 15 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
* Tue Oct 12 2021 Timm Bäder <tbaeder@redhat.com> - 13.0.0-1
|
||||||
- 13.0.0 Release
|
- Release 13.0.0
|
||||||
|
|
||||||
* Fri Jul 16 2021 sguelton@redhat.com - 12.0.1-1
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 12.0.1-2
|
||||||
- 12.0.1
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
* Thu May 6 2021 sguelton@redhat.com - 12.0.0-1
|
* Wed Jul 14 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1-1
|
||||||
- 12.0.0
|
- 12.0.1 Release
|
||||||
|
|
||||||
* Thu Oct 29 2020 sguelton@redhat.com - 11.0.0-1
|
* Thu May 13 2021 Tom Stellard <tstellar@redhat.com> 12.0.0-1
|
||||||
- 11.0.0 final
|
- 12.0.0 Release
|
||||||
|
|
||||||
* Fri Sep 18 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
|
* Thu Apr 29 2021 sguelton@redhat.com - 11.1.0-7.rc2
|
||||||
|
- Backport dwarf-5 compatibility patch
|
||||||
|
|
||||||
|
* Wed Apr 28 2021 sguelton@redhat.com - 11.1.0-6.rc2
|
||||||
|
- rebuilt with NVR fixup
|
||||||
|
|
||||||
|
* Wed Apr 28 2021 sguelton@redhat.com - 11.1.0-0.5.rc2
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 11.1.0-0.4.rc2
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Feb 17 2021 Serge Guelton - 11.1.0-0.3.rc2
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Fri Jan 22 2021 Serge Guelton - 11.1.0-0.2.rc2
|
||||||
|
- llvm 11.1.0-rc2 release
|
||||||
|
|
||||||
|
* Thu Jan 14 2021 Serge Guelton - 11.1.0-0.1.rc1
|
||||||
|
- 11.1.0-rc1 release
|
||||||
|
|
||||||
|
* Wed Jan 06 2021 Serge Guelton - 11.0.1-3
|
||||||
|
- LLVM 11.0.1 final
|
||||||
|
|
||||||
|
* Tue Dec 22 2020 sguelton@redhat.com - 11.0.1-2.rc2
|
||||||
|
- llvm 11.0.1-rc2
|
||||||
|
|
||||||
|
* Tue Dec 01 2020 sguelton@redhat.com - 11.0.1-1.rc1
|
||||||
|
- llvm 11.0.1-rc1
|
||||||
|
|
||||||
|
* Thu Oct 15 2020 sguelton@redhat.com - 11.0.0-1
|
||||||
|
- Fix NVR
|
||||||
|
|
||||||
|
* Mon Oct 12 2020 sguelton@redhat.com - 11.0.0-0.5
|
||||||
|
- llvm 11.0.0 - final release
|
||||||
|
|
||||||
|
* Thu Oct 08 2020 sguelton@redhat.com - 11.0.0-0.4.rc6
|
||||||
|
- 11.0.0-rc6
|
||||||
|
|
||||||
|
* Fri Oct 02 2020 sguelton@redhat.com - 11.0.0-0.3.rc5
|
||||||
|
- 11.0.0-rc5 Release
|
||||||
|
|
||||||
|
* Sun Sep 27 2020 sguelton@redhat.com - 11.0.0-0.2.rc3
|
||||||
|
- Fix NVR
|
||||||
|
|
||||||
|
* Thu Sep 24 2020 sguelton@redhat.com - 11.0.0-0.1.rc3
|
||||||
|
- 11.0.0-rc3 Release
|
||||||
|
|
||||||
|
* Tue Sep 01 2020 sguelton@redhat.com - 11.0.0-0.1.rc2
|
||||||
- 11.0.0-rc2 Release
|
- 11.0.0-rc2 Release
|
||||||
|
|
||||||
* Fri Jul 24 2020 sguelton@redhat.com - 10.0.1-1
|
* Mon Aug 10 2020 Tom Stellard <tstellar@redhat.com> - 11.0.0-0.1.rc1
|
||||||
- 10.0.1
|
- 11.0.0-rc1 Release
|
||||||
|
|
||||||
* Mon Jun 15 2020 sguelton@redhat.com - 10.0.0-2
|
* Wed Jul 29 2020 sguelton@redhat.com - 10.0.0-8
|
||||||
- Fix multilib integration, see rhbz#1841073
|
- Make gcc dependency explicit, see https://fedoraproject.org/wiki/Packaging:C_and_C%2B%2B#BuildRequires_and_Requires
|
||||||
|
- use %%license macro
|
||||||
|
|
||||||
* Thu Apr 9 2020 sguelton@redhat.com - 10.0.0-1
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 17 2020 sguelton@redhat.com - 10.0.0-6
|
||||||
|
- Use ninja and according macros as build system
|
||||||
|
|
||||||
|
* Tue Jun 16 2020 sguelton@redhat.com - 10.0.0-5
|
||||||
|
- Finer grain specification of python3-lldb deps
|
||||||
|
|
||||||
|
* Tue Jun 02 2020 sguelton@redhat.com - 10.0.0-4
|
||||||
|
- Fix arch-dependent header
|
||||||
|
|
||||||
|
* Tue Jun 02 2020 sguelton@redhat.com - 10.0.0-3
|
||||||
|
- Instruct cmake not to generate RPATH
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 10.0.0-2
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Mon Mar 30 2020 sguelton@redhat.com - 10.0.0-1
|
||||||
- 10.0.0 final
|
- 10.0.0 final
|
||||||
|
|
||||||
* Sat Dec 21 2019 Tom Stellard <tstellar@redhat.com> - 9.0.1-1
|
* Wed Mar 25 2020 sguelton@redhat.com - 10.0.0-0.6.rc6
|
||||||
|
- 10.0.0 rc6
|
||||||
|
|
||||||
|
* Fri Mar 20 2020 sguelton@redhat.com - 10.0.0-0.5.rc5
|
||||||
|
- 10.0.0 rc5
|
||||||
|
|
||||||
|
* Sun Mar 15 2020 sguelton@redhat.com - 10.0.0-0.4.rc4
|
||||||
|
- 10.0.0 rc4
|
||||||
|
|
||||||
|
* Thu Mar 05 2020 sguelton@redhat.com - 10.0.0-0.3.rc3
|
||||||
|
- 10.0.0 rc3
|
||||||
|
|
||||||
|
* Fri Feb 14 2020 sguelton@redhat.com - 10.0.0-0.2.rc2
|
||||||
|
- 10.0.0 rc2
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 sguelton@redhat.com - 10.0.0-0.1.rc1
|
||||||
|
- 10.0.0 rc1
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Tom Stellard <tstellar@redhat.com> - 9.0.1-4
|
||||||
|
- Link against libclang-cpp.so
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Stop-Shipping-Individual-Component-Libraries-In-clang-lib-Package
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Dec 21 2019 Tom Stellard <tstellar@redhat.com> - 9.0.1-2
|
||||||
- 9.0.1 Release
|
- 9.0.1 Release
|
||||||
|
|
||||||
* Fri Oct 04 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-2
|
* Thu Sep 19 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
|
||||||
- Disable readline module to work-around segafult
|
|
||||||
|
|
||||||
* Fri Sep 27 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-1
|
|
||||||
- 9.0.0 Release
|
- 9.0.0 Release
|
||||||
|
|
||||||
* Thu Aug 1 2019 sguelton@redhat.com - 8.0.1-1
|
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 9.0.0-0.1.rc3
|
||||||
- 8.0.1 release
|
- 9.0.0-rc3 Release
|
||||||
|
|
||||||
* Thu Jun 13 2019 sguelton@redhat.com - 8.0.1-0.1.rc2
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 8.0.0-2.2
|
||||||
- 8.0.1rc2 Release
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
* Tue Apr 16 2019 sguelton@redhat.com - 8.0.0-1
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-2.1
|
||||||
- 8.0.0 Release
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
* Mon Dec 17 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-2
|
* Tue Mar 26 2019 sguelton@redhat.com - 8.0.0-2
|
||||||
- Fix multilib conflict
|
- Only depend on Python3
|
||||||
|
|
||||||
* Fri Dec 14 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-1
|
* Wed Mar 20 2019 sguelton@redhat.com - 8.0.0-1
|
||||||
|
- 8.0.0 final
|
||||||
|
|
||||||
|
* Tue Mar 12 2019 sguelton@redhat.com - 8.0.0-0.4.rc4
|
||||||
|
- 8.0.0 Release candidate 4
|
||||||
|
|
||||||
|
* Tue Mar 5 2019 sguelton@redhat.com - 8.0.0-0.3.rc3
|
||||||
|
- 8.0.0 Release candidate 3
|
||||||
|
|
||||||
|
* Fri Feb 22 2019 sguelton@redhat.com - 8.0.0-0.2.rc2
|
||||||
|
- 8.0.0 Release candidate 2
|
||||||
|
|
||||||
|
* Mon Feb 11 2019 sguelton@redhat.com - 8.0.0-0.1.rc1
|
||||||
|
- 8.0.0 Release candidate 1
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.1-1.1
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-1
|
||||||
- 7.0.1 Release
|
- 7.0.1 Release
|
||||||
|
|
||||||
* Mon Dec 10 2018 Tom Stellard <tstellar@redhat.com> - 7.0.1-0.1.rc3
|
* Tue Dec 04 2018 sguelton@redhat.com - 7.0.0-2
|
||||||
- 7.0.1-rc3 Release
|
- Ensure rpmlint passes on specfile
|
||||||
|
|
||||||
* Thu Dec 06 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-7
|
* Tue Sep 25 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-1
|
||||||
- Re-enable python module for real
|
- 7.0.0 Release
|
||||||
|
|
||||||
* Wed Oct 03 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-6
|
* Fri Sep 21 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.5.rc3
|
||||||
- Re-enable python module and fix build with python3
|
- lldb should depend on python2-lldb
|
||||||
|
|
||||||
* Wed Oct 03 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-5
|
* Mon Sep 17 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.4.rc3
|
||||||
- Disable python module
|
- 7.0.0-rc3 Release
|
||||||
|
|
||||||
* Mon Oct 01 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-4
|
* Wed Sep 12 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.3.rc2
|
||||||
- Drop scl macros
|
- Enable build on s390x
|
||||||
|
|
||||||
* Tue Aug 28 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-3
|
* Fri Aug 31 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.2.rc2
|
||||||
- Re-enable python module
|
- 7.0.0-rc2 Release
|
||||||
|
|
||||||
* Tue Aug 07 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-2
|
* Tue Aug 14 2018 Tom Stellard <tstellar@redhat.com> - 7.0.0-0.1.rc1
|
||||||
- Install ld.so.conf file in the root filesystem
|
- 7.0.1-rc1 Release
|
||||||
|
|
||||||
* Wed Jul 11 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
|
* Tue Aug 07 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-3
|
||||||
|
- Enable ppc64le arch
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-1
|
||||||
- 6.0.1 Release
|
- 6.0.1 Release
|
||||||
|
|
||||||
* Thu Jan 25 2018 Tom Stellard <tstellar@redhat.com> - 5.0.1-3
|
* Mon May 21 2018 Tom Stellard <tstellar@redhat.com> - 6.0.1-0.1.rc1
|
||||||
- Drop explicit dependencies for llvm-libs and clang-libs
|
- 6.0.1-rc1 Release
|
||||||
|
|
||||||
* Tue Jan 16 2018 Tom Stellard <tstellar@redhat.com> - 5.0.1-2
|
* Sat May 05 2018 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-4
|
||||||
- Rebuid for i686
|
- Update Python macros to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/Changes/Avoid_usr_bin_python_in_RPM_Build)
|
||||||
|
|
||||||
* Thu Jan 11 2018 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
* Tue Mar 20 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-3
|
||||||
|
- Rebuild against llvm with the rhbz#1558657 fix
|
||||||
|
|
||||||
|
* Wed Mar 14 2018 Tilmann Scheller <tschelle@redhat.com> - 6.0.0-2
|
||||||
|
- Restore LLDB SB API headers, fixes rhbz#1548758
|
||||||
|
|
||||||
|
* Fri Mar 09 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-1
|
||||||
|
- 6.0.0 Release
|
||||||
|
|
||||||
|
* Tue Feb 13 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.3.rc2
|
||||||
|
- 6.0.0-rc2 release
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-0.2.rc1
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 25 2018 Tom Stellard <tstellar@redhat.com> - 6.0.0-0.1.rc1
|
||||||
|
- 6.0.1-rc1 Release
|
||||||
|
|
||||||
|
* Thu Dec 21 2017 Tom Stellard <tstellar@redhat.com> - 5.0.1-1
|
||||||
- 5.0.1 Release
|
- 5.0.1 Release
|
||||||
|
|
||||||
* Wed Aug 16 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-4
|
* Fri Oct 06 2017 Tom Stellard <tstellar@redhat.com> - 5.0.0-1
|
||||||
- Fix crash when loading Fedora debuginfo
|
- 5.0.0 Release
|
||||||
Resloves: #1479529
|
|
||||||
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.0.1-4
|
||||||
|
- Python 2 binary package renamed to python2-lldb
|
||||||
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
||||||
|
|
||||||
* Mon Jul 31 2017 Jan Kratochvil <jan.kratochvil@redhat.com> - 4.0.1-3
|
* Mon Jul 31 2017 Jan Kratochvil <jan.kratochvil@redhat.com> - 4.0.1-3
|
||||||
- Backport lldb r303907
|
- Backport lldb r303907
|
||||||
Resolves: #1356140
|
Resolves rhbz #1356140
|
||||||
|
|
||||||
* Thu Jun 22 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-2
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
|
||||||
- Fix requires for python-lldb
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Jun 21 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
|
* Mon Jun 26 2017 Tom Stellard <tstellar@redhat.com> - 4.0.1-1
|
||||||
- Build for llvm-toolset-7 rename
|
- 4.0.1 Release
|
||||||
|
|
||||||
* Wed Jun 07 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-3
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-2
|
||||||
- Build for llvm-toolset-7 rename
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
||||||
|
|
||||||
* Thu May 18 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-2
|
|
||||||
- Fix Requires
|
|
||||||
|
|
||||||
* Fri Mar 24 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
|
* Fri Mar 24 2017 Tom Stellard <tstellar@redhat.com> - 4.0.0-1
|
||||||
- lldb 4.0.0
|
- lldb 4.0.0
|
||||||
|
Loading…
Reference in New Issue
Block a user