net/mlx5: fix dynamic inline hint handling
[dpdk.git] / drivers / net / sfc / meson.build
index a37fc44..35c05ac 100644 (file)
@@ -1,17 +1,16 @@
 # SPDX-License-Identifier: BSD-3-Clause
 #
-# Copyright (c) 2016-2018 Solarflare Communications Inc.
-# All rights reserved.
+# Copyright(c) 2019-2020 Xilinx, Inc.
+# Copyright(c) 2016-2019 Solarflare Communications Inc.
 #
 # This software was jointly developed between OKTET Labs (under contract
 # for Solarflare) and Solarflare Communications, Inc.
 
-if arch_subdir != 'x86'
+if arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')
        build = false
+       reason = 'only supported on x86_64'
 endif
 
-allow_experimental_apis = true
-
 extra_flags = []
 
 # Strict-aliasing rules are violated by rte_eth_link to uint64_t casts
@@ -19,21 +18,15 @@ extra_flags += '-Wno-strict-aliasing'
 
 # Enable more warnings
 extra_flags += [
-       '-Wextra',
        '-Wdisabled-optimization'
 ]
 
 # Compiler and version dependent flags
 extra_flags += [
        '-Waggregate-return',
-       '-Wnested-externs',
        '-Wbad-function-cast'
 ]
 
-# Suppress ICC false positive warning on 'bulk' may be used before its
-# value is set
-extra_flags += '-diag-disable 3656'
-
 foreach flag: extra_flags
        if cc.has_argument(flag)
                cflags += flag
@@ -58,6 +51,7 @@ sources = files(
        'sfc_flow.c',
        'sfc_dp.c',
        'sfc_ef10_rx.c',
+       'sfc_ef10_essb_rx.c',
        'sfc_ef10_tx.c'
 )