Bug 1504016: Disable webp's NEON on aarch64-windows due to bustage. r=froydnj

--HG--
extra : rebase_source : da8d9a2afa41fc7e55cbbb8737209d7f1d3b0c60
This commit is contained in:
David Major 2018-11-01 22:02:29 -04:00
parent df651d609c
commit 760f899f82

View File

@ -36,7 +36,8 @@ if CONFIG['CPU_ARCH'] == 'arm' and CONFIG['BUILD_ARM_NEON']:
for f in SOURCES:
if f.endswith('neon.c'):
SOURCES[f].flags += CONFIG['NEON_FLAGS']
elif CONFIG['CPU_ARCH'] == 'aarch64':
elif CONFIG['CPU_ARCH'] == 'aarch64' and CONFIG['OS_ARCH'] != 'WINNT':
# Bug 1504017 tracks re-enabling this for Windows.
SOURCES += [
'alpha_processing_neon.c',
'dec_neon.c',