diff options
author | Martin Storsjo <martin@martin.st> | 2014-03-19 21:36:39 +0200 |
---|---|---|
committer | Timothy B. Terriberry <tterribe@xiph.org> | 2014-03-19 16:33:03 -0700 |
commit | 76e831d917fffc55854ba2dc68b61f51c8ba61b7 (patch) | |
tree | 254f123494762f044a5725b4acd9825d112a9450 /Makefile.am | |
parent | ac0e294b52ecc600c05b4b67f74e0f3ccf30a030 (diff) | |
download | opus-76e831d917fffc55854ba2dc68b61f51c8ba61b7.tar.gz |
Make the arm2gnu.pl converter handle apple specific details
This allows building the arm assembly for iOS.
This checks for the __APPLE__ preprocessor built-in define to
determine whether this extra handling should be enabled.
Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c39d8031..e76b2049 100644 --- a/Makefile.am +++ b/Makefile.am @@ -225,7 +225,7 @@ $(CELT_SOURCES_ARM_ASM:%.s=%-gnu.S): $(top_srcdir)/celt/arm/arm2gnu.pl # convert ARM asm to GNU as format %-gnu.S: $(top_srcdir)/%.s - $(top_srcdir)/celt/arm/arm2gnu.pl < $< > $@ + $(top_srcdir)/celt/arm/arm2gnu.pl @ARM2GNU_PARAMS@ < $< > $@ # For autoconf-modified sources (e.g., armopts.s) %-gnu.S: %.s $(top_srcdir)/celt/arm/arm2gnu.pl < $< > $@ |