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 の特定の行まで実行するには、そこにブレークポイントを配置し、 を押しcて実行を続行します。
c
b <line_number> ; insert breakpoint c ; run up to the breakpoint del <breakpoint_number> ; remove breakpoint
上記の一連のコマンドを実行する必要がないように、特定の行番号まで実行するコマンドはありますか?