bug 686371 - Use pixman C fallback on iOS. r=jmuizelaar

This commit is contained in:
Ted Mielczarek 2011-10-10 16:01:55 -04:00
Родитель d674496ec4
Коммит be05dfce26
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -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