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

Commit

Permalink
add note re arm64 vs. NEON settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Goldman committed Apr 16, 2015
1 parent 7600354 commit 7793f6f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions processor_support.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@

// Enable simple compiletime checks for NEON support
#if IOS_DMZ
// ********************************* arm64 NOTE *********************************
// Currently DMZ_HAS_NEON_COMPILETIME is disabled for the arm64 architecture.
// To avoid compiler warnings, the `-mfloat-abi=softfp -mfpu=neon` compiler flags
// have been removed from our arm64 builds for libCardIO (in Build Settings).
// So if you enable DMZ_HAS_NEON_COMPILETIME for arm64 builds, then you will
// also need to restore those compiler flags for arm64.
// ********************************* arm64 NOTE *********************************
#ifdef _ARM_ARCH_7
#define DMZ_HAS_NEON_COMPILETIME 1
#else
Expand Down

0 comments on commit 7793f6f

Please sign in to comment.