LLDB调试增强工具Chisel的安装

参考Chisel官方:https://github.com/facebook/chisel

需要安装homebrew环境的支持

brew update
brew install chisel

(其实第一个命令brew update可以不用执行,直接install就可以,我是在update命令后无任何反应的情况下,直接install的)

执行完之后,会出现下面的结果:

==> Downloading https://github.com/facebook/chisel/archive/1.1.0.tar.gz
######################################################################## 100.0%
==> Caveats
Add the following line to ~/.lldbinit to load chisel when Xcode launches:
  command script import /usr/local/opt/chisel/libexec/fblldb.py
==> Summary
  /usr/local/Cellar/chisel/1.1.0: 18 files, 112K, built in 7 seconds

可以看到,需要在~/ .lldbinit 文件中添加一行命令。

如果本地没有该文件,需要先创建该文件:

touch ~/.lldbinit

然后,将命令command script import /usr/local/opt/chisel/libexec/fblldb.py添加到~/ .lldbinit中。


最后,重启xcode就可以使用了,具体命令可以使用help命令查看。

你可能感兴趣的:(ios开发,lldb,UI调试)