美文网首页
LLDB 与 Chisel

LLDB 与 Chisel

作者: Liu____ | 来源:发表于2016-07-22 14:11 被阅读150次

    LLDB调试工具 脸书出品 chisel

    LLDB是XCode内置的为我们开发者提供的调试工具,基本介绍和操作
    参考:
    黄仪标 iOS开发技术分享 :
    http://mp.weixin.qq.com/s?__biz=MzIzMzA4NjA5Mw==&mid=403752629&idx=1&sn=d46fc4326821d4d6dbba4b3f0d6cc8b8&scene=4#wechat_redirect
    与调试器共舞 - LLDB 的华尔兹:
    https://objccn.io/issue-19-2/

    一、chisel的安装###

    源码地址: Chisel:https://github.com/facebook/chisel

    Chisel 使用 homebrew 来安装,如果你没有安装homebrew,需要安装brew, 参考:http://brew.sh
    brew安装:

    ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
    

    chisel安装:
    打开终端输入

    1 brew update  
    2 brew install chisel
    

    安装完成按照安装日志上的提示,在~/.lldbinit文件中添加一行,没有则新建。 提示类似如下:

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

    查看:

    ls -a
    
    • (如果没有 就 新建 touch /.lldbinit,注:/.lldbinit为隐藏文件)

    打开文件 open ~/.lldbinit 复制这句过去保存 就ok了(注意:是复制你自己终端的 ):



    然后重启Xcode。

    二、使用 (具体使用可以参考下面几个博客)###

    参考:

    官网:https://github.com/facebook/chisel/blob/master/README.md

    LLdb篇2教你使用faceBook的chisel来提高调试效率:http://www.jianshu.com/p/b2371dd4443b

    Chisel-LLDB命令插件,让调试更Easy:http://blog.csdn.net/meegomeego/article/details/45532703

    相关文章

      网友评论

          本文标题:LLDB 与 Chisel

          本文链接:https://www.haomeiwen.com/subject/ulrijttx.html