Makefile 1.7 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2

3
LIBDIR := ../../../lib
4
BPFDIR := $(LIBDIR)/bpf
5 6 7
APIDIR := ../../../include/uapi
GENDIR := ../../../../include/generated
GENHDR := $(GENDIR)/autoconf.h
8

9 10 11 12
ifneq ($(wildcard $(GENHDR)),)
  GENFLAGS := -DHAVE_GENHDR
endif

13
CFLAGS += -Wall -O2 -I$(APIDIR) -I$(LIBDIR) -I$(GENDIR) $(GENFLAGS) -I../../../include
D
David Miller 已提交
14
LDLIBS += -lcap -lelf -lrt
15

16
TEST_GEN_PROGS = test_verifier test_tag test_maps test_lru_map test_lpm_map test_progs \
17
	test_align test_verifier_log test_dev_cgroup
18

19
TEST_GEN_FILES = test_pkt_access.o test_xdp.o test_l4lb.o test_tcp_estats.o test_obj_id.o \
20
	test_pkt_md_access.o test_xdp_redirect.o test_xdp_meta.o sockmap_parse_prog.o     \
21
	sockmap_verdict_prog.o dev_cgroup.o sample_ret0.o test_tracepoint.o \
22
	test_l4lb_noinline.o test_xdp_noinline.o test_stacktrace_map.o
23

24 25
TEST_PROGS := test_kmod.sh test_xdp_redirect.sh test_xdp_meta.sh \
	test_offload.py
26

27 28
include ../lib.mk

29
BPFOBJ := $(OUTPUT)/libbpf.a $(OUTPUT)/cgroup_helpers.c
30 31

$(TEST_GEN_PROGS): $(BPFOBJ)
32

33
.PHONY: force
34 35 36 37 38

# force a rebuild of BPFOBJ when its dependencies are updated
force:

$(BPFOBJ): force
39
	$(MAKE) -C $(BPFDIR) OUTPUT=$(OUTPUT)/
40 41

CLANG ?= clang
42 43
LLC   ?= llc

44
PROBE := $(shell $(LLC) -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1)
45 46 47 48 49 50 51 52

# Let newer LLVM versions transparently probe the kernel for availability
# of full BPF instruction set.
ifeq ($(PROBE),)
  CPU ?= probe
else
  CPU ?= generic
endif
53

54 55 56 57
CLANG_FLAGS = -I. -I./include/uapi -I../../../include/uapi \
	      -Wno-compare-distinct-pointer-types

$(OUTPUT)/test_l4lb_noinline.o: CLANG_FLAGS += -fno-inline
58
$(OUTPUT)/test_xdp_noinline.o: CLANG_FLAGS += -fno-inline
59

60
%.o: %.c
61
	$(CLANG) $(CLANG_FLAGS) \
62 63
		 -O2 -target bpf -emit-llvm -c $< -o - |      \
	$(LLC) -march=bpf -mcpu=$(CPU) -filetype=obj -o $@