forked from OSchip/llvm-project
parent
31e4be06c4
commit
f1c95f8bcb
|
@ -173,7 +173,7 @@ fi
|
||||||
|
|
||||||
$SWIG -c++ -shadow -python -I"/usr/include" -I"${SRC_ROOT}/include" -I./. -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}"
|
$SWIG -c++ -shadow -python -I"/usr/include" -I"${SRC_ROOT}/include" -I./. -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}"
|
||||||
|
|
||||||
# Implement the iterator protocol for some lldb objects.
|
# Implement the iterator protocol and/or eq/ne operators for some lldb objects.
|
||||||
# Append global variable to lldb Python module.
|
# Append global variable to lldb Python module.
|
||||||
# And initialize the lldb debugger subsystem.
|
# And initialize the lldb debugger subsystem.
|
||||||
current_dir=`pwd`
|
current_dir=`pwd`
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
# modify-lldb-python.py
|
# modify-lldb-python.py
|
||||||
#
|
#
|
||||||
# This script modifies the lldb module (which was automatically generated via
|
# This script modifies the lldb module (which was automatically generated via
|
||||||
# running swig) to support iteration for certain lldb objects, adds a global
|
# running swig) to support iteration and/or equality operations for certain lldb
|
||||||
# variable 'debugger_unique_id' and initializes it to 0.
|
# objects, adds a global variable 'debugger_unique_id' and initializes it to 0.
|
||||||
#
|
#
|
||||||
# It also calls SBDebugger.Initialize() to initialize the lldb debugger
|
# It also calls SBDebugger.Initialize() to initialize the lldb debugger
|
||||||
# subsystem.
|
# subsystem.
|
||||||
|
|
Loading…
Reference in New Issue