如何安装Chisel

Chisel的安装
  • Github地址:https://github.com/facebook/chisel

一. 安装了homebrew环境

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

二.开始安装Chisel

    1. brew update
    1. brew install chisel
      安装完成后最后出现一个安装目录,类似
command script import /usr/local/opt/chisel/libexec/fblldb.py

这时候你只需要~/.lldbinit文件中添加

==> Caveats
Add the following line to ~/.lldbinit to load chisel when Xcode launches:
 command script import /usr/local/opt/chisel/libexec/fblldb.py

记得把上面的script后面的地址替换为你的

注1: 如何找到这个文件(一般为隐藏文件夹,在电脑名称目录下)

  • 如果你想打开整个系统的隐藏文件可以在终端下输入以下命令
defaults write com.apple.finder AppleShowAllFiles -bool true
  • 关闭显示隐藏功能
defaults write com.apple.finder AppleShowAllFiles -bool false

注2:brew其他命令


//使用brew卸载软件
brew uninstall chisel

//  列出已安装的软件
brew list     

// 更新brew     
brew update  

// 显示软件信息 
brew info        

具体使用可参考一下文章
Chisel-LLDB命令插件,让调试更Easy
LLdb篇2教你使用faceBook的chisel来提高调试效率

你可能感兴趣的:(如何安装Chisel)