fix(android build): added missing flag check for neon
This commit is contained in:
parent
19544228f2
commit
a53db34b9b
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@
|
|||
#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__))
|
||||
#define LIN_SIMD
|
||||
#include <immintrin.h>
|
||||
#elif defined(__GNUC__) && defined(__ARM_NEON__)
|
||||
#elif defined(__GNUC__) && (defined(__ARM_NEON__) || defined(__aarch64__))
|
||||
#define LIN_NEON
|
||||
#include <arm_neon.h>
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue