Should make building on i686 without SSE feasible. Fixes: https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/issues/5
10 lines
429 B
Meson
10 lines
429 B
Meson
option('gnustl', type: 'feature',
|
|
value: 'auto',
|
|
description: 'Use gnustl for a c++ library implementation (only used on Android)')
|
|
option('neon', type: 'combo',
|
|
choices: ['no', 'yes', 'auto', 'runtime'],
|
|
description: 'Enable NEON optimisations')
|
|
option('inline-sse', type: 'boolean',
|
|
value: true,
|
|
description: 'Enable inline SSE/SSE2 optimisations (i.e. assume CPU supports SSE/SSE2)')
|