# HG changeset patch # User Gilles Duboscq # Date 1428582630 -7200 # Node ID 5a97208e18242a75596001f47657f0a83a301abd # Parent 4dbbc4b3bb4da00f9c8480de63a3ac804b816b80 CTW: Black-list some package to avoid linking problems when using an Oracle JDK >= 8u40 diff -r 4dbbc4b3bb4d -r 5a97208e1824 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompileTheWorld.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompileTheWorld.java Thu Apr 09 13:27:37 2015 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompileTheWorld.java Thu Apr 09 14:30:30 2015 +0200 @@ -322,6 +322,10 @@ continue; } + if (dottedClassName.startsWith("jdk.management.") || dottedClassName.startsWith("jdk.internal.cmm.*")) { + continue; + } + try { // Load and initialize class Class javaClass = Class.forName(dottedClassName, true, loader);