aboutsummaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-25 11:33:23 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-25 11:33:23 +0200
commit91d4545d23963e9cc774b2c27e54ec1412fe5785 (patch)
tree3229be916793370330d5aebc3ec50626026f6e2e /make.c
parentde09acdf52d8c5128b518c36e7631d312b24e0f1 (diff)
Make check a bit more robust
Diffstat (limited to 'make.c')
-rw-r--r--make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.c b/make.c
index 229c210..5566859 100644
--- a/make.c
+++ b/make.c
@@ -436,7 +436,7 @@ chk_cpu_flags(void)
#endif
/* Test for NEON */
-#if __ARM_NEON
+#if __ARM_NEON || __ARM_NEON__
simd_flags |= SIMD_NEON;
#endif
}