No Issue - Fix clang builds on 32-bit ARM Linux. The clang integrated assembler can't handle these files.

This commit is contained in:
Brian Smith 2026-02-28 11:45:35 +00:00 committed by OwnedByWuigi
commit fca1546384
2 changed files with 8 additions and 5 deletions

View file

@ -58,6 +58,10 @@ if CONFIG['CPU_ARCH'] == 'arm' and CONFIG['HAVE_ARM_NEON']:
SOURCES += [
'yuv_convert_arm.cpp',
]
if CONFIG['CC_TYPE'] == 'clang':
SOURCES['yuv_convert_arm.cpp'].flags += [
'-fno-integrated-as'
]
LOCAL_INCLUDES += ['/media/libyuv/include']