X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fcrypto%2Focteontx2%2Fmeson.build;h=283818e5dab4e5ecac3af511a0e7089e2fee8f84;hb=2d245e6983a727f1f453dcf5b432a21e842dc3aa;hp=41114a5c32fabdb3f8589c6f5cb3109208b38a4a;hpb=29768f78d5a7f0cf70b5f3007b9deaa361b17799;p=dpdk.git diff --git a/drivers/crypto/octeontx2/meson.build b/drivers/crypto/octeontx2/meson.build index 41114a5c32..283818e5da 100644 --- a/drivers/crypto/octeontx2/meson.build +++ b/drivers/crypto/octeontx2/meson.build @@ -1,9 +1,10 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright (C) 2019 Marvell International Ltd. -if not is_linux +if not is_linux or not dpdk_conf.get('RTE_ARCH_64') build = false - reason = 'only supported on Linux' + reason = 'only supported on 64-bit Linux' + subdir_done() endif deps += ['bus_pci'] @@ -12,7 +13,6 @@ deps += ['common_octeontx2'] deps += ['ethdev'] deps += ['eventdev'] deps += ['security'] -name = 'octeontx2_crypto' sources = files('otx2_cryptodev.c', 'otx2_cryptodev_capabilities.c', @@ -21,18 +21,6 @@ sources = files('otx2_cryptodev.c', 'otx2_cryptodev_ops.c', 'otx2_cryptodev_sec.c') -extra_flags = [] -# This integrated controller runs only on a arm64 machine, remove 32bit warnings -if not dpdk_conf.get('RTE_ARCH_64') - extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast'] -endif - -foreach flag: extra_flags - if cc.has_argument(flag) - cflags += flag - endif -endforeach - includes += include_directories('../../common/cpt') includes += include_directories('../../common/octeontx2') includes += include_directories('../../crypto/octeontx2')