From: Thomas Monjalon Date: Mon, 3 Feb 2014 17:45:14 +0000 (+0100) Subject: virtio: rename library X-Git-Tag: spdx-start~10913 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=5dbb84c0a8200bfcc60c201aab884e7877576ec6;p=dpdk.git virtio: rename library In order to distinguish clearly this implementation from the extension virtio-net-pmd, it is renamed to reflect its usage of uio framework. Signed-off-by: Thomas Monjalon Acked-by: Chris Wright --- diff --git a/lib/librte_pmd_virtio/Makefile b/lib/librte_pmd_virtio/Makefile index b6073728fd..820c7389ac 100644 --- a/lib/librte_pmd_virtio/Makefile +++ b/lib/librte_pmd_virtio/Makefile @@ -34,7 +34,7 @@ include $(RTE_SDK)/mk/rte.vars.mk # # library name # -LIB = librte_pmd_virtio.a +LIB = librte_pmd_virtio_uio.a CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) diff --git a/mk/rte.app.mk b/mk/rte.app.mk index ec8e24eebb..b69152691c 100644 --- a/mk/rte.app.mk +++ b/mk/rte.app.mk @@ -79,7 +79,7 @@ LDLIBS += -lrte_pmd_ixgbe endif ifeq ($(CONFIG_RTE_LIBRTE_VIRTIO_PMD),y) -LDLIBS += -lrte_pmd_virtio +LDLIBS += -lrte_pmd_virtio_uio endif ifeq ($(CONFIG_RTE_LIBRTE_VMXNET3_PMD),y)