e66a5a8270
Fix the following ICC specific compilation issue with i686 build. dpdk/drivers/common/octeontx2/otx2_mbox.c(47): error #2259: non-pointer conversion from "unsigned long long" to "struct mbox_hdr *" may lose significant bits (struct mbox_hdr *)((uintptr_t)mdev->mbase + mbox->tx_start); Fixes: 732377a6792e ("mempool/octeontx2: add build infra and device probe") Fixes: 371d3212cbed ("common/octeontx2: add build infrastructure and HW definition") Signed-off-by: Amit Gupta <agupta3@marvell.com>
41 lines
789 B
Makefile
41 lines
789 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2019 Marvell International Ltd.
|
|
#
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_common_octeontx2.a
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
CFLAGS += -I$(RTE_SDK)/drivers/common/octeontx2
|
|
CFLAGS += -I$(RTE_SDK)/drivers/mempool/octeontx2
|
|
CFLAGS += -I$(RTE_SDK)/drivers/bus/pci
|
|
|
|
ifneq ($(CONFIG_RTE_ARCH_64),y)
|
|
CFLAGS += -Wno-int-to-pointer-cast
|
|
CFLAGS += -Wno-pointer-to-int-cast
|
|
ifeq ($(CONFIG_RTE_TOOLCHAIN_ICC),y)
|
|
CFLAGS += -diag-disable 2259
|
|
endif
|
|
endif
|
|
|
|
EXPORT_MAP := rte_common_octeontx2_version.map
|
|
|
|
LIBABIVER := 1
|
|
|
|
#
|
|
# all source are stored in SRCS-y
|
|
#
|
|
SRCS-y += otx2_dev.c
|
|
SRCS-y += otx2_irq.c
|
|
SRCS-y += otx2_mbox.c
|
|
SRCS-y += otx2_common.c
|
|
|
|
LDLIBS += -lrte_eal
|
|
LDLIBS += -lrte_ethdev
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|