Fix aarch64 builds

the proper check using compiler flags would be
  defined(__ARM_NEON) || defined(__aarch64__)
however explicit wscript defined "ARM_NEON_SUPPORT" is prefereable.
This commit is contained in:
Robin Gareus 2020-08-21 08:15:55 +02:00
parent 422d65ad17
commit 8875e8b1d9
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -18,7 +18,7 @@
#include "ardour/mix.h"
#if defined(__arm__) && defined(__ARM_NEON)
#ifdef ARM_NEON_SUPPORT
#include <arm_acle.h>
#include <arm_neon.h>
@ -515,4 +515,4 @@ arm_neon_copy_vector(
}
}
#endif /* defined (__arm__) && defined (__ARM_NEON) */
#endif