forked from OSchip/llvm-project
[lldb] Remove lldbconfig module
The lldbconfig module was necessary to run the LLDB test suite against a reproducer. Since this functionality has been removed, the module is no longer necessary.
This commit is contained in:
parent
cb992f9158
commit
d13da5f0da
|
@ -133,15 +133,8 @@ using namespace lldb;
|
|||
%include "python-wrapper.swig"
|
||||
|
||||
%pythoncode%{
|
||||
_initialize = True
|
||||
try:
|
||||
import lldbconfig
|
||||
_initialize = lldbconfig.INITIALIZE
|
||||
except ImportError:
|
||||
pass
|
||||
debugger_unique_id = 0
|
||||
if _initialize:
|
||||
SBDebugger.Initialize()
|
||||
SBDebugger.Initialize()
|
||||
debugger = None
|
||||
target = None
|
||||
process = None
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
INITIALIZE = True
|
Loading…
Reference in New Issue