1 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright(c) 2019-2020 Xilinx, Inc.
4 # Copyright(c) 2016-2019 Solarflare Communications Inc.
6 # This software was jointly developed between OKTET Labs (under contract
7 # for Solarflare) and Solarflare Communications, Inc.
9 if arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')
11 reason = 'only supported on x86_64'
16 # Strict-aliasing rules are violated by rte_eth_link to uint64_t casts
17 extra_flags += '-Wno-strict-aliasing'
19 # Enable more warnings
21 '-Wdisabled-optimization'
24 # Compiler and version dependent flags
30 foreach flag: extra_flags
31 if cc.has_argument(flag)
58 includes += include_directories('base')