DPDK usage discussions
 help / color / mirror / Atom feed
* [dpdk-users] Building a shared library that uses DPDK
@ 2018-02-15  0:06 Jeffrey Helt
  2018-02-15  1:08 ` Stephen Hemminger
  0 siblings, 1 reply; 4+ messages in thread
From: Jeffrey Helt @ 2018-02-15  0:06 UTC (permalink / raw)
  To: users

Hi,

I am attempting to build a shared library that uses DPDK, specifically that wraps the Linux socket API and backs it by shared memory DPDK shared memory regions. I built DPDK 17.11 with “CONFIG_RTE_BUILD_SHARED_LIB=y”. In my shared library directory, I am using the following Makefile:

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
SHARED = libshim.so

# all source are stored in SRCS-y
SRCS-y := wrap_socket.c

CFLAGS += -O3

include $(RTE_SDK)/mk/rte.extshared.mk

However, whenever I try to use my library, such as with "LD_PRELOAD=./build/lib/libshim.so ./test”, I receive "symbol lookup error: ./build/lib/libshim.so: undefined symbol: rte_eal_init”. What am I missing?

Thank you in advance for help!

Jeff

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-02-15 23:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-15  0:06 [dpdk-users] Building a shared library that uses DPDK Jeffrey Helt
2018-02-15  1:08 ` Stephen Hemminger
2018-02-15  2:34   ` Jeffrey Helt
2018-02-15 23:44     ` Jeffrey Helt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).