Hello, I find that if -DNDEBUG
flag is added to the compile-options, the helloworld example will crash. After the modification, the CFLAGS
line in the Makefile file becomes
CFLAGS += -O -DNDEBUG -gdwarf-2 $(shell $(PKGCONF) --cflags libdpdk)
And when I running the helloworld
program, it will crashes or print many lines of unknown event: 00000000
.
Can you help look into the reason of it?