net/iavf: support requesting additional queues from PF
[dpdk.git] / drivers / net / iavf / meson.build
index 2cc772a..33407c5 100644 (file)
@@ -12,6 +12,7 @@ sources = files(
        'iavf_vchnl.c',
        'iavf_generic_flow.c',
        'iavf_fdir.c',
+       'iavf_hash.c',
 )
 
 if arch_subdir == 'x86'
@@ -20,7 +21,7 @@ if arch_subdir == 'x86'
        # compile AVX2 version if either:
        # a. we have AVX supported in minimum instruction set baseline
        # b. it's not minimum instruction set, but supported by compiler
-       if dpdk_conf.has('RTE_MACHINE_CPUFLAG_AVX2')
+       if cc.get_define('__AVX2__', args: machine_args) != ''
                cflags += ['-DCC_AVX2_SUPPORT']
                sources += files('iavf_rxtx_vec_avx2.c')
        elif cc.has_argument('-mavx2')