Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active August 6, 2016 08:25
Show Gist options
  • Save KentarouKanno/c0c0cb1fb37da0c0283d84a851fc72b7 to your computer and use it in GitHub Desktop.
Save KentarouKanno/c0c0cb1fb37da0c0283d84a851fc72b7 to your computer and use it in GitHub Desktop.
LLDB Debug Command

LLDB Debug Command

Xcode5でLLDBデバッガコマンドを使ってみる
GDB and LLDB Command Examples
Xcode 7.2 の LLDB で Swiftのデバッグをするコツ

|省略形| 内容| 正式| | --------------- | --------------- | --------------- |:---------------:| |h| ヘルプの表示| help| |s| ステップイン| thread step-in| |c| 続きを実行(次のbreakPointまで)| process continue| |po|式の評価(poはオブジェクト、pは基本型も可)| expression -o --| |br l| breakPointを一覧表示| breakpoint list| |bt| 現スレッドのバックトレース情報を表示| thread backtrace| |b| objc_msgSend objc_msgSend関数にシンボリックブレークポイントを設定| -|

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment