Bug 1284803 part 9 - Make sure NEON ifdefs match r=jesup

This commit is contained in:
Sotaro Ikeda 2016-07-12 23:02:12 -07:00
Родитель 72a83366f5
Коммит af38b3a39c
2 изменённых файлов: 8 добавлений и 5 удалений

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

@ -65,6 +65,11 @@
'-mfpu=vfpv3-d16',
# '-mthumb', # arm32 not thumb
],
'cflags_mozilla!': [
'-mfpu=vfp',
'-mfpu=vfpv3',
'-mfpu=vfpv3-d16',
],
'conditions': [
# Disable LTO in libyuv_neon target due to gcc 4.9 compiler bug.
['clang == 0 and use_lto == 1', {
@ -79,6 +84,9 @@
'-mfpu=neon',
# '-marm', # arm32 not thumb
],
'cflags_mozilla': [
'-mfpu=neon',
],
}],
],
}],

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

@ -89,11 +89,6 @@ USE_LIBS += [
'zlib',
]
if CONFIG['BUILD_ARM_NEON']:
USE_LIBS += [
'yuv_neon',
]
if CONFIG['JS_SHARED_LIBRARY']:
USE_LIBS += [
'js',