並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 8 件 / 8件

新着順 人気順

LLDBの検索結果1 - 8 件 / 8件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

LLDBに関するエントリは8件あります。 lldbPythonプログラミング などが関連タグです。 人気エントリには 『GitHub - pgosar/ChatGDB: Harness the power of ChatGPT inside the GDB or LLDB debugger!』などがあります。
  • GitHub - pgosar/ChatGDB: Harness the power of ChatGPT inside the GDB or LLDB debugger!

    First, make sure you install pip. ChatGDB also requires a python version of 3.3 or above. To install, run the command pip3 install chatgdb. It will create an executable called chatgdb that you will have to use to set your api key. To do that, run the command chatgdb -k <API KEY> You can set the model to use. There are two possible options, gpt-3.5-turbo and gpt-4(defaulting to the former): chatgdb

      GitHub - pgosar/ChatGDB: Harness the power of ChatGPT inside the GDB or LLDB debugger!
    • 本当はこわいLLDB

      iOSDC2020 Day2 16:20〜 https://fortee.jp/iosdc-japan-2020/proposal/62a95cf9-1b1b-401a-8a1c-11c0490aad00 【Special Thanks】 発表資料のレビューとリハに付き合ってくれた ddd503(@dk31486981 )

        本当はこわいLLDB
      • LLDBを活用したデザインチェック

        potatotips #74 (2021/6/23) GitHub: https://github.com/Scior/LLDBVisualDebug

          LLDBを活用したデザインチェック
        • LLDB: Beyond “po” 前半(日本語まとめ�)

          本記事は、WWDC2019のセッションである ‘LLDB: Beyond “po”’ を日本語にまとめたものです。 はじめにLLDBはXcodeのデフォルトデバッガで、変数の閲覧を可能にします。左下のパネルで利用している変数とその型が確認できます。デバッグ中、右下のコンソールパネルからLLDBに直接コマンドを叩くこともできます。 poコマンドLLLDBでもっとも使われるコマンドはおそらくpoでしょう。poは一つの変数を出力するコマンドです。 CustomDebugStringConvertibleを継承させることによって、アウトプットの形式をカスタマイズすることができます。debugDescriptionプロパティを実装すると、アウトプットの一番上のdescriptionが書き換わります。それより下の階層を書き換えたい場合には、CustomReflectableを継承します。 さて、poが

            LLDB: Beyond “po” 前半(日本語まとめ�)
          • LLDB Cheat Sheet

            lldb_cheat_sheet.md LLDB Cheat Sheet A complete gdb to lldb command map. Print out Print object (lldb) po responseObject (lldb) po [responseObject objectForKey@"state"] p - Print primitive type Breakpoints List breakpoints br l br delete - Delete breakpoint (lldb) br delete 1 br e - Enable breakpoint br di - Disable breakpoint b - Add breakpoint (lldb) b MyViewController.m:30 br set - Add symbolic

              LLDB Cheat Sheet
            • guard let self = selfするとLLDBでpo等できない問題が直った (Xcode 11 beta) - Qiita

              Xcode 10までは以下のようなコードを書くと、closure内でselfを再定義するせいでLLDBが思うように変数を認識してくれなくなる。 class SomeClass { private func someFunction(someClosure: ()->Void) { someClosure() } func doTask() { let greeting = "Hi" someFunction { [weak self] in guard let self = self else { return } // ここで po greeting とかしてもちゃんと出力されない // (frame variable greeting だと問題ないけど) print(greeting) //-> "Hi" } } } error: warning: <EXPR>:12:9: warni

                guard let self = selfするとLLDBでpo等できない問題が直った (Xcode 11 beta) - Qiita
              • MSYS2 のインストールと,MINGW64 環境で動く LLVM(Clang, Flang, LLD, LLDB)とGNU ツールチェーン類 (gcc, g++, gfortran, gdb, make, ninja, ccache, svn 等) のインストール(MSYS2 を利用 )(Windows 上)

                Windows での,MSYS2 と GNU ツールチェーン類(gcc など)のインストール手順を説明する. MSYS2 は,ターミナル mintty とシェル bash と各種UNIX風コマンドの詰め合わせ. MSYS2 には,MSYS, MINGW64, UCRT64 などのさまざまな環境がある (環境についての公式の説明は: https://www.msys2.org/docs/environments/). このページでは,MSYS2 のベースと,MINGW64環境の LLVM(Clang, Flang, LLD, LLDB)とGNU ツールチェーン類 (gcc, g++, gfortran, gdb, make, ninja, ccache, svn 等) のインストール を行う. 【目次】 MSYS2 のダウンロードとインストール GNU ツールチェーン類 (gcc, g++,

                • LLDB Homepage — The LLDB Debugger

                  The LLDB Debugger¶ Welcome to the LLDB documentation! LLDB is a next generation, high-performance debugger. It is built as a set of reusable components which highly leverage existing libraries in the larger LLVM Project, such as the Clang expression parser and LLVM disassembler. LLDB is the default debugger in Xcode on macOS and supports debugging C, Objective-C and C++ on the desktop and iOS devi

                  1

                  新着記事