1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright (C) 2019 Marvell International Ltd.
4 if host_machine.system() != 'linux'
10 deps += ['common_octeontx2']
11 name = 'octeontx2_crypto'
13 allow_experimental_apis = true
14 sources = files('otx2_cryptodev.c',
15 'otx2_cryptodev_capabilities.c',
16 'otx2_cryptodev_hw_access.c',
17 'otx2_cryptodev_mbox.c',
18 'otx2_cryptodev_ops.c')
21 # This integrated controller runs only on a arm64 machine, remove 32bit warnings
22 if not dpdk_conf.get('RTE_ARCH_64')
23 extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
26 foreach flag: extra_flags
27 if cc.has_argument(flag)
32 includes += include_directories('../../common/cpt')
33 includes += include_directories('../../common/octeontx2')
34 includes += include_directories('../../mempool/octeontx2')