[LLDB] Applying clang-tidy modernize-use-override over LLDBApplied clang-tidy modernize-use-override over LLDB and added it to the LLDB .clang-tidy config.Differential Revision: https://reviews.l
[LLDB] Applying clang-tidy modernize-use-override over LLDBApplied clang-tidy modernize-use-override over LLDB and added it to the LLDB .clang-tidy config.Differential Revision: https://reviews.llvm.org/D123340
show more ...
[lldb] Handle missing SBStructuredData copy assignment casesFix cases that can crash `SBStructuredData::operator=`.This happened in a case where `rhs` had a null `SBStructuredDataImpl`.Differen
[lldb] Handle missing SBStructuredData copy assignment casesFix cases that can crash `SBStructuredData::operator=`.This happened in a case where `rhs` had a null `SBStructuredDataImpl`.Differential Revision: https://reviews.llvm.org/D101585
[lldb] Get rid of helper CMake variables for PythonThis patch is a big sed to rename the following variables: s/PYTHON_LIBRARIES/Python3_LIBRARIES/g s/PYTHON_INCLUDE_DIRS/Python3_INCLUDE_DIRS/
[lldb] Get rid of helper CMake variables for PythonThis patch is a big sed to rename the following variables: s/PYTHON_LIBRARIES/Python3_LIBRARIES/g s/PYTHON_INCLUDE_DIRS/Python3_INCLUDE_DIRS/g s/PYTHON_EXECUTABLE/Python3_EXECUTABLE/g s/PYTHON_RPATH/Python3_RPATH/gI've also renamed the CMake module to better express its purpose and forconsistency with FindLuaAndSwig.Differential revision: https://reviews.llvm.org/D85976
[lldb/CMake] Set the PYTHON_RPATH for the unit testsThe API and Python script interpreter unit tests also link againstPython and therefore need to set the RPATH when applicable.
[lldb] Fix a typo in a test nameSummary:Removing the Test prefix from the file name and its usages. The standard is using only Test as a suffix.This was correctly pointed out in https://reviews.l
[lldb] Fix a typo in a test nameSummary:Removing the Test prefix from the file name and its usages. The standard is using only Test as a suffix.This was correctly pointed out in https://reviews.llvm.org/D77444.Reviewers: labath, clayborgSubscribers: mgorny, lldb-commitsTags: #lldbDifferential Revision: https://reviews.llvm.org/D77878
[commands] Support autorepeat in SBCommandsSummary:This adds support for commands created through the API to support autorepeat.This covers the case of single word and multiword commands.Compre
[commands] Support autorepeat in SBCommandsSummary:This adds support for commands created through the API to support autorepeat.This covers the case of single word and multiword commands.Comprehensive tests are included as well.Reviewers: labath, clayborgSubscribers: lldb-commitsTags: #lldbDifferential Revision: https://reviews.llvm.org/D77444