Debug version of jvm

Does anyone know where I can get a debug build version of the jvm without me actually building it? I am chasing a memory issue that appears to be in code outside of my jni dlls.Thanks!Mark
[209 byte] By [mpenningroth@cincom.coma] at [2007-11-26 14:00:51]
# 1
I believe the JRE in the SDK is supposed to have debug information
tschodta at 2007-7-8 1:42:33 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
Get JVM sources, there you will find batch files that generate project for C++ IDE. I have generated a project for MS Visual Studio 7.1, compiled JVM.DLL with debug Info, tested it in debug mode to find a bug in it and to write workaround in my code.
vitallisa at 2007-7-8 1:42:33 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 3

For which version of the JVM are you trying to find a debug build? If it's for JDK-1.6.0, you are in luck, since the jdk6.dev.java.net project has been making those available at http://download.java.net/jdk6/binaries/.

Don't forget to read the note on that page about installing the debug jar files: the installer forgets to make the executables executables (and might also forget that some things that should be symbolic links, on Solaris or Linux). I guess the feeling is that if you are willing to deal with the debug builds you understand the note, or can at least follow the directions.

PeterKesslera at 2007-7-8 1:42:33 > top of Java-index,Java HotSpot Virtual Machine,Specifications...