0

I keep trying to figure out a how to get jdwp to work with Embedded Java, using either a full jre or compact3 profile. In both cases, it cannot find libjdwp.so.

According to this document, it should be supported, except in the minimal VM option of the JRE. I am using the ARMv5 Linux (linux-arm-sflt) version, which I suspect might not include this anymore? It was in the EJRE7 though, so I'm surprised it is missing now. Does anyone know about this?

Ross
  • 1,313
  • 4
  • 16
  • 24
Ben
  • 4,785
  • 3
  • 27
  • 39

1 Answers1

2

Found the answer, with help from Jim Connors at Oracle.

You have to specify --debug (or -g) option to jrecreate.sh (or jrecreate.bat).

From the help:

-g, --debug Include Java level debugging support.

Ben
  • 4,785
  • 3
  • 27
  • 39