How can I enable remote debugging for SBT in windows?

前端 未结 3 2057
庸人自扰
庸人自扰 2020-12-29 07:13

I would like to accomplish running the equivalent of this

sbt -jvm-debug 5005

However I don\'t seem to be able to pass in args in Windows.

3条回答
  •  悲&欢浪女
    2020-12-29 07:48

    Seems like the Windows version of SBT doesn't define this functionality.

    On Linux it is defined in the $SBT_HOME/sbt/bin/sbt-launch-lib.bash as

    addDebugger () {   
      addJava "-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=$1" 
    }
    

    You can achieve the same result by setting the SBT_OPTS environmental variable on Windows.

    Run SBT like this, to make the debugger listen on port 5005

    set SBT_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005" && sbt
    

提交回复
热议问题