Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 490 Bytes

lldb_plugin_universal_installation.md

File metadata and controls

11 lines (8 loc) · 490 Bytes

LLDB 插件通用安装方式

  1. 拷贝 LLDB 插件到本地。若是 Git 项目,则 git clone 到本地指定目录,若可以 brew 安装,那就更省事了。
  2. 获取 LLDB 启动的 *.py 文件路径,一般在项目文档里有叙述。
  3. 编辑或创建 ~/.lldbinit,加入以下行:
command script import py文件路径

配置完成后想要生效,可以重启 Xcode,或则 LLDB 中键入:command source ~/.lldbinit,即可马上载入插件。