Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GDB TUI の場合、ブレークポイントを使用してジャンプせずにブラウズ用に任意のソース ファイルをロードできますか?
ありがとう。
任意のファイルをリストすることはできませんが、それがプログラムの一部である場合は、次のようなものを試すことができます
list sourcefile.c:1
最後の :1 は、行番号 1 からリストするように指示し、関数ではなくファイルであることを gdb に知らせます。