2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

標準入力のあるプログラムを delve でデバッグしたい

Posted at

Goで開発していて delve は便利なデバッグツールですが、標準入力のあるプログラムはそのままではデバッグができません
標準入力をプログラム本体に入力することができないためです

対処法

まず、プログラムを一度コンパイルし、
コンパイルしたプログラムを実行します

$ go build  -gcflags="-N -l" hoge.go
$ ./hoge

で、 新しい ターミナルを開き
このプロセスに対してdlvをアタッチします

$ dlv attach $(pgrep -fn hoge)

dlv attach コマンドは、引数に pid を渡すことで、その Go プログラムのデバッグを開始します

これで無事にデバッグができるようになります。
プログラム本体側のターミナルで標準入力ができますし、dlv側のターミナルでデバッグコマンドが使えます

めでたしめでたし

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?