[Lldb-commits] [lldb] r357277 - [Python] Remove readline module
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 29 10:12:08 PDT 2019
Author: jdevlieghere
Date: Fri Mar 29 10:12:08 2019
New Revision: 357277
URL: http://llvm.org/viewvc/llvm-project?rev=357277&view=rev
Log:
[Python] Remove readline module
Todd added this empty readline module to workaround an issue with an old
version of Python on Ubuntu in 2014 (18841). In the meantime, libedit
seems to have fixed the underlying issue, and indeed, I wasn't able to
reproduce this.
Differential revision: https://reviews.llvm.org/D59972
Removed:
lldb/trunk/scripts/Python/modules/
Modified:
lldb/trunk/scripts/CMakeLists.txt
Modified: lldb/trunk/scripts/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/CMakeLists.txt?rev=357277&r1=357276&r2=357277&view=diff
==============================================================================
--- lldb/trunk/scripts/CMakeLists.txt (original)
+++ lldb/trunk/scripts/CMakeLists.txt Fri Mar 29 10:12:08 2019
@@ -52,6 +52,3 @@ if(NOT LLDB_BUILD_FRAMEWORK)
# Install the LLDB python module
install(DIRECTORY ${SWIG_PYTHON_DIR} DESTINATION ${SWIG_INSTALL_DIR})
endif()
-
-# build Python modules
-add_subdirectory(Python/modules)
More information about the lldb-commits
mailing list