On Tue, Oct 6, 2020 at 5:11 PM Konstantin Ananyev <konstantin.anan...@intel.com> wrote: > diff --git a/config/x86/meson.build b/config/x86/meson.build > index fea4d54035..724e69f4c4 100644 > --- a/config/x86/meson.build > +++ b/config/x86/meson.build > @@ -22,7 +22,8 @@ foreach f:base_flags > endforeach > > optional_flags = ['AES', 'PCLMUL', > - 'AVX', 'AVX2', 'AVX512F', > + 'AVX', 'AVX2', > + 'AVX512F', 'AVX512VL', 'AVX512CD', 'AVX512BW', > 'RDRND', 'RDSEED']
Rebasing on current main and resolving the conflict with the net crc patches. I am for sorting this alphabetically as the current order seems chaotic. The diff in this patch against origin/main would be: -optional_flags = ['AES', 'PCLMUL', - 'AVX', 'AVX2', 'AVX512F', - 'RDRND', 'RDSEED', - 'AVX512BW', 'AVX512DQ', - 'AVX512VL', 'VPCLMULQDQ'] +optional_flags = [ + 'AES', + 'AVX', + 'AVX2', + 'AVX512BW', + 'AVX512CD', + 'AVX512DQ', + 'AVX512F', + 'AVX512VL', + 'PCLMUL', + 'RDRND', + 'RDSEED', + 'VPCLMULQDQ', +] Objection? > foreach f:optional_flags > if cc.get_define('__@0@__'.format(f), args: machine_args) == '1' Thanks. -- David Marchand