deinterlace: Fix build on x32

Need to pass `-f elfx32` to nasm in that case.

Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/757

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/657>
This commit is contained in:
Nirbheek Chauhan 2020-07-01 18:19:09 +05:30 committed by GStreamer Merge Bot
parent 7ae40045ba
commit 3fe4626e3c

View file

@ -62,7 +62,11 @@ if have_nasm and host_cpu == 'x86_64'
elif host_system.endswith('bsd')
asm_outformat = 'aoutb'
else
asm_outformat = 'elf64'
if cc.get_define('__ILP32__') == '1'
asm_outformat = 'elfx32'
else
asm_outformat = 'elf64'
endif
endif
asm_x = files('x86/yadif.asm',
'x86/x86inc.asm')