mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-14 10:15:48 +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
|
@ -61,9 +61,13 @@ if have_nasm and host_cpu == 'x86_64'
|
||||||
asm_outformat = 'macho64'
|
asm_outformat = 'macho64'
|
||||||
elif host_system.endswith('bsd')
|
elif host_system.endswith('bsd')
|
||||||
asm_outformat = 'aoutb'
|
asm_outformat = 'aoutb'
|
||||||
|
else
|
||||||
|
if cc.get_define('__ILP32__') == '1'
|
||||||
|
asm_outformat = 'elfx32'
|
||||||
else
|
else
|
||||||
asm_outformat = 'elf64'
|
asm_outformat = 'elf64'
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
asm_x = files('x86/yadif.asm',
|
asm_x = files('x86/yadif.asm',
|
||||||
'x86/x86inc.asm')
|
'x86/x86inc.asm')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue