[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:
Jonas Devlieghere 2022-01-07 15:25:20 -08:00
parent cb992f9158
commit d13da5f0da
2 changed files with 1 additions and 9 deletions

View File

@ -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

View File

@ -1 +0,0 @@
INITIALIZE = True