meson_options: Set the default SIMD extension to sse2

Too may people have old hardware.
pull/32/head
Andri Yngvason 2020-05-18 20:11:32 +00:00
parent 477ab4c481
commit c6c567cfaf
1 changed files with 1 additions and 1 deletions

View File

@ -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')