Get rid of absolute path in "process load" command.

llvm-svn: 154506
This commit is contained in:
Greg Clayton 2012-04-11 17:04:00 +00:00
parent 4640c8169f
commit 885294808a
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ if __name__ == '__main__':
def __lldb_init_module (debugger, dict):
# This initializer is being run from LLDB in the embedded command interpreter
# Add any commands contained in this module to LLDB
debugger.HandleCommand('process load /Volumes/work/gclayton/Documents/src/lldb/examples/darwin/heap_find/libheap.dylib')
debugger.HandleCommand('process load libheap.dylib')
debugger.HandleCommand('command script add -f heap.heap_search heap_search')
print '"heap_search" command installed, type "heap_search --help" for detailed help'