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:
Seungha Yang 2020-06-19 20:24:12 +09:00
parent 154146b9cc
commit 9122bfdfb7

View file

@ -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