dpdk-pdump makes use of LIBRTE_PMD_PCAP for interfacing the ring to the device-queue pair. Updating Makefile to check for the same.
Signed-off-by: Vipin Varghese <vipin.vargh...@intel.com> --- app/pdump/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/pdump/Makefile b/app/pdump/Makefile index bd3c208..038a34f 100644 --- a/app/pdump/Makefile +++ b/app/pdump/Makefile @@ -3,6 +3,10 @@ include $(RTE_SDK)/mk/rte.vars.mk +ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),n) +$(error "Please enable CONFIG_RTE_LIBRTE_PMD_PCAP") +endif + ifeq ($(CONFIG_RTE_LIBRTE_PDUMP),y) APP = dpdk-pdump -- 1.9.1