3bdd09ae07
Formatting Ethernet address and getting a random value are not in critical path so they should not be inlined. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Rami Rosen <ramirose@gmail.com> Reviewed-by: Andrew Rybchenko <arybchenko@solarflare.com> Acked-by: Olivier Matz <olivier.matz@6wind.com>
35 lines
766 B
Makefile
35 lines
766 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018-2019 Cisco Systems, Inc. All rights reserved.
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_pmd_memif.a
|
|
|
|
EXPORT_MAP := rte_pmd_memif_version.map
|
|
|
|
LIBABIVER := 1
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
# Experimantal APIs:
|
|
# - rte_intr_callback_unregister_pending
|
|
# - rte_mp_action_register
|
|
# - rte_mp_reply
|
|
# - rte_mp_request_sync
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool
|
|
LDLIBS += -lrte_ethdev -lrte_kvargs -lrte_net
|
|
LDLIBS += -lrte_hash
|
|
LDLIBS += -lrte_bus_vdev
|
|
|
|
#
|
|
# all source are stored in SRCS-y
|
|
#
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_MEMIF) += rte_eth_memif.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_MEMIF) += memif_socket.c
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|