c2189c907d
Ethernet port ID data size has been extended to 16 bits size 17.11
Update the Rx event adapter interface and implementation accordingly.
This commit bumps the library version to refect the ABI change
caused by extending the ethernet port parameter in Rx adapter
functions from 8 to 16 bits.
Fixes: 9c38b704d2
("eventdev: add eth Rx adapter implementation")
Cc: stable@dpdk.org
Signed-off-by: Nikhil Rao <nikhil.rao@intel.com>
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2016 Cavium, Inc
|
|
#
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_eventdev.a
|
|
|
|
# library version
|
|
LIBABIVER := 4
|
|
|
|
# build flags
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
LDLIBS += -lrte_eal -lrte_ring -lrte_ethdev -lrte_hash -lrte_mempool -lrte_timer
|
|
LDLIBS += -lrte_mbuf -lrte_cryptodev
|
|
|
|
# library source files
|
|
SRCS-y += rte_eventdev.c
|
|
SRCS-y += rte_event_ring.c
|
|
SRCS-y += rte_event_eth_rx_adapter.c
|
|
SRCS-y += rte_event_timer_adapter.c
|
|
SRCS-y += rte_event_crypto_adapter.c
|
|
|
|
# export include files
|
|
SYMLINK-y-include += rte_eventdev.h
|
|
SYMLINK-y-include += rte_eventdev_pmd.h
|
|
SYMLINK-y-include += rte_eventdev_pmd_pci.h
|
|
SYMLINK-y-include += rte_eventdev_pmd_vdev.h
|
|
SYMLINK-y-include += rte_event_ring.h
|
|
SYMLINK-y-include += rte_event_eth_rx_adapter.h
|
|
SYMLINK-y-include += rte_event_timer_adapter.h
|
|
SYMLINK-y-include += rte_event_timer_adapter_pmd.h
|
|
SYMLINK-y-include += rte_event_crypto_adapter.h
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_eventdev_version.map
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|