mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-07 06:52:41 +00:00
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:
parent
7ae40045ba
commit
3fe4626e3c
1 changed files with 5 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue