mirror of
https://github.com/xdp-project/bpf-examples.git
synced 2024-05-06 15:54:53 +00:00
MTU-tests: iproute2 'tc' tool doesn't understand BTF debug info
It still works when loading, but results in a huge warning which is really annoying. Add a Makefile hack to strip the object file. Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
This commit is contained in:
@@ -7,3 +7,11 @@ EXTRA_DEPS := encap.h
|
|||||||
LIB_DIR = ../lib
|
LIB_DIR = ../lib
|
||||||
|
|
||||||
include $(LIB_DIR)/common.mk
|
include $(LIB_DIR)/common.mk
|
||||||
|
|
||||||
|
# The iproute2 'tc' tool doesn't understand BTF debug info
|
||||||
|
# use llvm-strip to remove this debug info from object file
|
||||||
|
.PHONY: strip_tc_obj
|
||||||
|
strip_tc_obj: tc_bpf_inc_pkt_size.o
|
||||||
|
$(Q) llvm-strip $?
|
||||||
|
|
||||||
|
all: strip_tc_obj
|
||||||
|
Reference in New Issue
Block a user