Lines Matching full:lldb
5 # SRC_ROOT is the root of the lldb source tree.
6 # TARGET_DIR is where the lldb framework/shared library gets put.
7 # CONFIG_BUILD_DIR is where the build-swig-Python-LLDB.sh shell script
8 # put the lldb.py file it was generated from running SWIG.
45 swig_input_file=${SRC_ROOT}/scripts/lldb.swig
78 HEADER_FILES="${SRC_ROOT}/include/lldb/lldb.h"\
79 " ${SRC_ROOT}/include/lldb/lldb-defines.h"\
80 " ${SRC_ROOT}/include/lldb/lldb-enumerations.h"\
81 " ${SRC_ROOT}/include/lldb/lldb-forward.h"\
82 " ${SRC_ROOT}/include/lldb/lldb-forward-rtti.h"\
83 " ${SRC_ROOT}/include/lldb/lldb-types.h"\
84 " ${SRC_ROOT}/include/lldb/API/SBAddress.h"\
85 " ${SRC_ROOT}/include/lldb/API/SBBlock.h"\
86 " ${SRC_ROOT}/include/lldb/API/SBBreakpoint.h"\
87 " ${SRC_ROOT}/include/lldb/API/SBBreakpointLocation.h"\
88 " ${SRC_ROOT}/include/lldb/API/SBBroadcaster.h"\
89 " ${SRC_ROOT}/include/lldb/API/SBCommandInterpreter.h"\
90 " ${SRC_ROOT}/include/lldb/API/SBCommandReturnObject.h"\
91 " ${SRC_ROOT}/include/lldb/API/SBCommunication.h"\
92 " ${SRC_ROOT}/include/lldb/API/SBCompileUnit.h"\
93 " ${SRC_ROOT}/include/lldb/API/SBData.h"\
94 " ${SRC_ROOT}/include/lldb/API/SBDebugger.h"\
95 " ${SRC_ROOT}/include/lldb/API/SBError.h"\
96 " ${SRC_ROOT}/include/lldb/API/SBEvent.h"\
97 " ${SRC_ROOT}/include/lldb/API/SBExpressionOptions.h"\
98 " ${SRC_ROOT}/include/lldb/API/SBFileSpec.h"\
99 " ${SRC_ROOT}/include/lldb/API/SBFrame.h"\
100 " ${SRC_ROOT}/include/lldb/API/SBFunction.h"\
101 " ${SRC_ROOT}/include/lldb/API/SBHostOS.h"\
102 " ${SRC_ROOT}/include/lldb/API/SBInputReader.h"\
103 " ${SRC_ROOT}/include/lldb/API/SBInstruction.h"\
104 " ${SRC_ROOT}/include/lldb/API/SBInstructionList.h"\
105 " ${SRC_ROOT}/include/lldb/API/SBLineEntry.h"\
106 " ${SRC_ROOT}/include/lldb/API/SBListener.h"\
107 " ${SRC_ROOT}/include/lldb/API/SBModule.h"\
108 " ${SRC_ROOT}/include/lldb/API/SBModuleSpec.h"\
109 " ${SRC_ROOT}/include/lldb/API/SBProcess.h"\
110 " ${SRC_ROOT}/include/lldb/API/SBSourceManager.h"\
111 " ${SRC_ROOT}/include/lldb/API/SBStream.h"\
112 " ${SRC_ROOT}/include/lldb/API/SBStringList.h"\
113 " ${SRC_ROOT}/include/lldb/API/SBSymbol.h"\
114 " ${SRC_ROOT}/include/lldb/API/SBSymbolContext.h"\
115 " ${SRC_ROOT}/include/lldb/API/SBSymbolContextList.h"\
116 " ${SRC_ROOT}/include/lldb/API/SBTarget.h"\
117 " ${SRC_ROOT}/include/lldb/API/SBThread.h"\
118 " ${SRC_ROOT}/include/lldb/API/SBType.h"\
119 " ${SRC_ROOT}/include/lldb/API/SBTypeCategory.h"\
120 " ${SRC_ROOT}/include/lldb/API/SBTypeFilter.h"\
121 " ${SRC_ROOT}/include/lldb/API/SBTypeFormat.h"\
122 " ${SRC_ROOT}/include/lldb/API/SBTypeNameSpecifier.h"\
123 " ${SRC_ROOT}/include/lldb/API/SBTypeSummary.h"\
124 " ${SRC_ROOT}/include/lldb/API/SBTypeSynthetic.h"\
125 " ${SRC_ROOT}/include/lldb/API/SBValue.h"\
126 " ${SRC_ROOT}/include/lldb/API/SBValueList.h"\
127 " ${SRC_ROOT}/include/lldb/API/SBWatchpoint.h"
301 framework_python_dir="${TARGET_DIR}/LLDB.framework/Resources/Python/lldb"
305 framework_python_dir=`/usr/bin/env python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True, False, \"${PYTHON_INSTALL_DIR}\");"`/lldb
307 framework_python_dir=`/usr/bin/env python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True, False);"`/lldb
352 # Implement the iterator protocol and/or eq/ne operators for some lldb objects.
353 # Append global variable to lldb Python module.
354 # And initialize the lldb debugger subsystem.
356 if [ -f "${current_dir}/modify-python-lldb.py" ]
358 python ${current_dir}/modify-python-lldb.py ${CONFIG_BUILD_DIR}