< prev index next >
src/java.base/share/classes/jdk/internal/foreign/abi/SystemABI.java
Print this page
*** 124,134 ****
}
static SystemABI getInstance() {
String arch = System.getProperty("os.arch");
String os = System.getProperty("os.name");
! if (arch.equals("amd64")) {
if (os.startsWith("Windows")) {
return Windowsx64ABI.getInstance();
} else {
return SysVx64ABI.getInstance();
}
--- 124,134 ----
}
static SystemABI getInstance() {
String arch = System.getProperty("os.arch");
String os = System.getProperty("os.name");
! if (arch.equals("amd64") || arch.equals("x86_64")) {
if (os.startsWith("Windows")) {
return Windowsx64ABI.getInstance();
} else {
return SysVx64ABI.getInstance();
}
< prev index next >