summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorSeungha Yang <seungha@centricular.com>2020-06-19 20:24:12 +0900
committerSeungha Yang <seungha@centricular.com>2020-06-19 20:28:14 +0900
commit9122bfdfb79453ffe2751e8462967263421cabd0 (patch)
tree57db88e443d38cefb6afc4d6a5c02c3ad5b95b5c /gst
parent154146b9cc154f4fdecb4c48041bf44b605b125e (diff)
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>
Diffstat (limited to 'gst')
-rw-r--r--gst/deinterlace/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/deinterlace/meson.build b/gst/deinterlace/meson.build
index 1a19a561e..7ba4e2a10 100644
--- a/gst/deinterlace/meson.build
+++ b/gst/deinterlace/meson.build
@@ -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