mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
meson: deinterlace: Check host cpu type for asm build
Add host cpu type check as we would enable asm only for x86_64 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/636>
This commit is contained in:
parent
154146b9cc
commit
9122bfdfb7
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ else
|
|||
endif
|
||||
|
||||
asm_gen_objs = []
|
||||
if have_nasm
|
||||
if have_nasm and host_cpu == 'x86_64'
|
||||
if host_system == 'windows'
|
||||
outputname = '@PLAINNAME@.obj'
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue