Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法重新加载 .lldbinit 文件,而不重建应用程序?类似于使用 gdb 可以执行的操作,如下所示:
source ~/.gdbinit
使用command source.
command source
(lldb) command source ~/.lldbinit
如果您正在加载 Python 文件,
(lldb) command script import ~/lldb/bbt.py
尽管请注意,您无法重新导入已在 lldb 调试会话中导入的函数;优化 python 脚本时,您需要退出并重新启动调试器以尝试新版本。