You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
3a193f4b11
(and using the new syntax for printing :-) llvm-svn: 178389
7 lines
239 B
Python
7 lines
239 B
Python
def foo2_function(debugger, args, result, dict):
|
|
print >>result, ("foo2 says " + args)
|
|
return None
|
|
|
|
def __lldb_init_module(debugger, session_dict):
|
|
debugger.HandleCommand("command script add -f foo2.foo2_function foo2cmd")
|
|
return None |