diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-08-27 22:35:26 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-08-27 22:35:26 +0000 |
commit | 23fd10cb4ed3d181912f79364d3b197cfbac7254 (patch) | |
tree | c951a5fb8a26ad0c54b22ba3a8852b57c5d672d8 /lldb/scripts/Python/build-swig-Python.sh | |
parent | 1ba644575d3ce979d6218ca2f6765b4227b0ce14 (diff) | |
download | bcm5719-llvm-23fd10cb4ed3d181912f79364d3b197cfbac7254.tar.gz bcm5719-llvm-23fd10cb4ed3d181912f79364d3b197cfbac7254.zip |
o Exposed SBFileSpec to the Python APIs in lldb.py.
o Fixed a crasher when getting it via SBTarget.GetExecutable().
>>> filespec = target.GetExecutable()
Segmentation fault
o And renamed SBFileSpec::GetFileName() to GetFilename() to be consistent with FileSpec::GetFilename().
llvm-svn: 112308
Diffstat (limited to 'lldb/scripts/Python/build-swig-Python.sh')
-rwxr-xr-x | lldb/scripts/Python/build-swig-Python.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/scripts/Python/build-swig-Python.sh b/lldb/scripts/Python/build-swig-Python.sh index de26eccd80e..d04f0eabfa7 100755 --- a/lldb/scripts/Python/build-swig-Python.sh +++ b/lldb/scripts/Python/build-swig-Python.sh @@ -42,6 +42,7 @@ HEADER_FILES="${SRC_ROOT}/include/lldb/lldb-types.h"\ " ${SRC_ROOT}/include/lldb/API/SBDebugger.h"\ " ${SRC_ROOT}/include/lldb/API/SBError.h"\ " ${SRC_ROOT}/include/lldb/API/SBEvent.h"\ +" ${SRC_ROOT}/include/lldb/API/SBFileSpec.h"\ " ${SRC_ROOT}/include/lldb/API/SBFrame.h"\ " ${SRC_ROOT}/include/lldb/API/SBFunction.h"\ " ${SRC_ROOT}/include/lldb/API/SBLineEntry.h"\ |