Kaydet (Commit) cb38ee0d authored tarafından Ariel Constenla-Haile's avatar Ariel Constenla-Haile

i66923 - Add support for JRockit JVM

üst 8207990b
...@@ -23,11 +23,11 @@ ...@@ -23,11 +23,11 @@
<javaSelection xmlns="http://openoffice.org/2004/java/framework/1.0" <javaSelection xmlns="http://openoffice.org/2004/java/framework/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<updated>2011-01-07</updated> <updated>2012-10-06</updated>
<vendorInfos> <vendorInfos>
<vendor name="Oracle Corporation"> <vendor name="Oracle Corporation">
<minVersion>1.7.0</minVersion> <minVersion>1.6.0</minVersion>
</vendor> </vendor>
<vendor name="Sun Microsystems Inc."> <vendor name="Sun Microsystems Inc.">
<minVersion>1.5.0</minVersion> <minVersion>1.5.0</minVersion>
......
...@@ -23,11 +23,11 @@ ...@@ -23,11 +23,11 @@
<javaSelection xmlns="http://openoffice.org/2004/java/framework/1.0" <javaSelection xmlns="http://openoffice.org/2004/java/framework/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<updated>2011-01-07</updated> <updated>2012-10-06</updated>
<vendorInfos> <vendorInfos>
<vendor name="Oracle Corporation"> <vendor name="Oracle Corporation">
<minVersion>1.7.0</minVersion> <minVersion>1.6.0</minVersion>
</vendor> </vendor>
<vendor name="Sun Microsystems Inc."> <vendor name="Sun Microsystems Inc.">
<minVersion>1.5.0</minVersion> <minVersion>1.5.0</minVersion>
......
...@@ -63,13 +63,16 @@ char const* const* SunInfo::getRuntimePaths(int * size) ...@@ -63,13 +63,16 @@ char const* const* SunInfo::getRuntimePaths(int * size)
#if defined(WNT) #if defined(WNT)
"/bin/client/jvm.dll", "/bin/client/jvm.dll",
"/bin/hotspot/jvm.dll", "/bin/hotspot/jvm.dll",
"/bin/classic/jvm.dll" "/bin/classic/jvm.dll",
"/bin/jrockit/jvm.dll"
#elif defined(OS2) #elif defined(OS2)
"/bin/classic/jvm.dll", "/bin/classic/jvm.dll",
// TODO add jrockit here
#elif UNX #elif UNX
"/lib/" JFW_PLUGIN_ARCH "/client/libjvm.so", "/lib/" JFW_PLUGIN_ARCH "/client/libjvm.so",
"/lib/" JFW_PLUGIN_ARCH "/server/libjvm.so", "/lib/" JFW_PLUGIN_ARCH "/server/libjvm.so",
"/lib/" JFW_PLUGIN_ARCH "/classic/libjvm.so" "/lib/" JFW_PLUGIN_ARCH "/classic/libjvm.so",
"/lib/" JFW_PLUGIN_ARCH "/jrockit/libjvm.so"
#endif #endif
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment