[Lldb-commits] [lldb] r154506 - /lldb/trunk/examples/darwin/heap_find/heap.py

Greg Clayton gclayton at apple.com
Wed Apr 11 10:04:00 PDT 2012


Author: gclayton
Date: Wed Apr 11 12:04:00 2012
New Revision: 154506

URL: http://llvm.org/viewvc/llvm-project?rev=154506&view=rev
Log:
Get rid of absolute path in "process load" command.


Modified:
    lldb/trunk/examples/darwin/heap_find/heap.py

Modified: lldb/trunk/examples/darwin/heap_find/heap.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/examples/darwin/heap_find/heap.py?rev=154506&r1=154505&r2=154506&view=diff
==============================================================================
--- lldb/trunk/examples/darwin/heap_find/heap.py (original)
+++ lldb/trunk/examples/darwin/heap_find/heap.py Wed Apr 11 12:04:00 2012
@@ -122,7 +122,7 @@
 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'
 





More information about the lldb-commits mailing list