From 3aaeb2588e264b377d9f33b2a3f11881992b8fca Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Fri, 2 Aug 2019 15:26:00 +0200 Subject: [PATCH] build: set more of the simd_cflags when not found Further attempt at mitigating issue #41. --- meson.build | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/meson.build b/meson.build index 85a8554..0510932 100644 --- a/meson.build +++ b/meson.build @@ -256,12 +256,23 @@ if cc.has_argument('-mmmx') and get_option('enable-mmx') endif else sse_args = '-Wall' + sse2_args = '-Wall' + sse4_1_cflags = '-Wall' + avx2_cflags = '-Wall' endif else mmx_args = '-Wall' + sse_args = '-Wall' + sse2_args = '-Wall' + sse4_1_cflags = '-Wall' + avx2_cflags = '-Wall' endif else mmx_args = '-Wall' + sse_args = '-Wall' + sse2_args = '-Wall' + sse4_1_cflags = '-Wall' + avx2_cflags = '-Wall' endif ################################################################################ -- 2.30.2