Skip to content
Snippets Groups Projects

wr.c

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Que Le

    This (spaghetti, smell, amateur) code is a runnable example of a receiver-DPDK-application. How to compile and run it:

    • export RTE_SDK=<here-is-your-DPDK-root-folder>
    • export RTE_TARGET=x86_64-native-linuxapp-gcc
    • Create file name wr.c in path `````` with content is this snippet.
    • Create a makefile file with `````` with this content:
    # SPDX-License-Identifier: BSD-3-Clause
    # Copyright(c) 2010-2014 Intel Corporation
    
    ifeq ($(RTE_SDK),)
    $(error "Please define RTE_SDK environment variable")
    endif
    
    # Default target, can be overridden by command line or environment
    RTE_TARGET ?= x86_64-native-linuxapp-gcc
    
    include $(RTE_SDK)/mk/rte.vars.mk
    
    # binary name
    APP = r
    
    # all source are stored in SRCS-y
    SRCS-y := wr.c mp_commands.c
    
    CFLAGS += -O3
    CFLAGS += -lpthread
    CFLAGS += $(WERROR_FLAGS)
    
    include $(RTE_SDK)/mk/rte.extapp.mk
    • Compile with make -f r.mk.
    snippetfile1.txt 12.16 KiB
    0% or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment