Why does executing debug in 0.13.7 fail with “Could not find agent library jdwp:transport on the library path”?

后端 未结 4 590
刺人心
刺人心 2021-01-11 18:13

After update from 0.13.6 to 0.13.7 I cannot debug with SBT. It is installed using Homebrew. I tried to reinstall it,

4条回答
  •  不知归路
    2021-01-11 18:41

    At my case the bash fix didn't help but running from bash as:

    export SBT_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" 
    sbt
    

    helped. It is from here.

提交回复
热议问题