On Fri, Feb 28, 2025 at 11:03 PM Andre Muezerie <andre...@linux.microsoft.com> wrote: > @@ -14,9 +59,8 @@ if is_linux or cc.get_id() == 'gcc' > endif > endif > > -cc_avx512_flags = ['-mavx512f', '-mavx512vl', '-mavx512dq', '-mavx512bw'] > -cc_has_avx512 = false > -target_has_avx512 = false > +cc_avx2_flags = ['-mavx2']
It looks like rebase damage/conflict with another series touching those flags. I'll see if I can fix this while applying... > +cc_avx512_flags = ['-mavx512f', '-mavx512vl', '-mavx512dq', '-mavx512bw', > '-mavx512cd'] > if (binutils_ok and cc.has_multi_arguments(cc_avx512_flags) > and '-mno-avx512f' not in get_option('c_args')) > # check if compiler is working with _mm512_extracti64x4_epi64 -- David Marchand