Add ifdef HAVE_NEON around the contents of arm_arch_common_macro.S

This file is built on its own from within the xcode projects,
even though it isn't necessary. Previously its contents was just
empty, but now a .syntax unified was added, which failed the build
when building for arm64.

Make this file a no-op, just like the other arm assembly source files,
unless HAVE_NEON is defined.
This commit is contained in:
Martin Storsjö 2014-08-15 08:49:31 +03:00
parent 4b5e893fcc
commit f69c9074e7

View File

@ -30,6 +30,8 @@
*
*/
#ifdef HAVE_NEON
.syntax unified
#ifdef __APPLE__
@ -63,3 +65,5 @@ mov pc, lr
.endfunc
.endm
#endif
#endif