common/sfc_efx/base: add user mark RxQ flag
[dpdk.git] / drivers / common / sfc_efx / meson.build
index b7a0763..0cf0a23 100644 (file)
@@ -1,40 +1,46 @@
 # SPDX-License-Identifier: BSD-3-Clause
 #
-# Copyright(c) 2019-2020 Xilinx, Inc.
+# Copyright(c) 2019-2021 Xilinx, Inc.
 #
 # This software was jointly developed between OKTET Labs (under contract
 # for Solarflare) and Solarflare Communications, Inc.
 
-if arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')
-       build = false
-       reason = 'only supported on x86_64'
+if is_windows
+    build = false
+    reason = 'not supported on Windows'
+endif
+
+if (arch_subdir != 'x86' and arch_subdir != 'arm') or (not dpdk_conf.get('RTE_ARCH_64'))
+    build = false
+    reason = 'only supported on x86_64 and aarch64'
 endif
 
 extra_flags = []
 
 # Enable more warnings
 extra_flags += [
-       '-Wdisabled-optimization'
+        '-Wdisabled-optimization',
 ]
 
 # Compiler and version dependent flags
 extra_flags += [
-       '-Waggregate-return',
-       '-Wbad-function-cast'
+        '-Waggregate-return',
+        '-Wbad-function-cast',
 ]
 
 foreach flag: extra_flags
-       if cc.has_argument(flag)
-               cflags += flag
-       endif
+    if cc.has_argument(flag)
+        cflags += flag
+    endif
 endforeach
 
 subdir('base')
 objs = [base_objs]
 
+deps += ['bus_pci']
 sources = files(
-       'sfc_efx.c',
-       'sfc_efx_mcdi.c',
+        'sfc_efx.c',
+        'sfc_efx_mcdi.c',
 )
 
 includes += include_directories('base')