This commit is contained in:
crschnick 2023-10-20 13:34:49 +00:00
parent b7612237e1
commit 15088095e2
2 changed files with 3 additions and 1 deletions

View file

@ -164,7 +164,7 @@ task runAttachedDebugger(type: JavaExec) {
modularity.inferModulePath = true
jvmArgs += jvmRunArgs
jvmArgs += List.of(
"-javaagent:${System.getProperty("user.home")}/.attachme/attachme-agent-1.2.1.jar=port:7857,host:localhost",
"-javaagent:${System.getProperty("user.home")}/.attachme/attachme-agent-1.2.1.jar=port:7857,host:localhost".toString(),
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=127.0.0.1:0"
)
jvmArgs += '-XX:+EnableDynamicAgentLoading'

View file

@ -22,3 +22,5 @@ for (def ext : file("ext").list()) {
include 'app'
include 'cli'
include 'dist'
println('arch: ' + System.getProperty("os.arch"))