forked from OSchip/llvm-project
Added some comments to clarify where "init_lldb" comes from.
llvm-svn: 107801
This commit is contained in:
parent
2d4d01d0de
commit
a624358728
|
@ -37,6 +37,8 @@
|
|||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
|
||||
// This function is in the C++ output file generated by SWIG after it is
|
||||
// run on all of the headers in "lldb/API/SB*.h"
|
||||
extern "C" void init_lldb (void);
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -183,6 +185,8 @@ ScriptInterpreterPython::ScriptInterpreterPython (CommandInterpreter &interprete
|
|||
|
||||
m_compiled_module = static_cast<void*>(compiled_module);
|
||||
|
||||
// This function is in the C++ output file generated by SWIG after it is
|
||||
// run on all of the headers in "lldb/API/SB*.h"
|
||||
init_lldb ();
|
||||
|
||||
// Update the path python uses to search for modules to include the current directory.
|
||||
|
|
Loading…
Reference in New Issue