[Lldb-commits] [PATCH] D77661: [lldb/Python] Add lldbconfig Python module to make the lldb module configurable.
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 7 14:10:46 PDT 2020
JDevlieghere updated this revision to Diff 255792.
JDevlieghere marked 2 inline comments as done.
JDevlieghere added a comment.
Address code review feedback
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77661/new/
https://reviews.llvm.org/D77661
Files:
lldb/bindings/python.swig
lldb/packages/Python/lldbconfig/__init__.py
lldb/packages/Python/lldbsuite/test/dotest.py
Index: lldb/packages/Python/lldbsuite/test/dotest.py
===================================================================
--- lldb/packages/Python/lldbsuite/test/dotest.py
+++ lldb/packages/Python/lldbsuite/test/dotest.py
@@ -954,7 +954,9 @@
setupSysPath()
+ import lldbconfig
import lldb
+
# Use host platform by default.
lldb.selected_platform = lldb.SBPlatform.GetHostPlatform()
Index: lldb/packages/Python/lldbconfig/__init__.py
===================================================================
--- /dev/null
+++ lldb/packages/Python/lldbconfig/__init__.py
@@ -0,0 +1 @@
+_initialize = True
Index: lldb/bindings/python.swig
===================================================================
--- lldb/bindings/python.swig
+++ lldb/bindings/python.swig
@@ -128,8 +128,15 @@
%include "./python/python-wrapper.swig"
%pythoncode%{
+_initialize = True
+try:
+ import lldbconfig
+ _initialize = lldbconfig.INITIALIZE
+except ImportError:
+ pass
debugger_unique_id = 0
-SBDebugger.Initialize()
+if _initialize:
+ SBDebugger.Initialize()
debugger = None
target = None
process = None
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77661.255792.patch
Type: text/x-patch
Size: 1125 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200407/ec664552/attachment-0001.bin>
More information about the lldb-commits
mailing list