< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigBase.java

Print this page
rev 59103 : imported patch hotspot

*** 101,113 **** String osName = getProperty("os.name"); switch (osName) { case "Linux": osName = "linux"; break; - case "SunOS": - osName = "solaris"; - break; case "Mac OS X": osName = "bsd"; break; default: // Of course Windows is different... --- 101,110 ----
*** 124,136 **** String arch = getProperty("os.arch"); switch (arch) { case "x86_64": arch = "amd64"; break; - case "sparcv9": - arch = "sparc"; - break; } return arch; } protected final Integer intRequiredOnAMD64 = osArch.equals("amd64") ? null : 0; --- 121,130 ----
< prev index next >