mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
Bug 1504016: Disable webp's NEON on aarch64-windows due to bustage. r=froydnj
--HG-- extra : rebase_source : da8d9a2afa41fc7e55cbbb8737209d7f1d3b0c60
This commit is contained in:
parent
df651d609c
commit
760f899f82
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user