環境
os : windows10 home
go : 1.13.0
go のscriptをvisual studio code でデバッグ実行しようとすると下記のようなエラーになります。エラー内容が今いち理解できず詰まってます。ご教授いただければ幸いです。
DAP server listening at: 127.0.0.1:57017 Build Error: go build -o C:\Users\addre\AppData\Local\Temp\__debug_bin856404535.exe -gcflags all=-N -l . go build _/c_/Users/addre/dev/go_channel: build output "C:\Users\addre\AppData\Local\Temp\__debug_bin856404535.exe" already exists and is not an object file (exit status 1)
エラー後に試したこと
下記の記事を参考にgo dlvというデバッガーツールをインストールして、vscodeのlaunch.json
を下記のように変更しましたが、結果は同じエラーになりました。
(他に影響がありそうで怖かったので、今は一回元に戻してます。)
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Launch", // "type": "godlvdap", "type": "go", "request": "launch", "mode": "auto", "program": "${fileDirname}", "env": {}, "args": [] } ] }
あなたの回答
tips
プレビュー