mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
Check for aarch64 as well
This commit is contained in:
parent
3e0946c564
commit
d7a652e397
2 changed files with 15 additions and 6 deletions
|
@ -62,7 +62,7 @@ THE SOFTWARE.
|
|||
#endif
|
||||
|
||||
// ARM64 mandates implementation of NEON
|
||||
#if defined(__arm64__)
|
||||
#if defined(__arm64__) || defined(__aarch64__)
|
||||
#define COMPILER_HAS_SIMD_NEON
|
||||
#define arm_has_neon() (true)
|
||||
// ARMv7 or older, NEON is optional and autodetection is difficult
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue