Browse Source

AES-NI enabled for Android ARM64

pull/2/head
Grant Limberg 6 years ago
parent
commit
8131680735
No known key found for this signature in database
GPG Key ID: 2BA62CCABBB4095A
  1. 4
      java/jni/Android.mk

4
java/jni/Android.mk

@ -15,6 +15,10 @@ LOCAL_CFLAGS := -DZT_USE_MINIUPNPC
ifeq ($(TARGET_ARCH_ABI),x86_64)
LOCAL_CXXFLAGS := -maes -mpclmul -msse4.1
endif
ifeq ($(TARGET_ARCH_ABI),arm64-v8a)
LOCAL_ARM_NEON := true
LOCAL_CXXFLAGS := -mfloat-abi=softfp -mfpu=neon
endif
# ZeroTierOne SDK source files
LOCAL_SRC_FILES := \

Loading…
Cancel
Save