From: Øyvind Kolås Date: Fri, 2 Aug 2019 13:26:00 +0000 (+0200) Subject: build: set more of the simd_cflags when not found X-Git-Tag: archive/raspbian/1%0.1.106-3+rpi1^2~15^2~11^2~36 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3aaeb2588e264b377d9f33b2a3f11881992b8fca;p=babl.git build: set more of the simd_cflags when not found Further attempt at mitigating issue #41. --- 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 ################################################################################