mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 07:28:53 +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
|
endif
|
||||||
|
|
||||||
asm_gen_objs = []
|
asm_gen_objs = []
|
||||||
if have_nasm
|
if have_nasm and host_cpu == 'x86_64'
|
||||||
if host_system == 'windows'
|
if host_system == 'windows'
|
||||||
outputname = '@PLAINNAME@.obj'
|
outputname = '@PLAINNAME@.obj'
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue