]> git.droids-corp.org - dpdk.git/commitdiff
mk: fix build with shared pcap pmd
authorThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 15 Dec 2014 22:44:49 +0000 (23:44 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 16 Dec 2014 22:35:31 +0000 (23:35 +0100)
Some applications doesn't have the pcap link flag
when shared libraries are enabled.
Indeed in such case, pcap PMD must not be linked but pcap library should.

Actually -lpcap is always needed if pcap PMD is used,
and -lrte_pmd_pcap must be set only with static PMD library.
So the flags -lrte_pmd_pcap and -lpcap are enabled separately.

Workarounds in test-pmd/ and test-pipeline/ can be removed.

Reported-by: Stepan Sojka <stepan.sojka@adaptivemobile.com>
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
app/test-pipeline/Makefile
app/test-pmd/Makefile
mk/rte.app.mk

index b81652f5820dbf12c99df1983bcb34d278f19df3..aa6df0cf46d564773c839ba38f3aad1866df66ae 100644 (file)
@@ -41,10 +41,6 @@ APP = testpipeline
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
-ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
-LDFLAGS += -lpcap
-endif
-
 #
 # all source are stored in SRCS-y
 #
index 97dc2e62f1c7aec8e97a62d22d2bf70cdf5bbdc6..dcf26f4cfac0c77c77d22e9b863cfd3d17059a3f 100644 (file)
@@ -41,10 +41,6 @@ APP = testpmd
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
-ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
-LDFLAGS += -lpcap
-endif
-
 #
 # all source are stored in SRCS-y
 #
index 84ec4df8b493edaebf4a582756b057d3c1ba07a0..c5eaf828d358cd8d027ccde7ccea89417a9114d6 100644 (file)
@@ -119,6 +119,10 @@ LDLIBS += -lm
 LDLIBS += -lrt
 endif
 
+ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
+LDLIBS += -lpcap
+endif
+
 LDLIBS += --start-group
 
 ifeq ($(CONFIG_RTE_LIBRTE_KVARGS),y)
@@ -207,7 +211,7 @@ LDLIBS += -lrte_pmd_ring
 endif
 
 ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
-LDLIBS += -lrte_pmd_pcap -lpcap
+LDLIBS += -lrte_pmd_pcap
 endif
 
 ifeq ($(CONFIG_RTE_LIBRTE_PMD_AF_PACKET),y)