[Lldb-commits] [PATCH] D119155: [lldb] Print message after loading 'crashlog' command
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 7 10:37:21 PST 2022
kastiglione updated this revision to Diff 406523.
kastiglione added a comment.
Update createPythonInit.py
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119155/new/
https://reviews.llvm.org/D119155
Files:
lldb/bindings/python/createPythonInit.py
lldb/examples/python/crashlog.py
Index: lldb/examples/python/crashlog.py
===================================================================
--- lldb/examples/python/crashlog.py
+++ lldb/examples/python/crashlog.py
@@ -1247,3 +1247,5 @@
'command script add -c lldb.macosx.crashlog.Symbolicate crashlog')
debugger.HandleCommand(
'command script add -f lldb.macosx.crashlog.save_crashlog save_crashlog')
+ print('"crashlog" and "save_crashlog" commands have been installed, use '
+ 'the --help" options on these commands for detailed help.')
Index: lldb/bindings/python/createPythonInit.py
===================================================================
--- lldb/bindings/python/createPythonInit.py
+++ lldb/bindings/python/createPythonInit.py
@@ -10,6 +10,14 @@
script = """__all__ = [{import_names}]
for x in __all__:
__import__('lldb.{pkg_name}.' + x)
+
+def __lldb_init_module(debugger, internal_dict):
+ import lldb
+ for x in __all__:
+ submodule = getattr(lldb.{pkg_name}, x)
+ lldb_init = getattr(submodule, '__lldb_init_module', None)
+ if lldb_init:
+ lldb_init(debugger, internal_dict)
""".format(import_names=importNames, pkg_name=pkgRelDir.replace("/", "."))
pkgIniFile = os.path.normpath(os.path.join(pkgRelDir, "__init__.py"))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119155.406523.patch
Type: text/x-patch
Size: 1271 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220207/91bf6c26/attachment.bin>
More information about the lldb-commits
mailing list