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:
parent
4b5e893fcc
commit
f69c9074e7
@ -30,6 +30,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_NEON
|
||||
|
||||
.syntax unified
|
||||
|
||||
#ifdef __APPLE__
|
||||
@ -63,3 +65,5 @@ mov pc, lr
|
||||
.endfunc
|
||||
.endm
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user