From c6c567cfafc1f9b19e3b7e4123a90811a3cc4aa4 Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Mon, 18 May 2020 20:11:32 +0000 Subject: [PATCH] meson_options: Set the default SIMD extension to sse2 Too may people have old hardware. --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index ed83cb1..d42fcdc 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,5 +1,5 @@ option('examples', type: 'boolean', value: false, description: 'Build examples') option('tight-encoding', type: 'feature', value: 'auto', description: 'Enable Tight encoding') option('tls', type: 'feature', value: 'auto', description: 'Enable encryption & authentication') -option('x86_64-simd', type: 'string', value: 'avx', +option('x86_64-simd', type: 'string', value: 'sse2', description: 'Choose SIMD extension for x86_64 release build')