diff options
Diffstat (limited to 'src/java')
-rwxr-xr-x | src/java/com/sun/gluegen/runtime/CPU.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/java/com/sun/gluegen/runtime/CPU.java b/src/java/com/sun/gluegen/runtime/CPU.java index efb015d..e3a215f 100755 --- a/src/java/com/sun/gluegen/runtime/CPU.java +++ b/src/java/com/sun/gluegen/runtime/CPU.java @@ -54,6 +54,7 @@ public class CPU { String os = System.getProperty("os.name").toLowerCase(); String cpu = System.getProperty("os.arch").toLowerCase(); if ((os.startsWith("windows") && cpu.equals("x86")) || + (os.startsWith("windows") && cpu.equals("arm")) || (os.startsWith("linux") && cpu.equals("i386")) || (os.startsWith("linux") && cpu.equals("x86")) || (os.startsWith("mac os") && cpu.equals("ppc")) || |