build: disable experimental API check internally
[dpdk.git] / drivers / net / sfc / meson.build
index 0de2e17..c2f6af7 100644 (file)
@@ -6,12 +6,11 @@
 # 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,14 +18,12 @@ 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'
 ]
 
@@ -54,6 +51,7 @@ sources = files(
        'sfc_flow.c',
        'sfc_dp.c',
        'sfc_ef10_rx.c',
+       'sfc_ef10_essb_rx.c',
        'sfc_ef10_tx.c'
 )