|
Relates :
|
|
|
Relates :
|
Problem with jdk/src/share/demo/jvmti/java_crw_demo/java_crw_demo.c:
CRW_ASSERT(ci, classfileVersion <= 50); /* Mustang class files or less */
Should add to
./jdk/src/share/javavm/export/classfile_constants.h
Something like:
#define JAVA_MAX_SUPPORTED_VERSION 51
Changing above from
CRW_ASSERT(ci, classfileVersion <= 50);
to
CRW_ASSERT(ci, classfileVersion <= JAVA_MAX_SUPPORTED_VERSION);
|