meson: Let user choose x86_64 SIMD extension for release build
parent
297e22b588
commit
a0d49f774a
|
@ -23,7 +23,7 @@ endif
|
|||
cpu = host_machine.cpu_family()
|
||||
|
||||
if cpu == 'x86_64'
|
||||
c_args += '-mavx'
|
||||
c_args += '-m' + get_option('x86_64-simd')
|
||||
elif cpu == 'arm'
|
||||
c_args += '-mfpu=neon'
|
||||
endif
|
||||
|
|
|
@ -1,3 +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('examples', type: 'boolean', value: false, description: 'Build examples')
|
||||
option('x86_64-simd', type: 'string', value: 'avx',
|
||||
description: 'Choose SIMD extension for x86_64 release build')
|
||||
|
|
Loading…
Reference in New Issue