From be05dfce26bbb475646ff9cee2c12c912ce3a4c4 Mon Sep 17 00:00:00 2001 From: Ted Mielczarek Date: Mon, 10 Oct 2011 16:01:55 -0400 Subject: [PATCH] bug 686371 - Use pixman C fallback on iOS. r=jmuizelaar --- gfx/cairo/libpixman/src/Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gfx/cairo/libpixman/src/Makefile.in b/gfx/cairo/libpixman/src/Makefile.in index dbae75379f7..3f3637ab55b 100644 --- a/gfx/cairo/libpixman/src/Makefile.in +++ b/gfx/cairo/libpixman/src/Makefile.in @@ -94,6 +94,11 @@ MMX_CFLAGS+=--param inline-unit-growth=10000 --param large-function-growth=10000 endif endif ifeq (arm,$(findstring arm,$(OS_TEST))) +# Apple's arm assembler doesn't support the same syntax as +# the standard GNU assembler, so use the C fallback paths for now. +# This may be fixable if clang's ARM/iOS assembler improves into a +# viable solution in the future. +ifneq (Darwin,$(OS_ARCH)) ifdef HAVE_ARM_SIMD USE_ARM_SIMD_GCC=1 endif @@ -101,6 +106,7 @@ ifdef HAVE_ARM_NEON USE_ARM_NEON_GCC=1 endif endif +endif endif