Skip to content
This repository was archived by the owner on Jan 12, 2019. It is now read-only.

Commit 2efa16c

Browse files
author
Jeff Brateman
committed
add x86-64
1 parent 269fc2f commit 2efa16c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

processor_support.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ AndroidProcessorSupport get_android_processor_support(void) {
7373
androidProcessor = AndroidProcessorHasVFP3_16;
7474
}
7575

76-
} else if(android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM64) {
77-
// 64 bit is NEON by definition, but requires new asm to compile.
76+
} else if(android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM64
77+
|| android_getCpuFamily() == ANDROID_CPU_FAMILY_X86_64) {
78+
// arm64 bit is NEON by definition, but requires new asm to compile.
7879
// See https://github.com/card-io/card.io-dmz/pull/20
7980
androidProcessor = AndroidProcessorHasVFP3_16;
8081
}

0 commit comments

Comments
 (0)