diff options
author | Sven Gothel <[email protected]> | 2019-12-10 18:56:43 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-10 18:56:43 +0100 |
commit | b6a91a035c14f1e4d142517f311007e48ea9c0c1 (patch) | |
tree | 1c4913130dc7d3872a506230eec4fd1d1dd16022 /src/java | |
parent | 74e5bbe097a07d1275a2d6452d1e2336a8d5c44a (diff) |
Bug 1417 - Android: Complete 1st round: make/lib/gluegen-cpptask-android-<abi>.xml and scripts
All aligned now
- gluegen-cpptasks-android-aarch64.xml
- gluegen-cpptasks-android-armv6.xml (this has ld flag --no-undefined disabled, due to internal missing symbols)
- gluegen-cpptasks-android-x86.xml
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/com/jogamp/common/os/AndroidVersion.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/com/jogamp/common/os/AndroidVersion.java b/src/java/com/jogamp/common/os/AndroidVersion.java index c2c2159..897423d 100644 --- a/src/java/com/jogamp/common/os/AndroidVersion.java +++ b/src/java/com/jogamp/common/os/AndroidVersion.java @@ -75,7 +75,7 @@ public class AndroidVersion { Class<?> abvcClass = null; Object abvcObject= null; - boolean isDalvikVm = "Dalvik".equals(System.getProperty("java.vm.name")); + final boolean isDalvikVm = "Dalvik".equals(System.getProperty("java.vm.name")); if (isDalvikVm) { try { @@ -111,6 +111,7 @@ public class AndroidVersion { * <pre> * lib/armeabi/libfoo.so * lib/armeabi-v7a/libfoo.so + * lib/arm64-v8a/libfoo.so * lib/x86/libfoo.so * lib/mips/libfoo.so * </pre> |