]> git.droids-corp.org - dpdk.git/blobdiff - drivers/net/iavf/meson.build
net/iavf: support requesting additional queues from PF
[dpdk.git] / drivers / net / iavf / meson.build
index 2cc772a16a2321b95fc94f2c08c46e0781de66bb..33407c5032c9e54916def133287be0b36c67e7dd 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')