Makefile 5.6 KB
Newer Older
1 2 3 4
# kbuild trick to avoid linker error. Can be omitted if a module is built.
obj- := dummy.o

# List of programs to build
5
hostprogs-y := test_lru_dist
6
hostprogs-y += sock_example
7
hostprogs-y += fds_example
8
hostprogs-y += sockex1
9
hostprogs-y += sockex2
10
hostprogs-y += sockex3
11
hostprogs-y += tracex1
12
hostprogs-y += tracex2
13
hostprogs-y += tracex3
14
hostprogs-y += tracex4
15
hostprogs-y += tracex5
16
hostprogs-y += tracex6
17
hostprogs-y += test_probe_write_user
18
hostprogs-y += trace_output
D
Daniel Wagner 已提交
19
hostprogs-y += lathist
20
hostprogs-y += offwaketime
21
hostprogs-y += spintest
22
hostprogs-y += map_perf_test
23
hostprogs-y += test_overhead
24
hostprogs-y += test_cgrp2_array_pin
25
hostprogs-y += test_cgrp2_attach
26
hostprogs-y += xdp1
27
hostprogs-y += xdp2
28
hostprogs-y += test_current_task_under_cgroup
29
hostprogs-y += trace_event
30
hostprogs-y += sampleip
31
hostprogs-y += tc_l2_redirect
32
hostprogs-y += lwt_len_hist
33

34
test_lru_dist-objs := test_lru_dist.o libbpf.o
35
sock_example-objs := sock_example.o libbpf.o
36
fds_example-objs := bpf_load.o libbpf.o fds_example.o
37
sockex1-objs := bpf_load.o libbpf.o sockex1_user.o
38
sockex2-objs := bpf_load.o libbpf.o sockex2_user.o
39
sockex3-objs := bpf_load.o libbpf.o sockex3_user.o
40
tracex1-objs := bpf_load.o libbpf.o tracex1_user.o
41
tracex2-objs := bpf_load.o libbpf.o tracex2_user.o
42
tracex3-objs := bpf_load.o libbpf.o tracex3_user.o
43
tracex4-objs := bpf_load.o libbpf.o tracex4_user.o
44
tracex5-objs := bpf_load.o libbpf.o tracex5_user.o
45
tracex6-objs := bpf_load.o libbpf.o tracex6_user.o
46
test_probe_write_user-objs := bpf_load.o libbpf.o test_probe_write_user_user.o
47
trace_output-objs := bpf_load.o libbpf.o trace_output_user.o
D
Daniel Wagner 已提交
48
lathist-objs := bpf_load.o libbpf.o lathist_user.o
49
offwaketime-objs := bpf_load.o libbpf.o offwaketime_user.o
50
spintest-objs := bpf_load.o libbpf.o spintest_user.o
51
map_perf_test-objs := bpf_load.o libbpf.o map_perf_test_user.o
52
test_overhead-objs := bpf_load.o libbpf.o test_overhead_user.o
53
test_cgrp2_array_pin-objs := libbpf.o test_cgrp2_array_pin.o
54
test_cgrp2_attach-objs := libbpf.o test_cgrp2_attach.o
55
xdp1-objs := bpf_load.o libbpf.o xdp1_user.o
56 57
# reuse xdp1 source intentionally
xdp2-objs := bpf_load.o libbpf.o xdp1_user.o
58 59
test_current_task_under_cgroup-objs := bpf_load.o libbpf.o \
				       test_current_task_under_cgroup_user.o
60
trace_event-objs := bpf_load.o libbpf.o trace_event_user.o
61
sampleip-objs := bpf_load.o libbpf.o sampleip_user.o
62
tc_l2_redirect-objs := bpf_load.o libbpf.o tc_l2_redirect_user.o
63
lwt_len_hist-objs := bpf_load.o libbpf.o lwt_len_hist_user.o
64 65 66

# Tell kbuild to always build the programs
always := $(hostprogs-y)
67
always += sockex1_kern.o
68
always += sockex2_kern.o
69
always += sockex3_kern.o
70
always += tracex1_kern.o
71
always += tracex2_kern.o
72
always += tracex3_kern.o
73
always += tracex4_kern.o
74
always += tracex5_kern.o
75
always += tracex6_kern.o
76
always += test_probe_write_user_kern.o
77
always += trace_output_kern.o
78
always += tcbpf1_kern.o
79
always += tcbpf2_kern.o
80
always += tc_l2_redirect_kern.o
D
Daniel Wagner 已提交
81
always += lathist_kern.o
82
always += offwaketime_kern.o
83
always += spintest_kern.o
84
always += map_perf_test_kern.o
85 86
always += test_overhead_tp_kern.o
always += test_overhead_kprobe_kern.o
87
always += parse_varlen.o parse_simple.o parse_ldabs.o
88
always += test_cgrp2_tc_kern.o
89
always += xdp1_kern.o
90
always += xdp2_kern.o
91
always += test_current_task_under_cgroup_kern.o
92
always += trace_event_kern.o
93
always += sampleip_kern.o
94
always += lwt_len_hist_kern.o
95 96

HOSTCFLAGS += -I$(objtree)/usr/include
A
Alexei Starovoitov 已提交
97
HOSTCFLAGS += -I$(srctree)/tools/testing/selftests/bpf/
98 99

HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable
100
HOSTLOADLIBES_fds_example += -lelf
101
HOSTLOADLIBES_sockex1 += -lelf
102
HOSTLOADLIBES_sockex2 += -lelf
103
HOSTLOADLIBES_sockex3 += -lelf
104
HOSTLOADLIBES_tracex1 += -lelf
105
HOSTLOADLIBES_tracex2 += -lelf
106
HOSTLOADLIBES_tracex3 += -lelf
107
HOSTLOADLIBES_tracex4 += -lelf -lrt
108
HOSTLOADLIBES_tracex5 += -lelf
109
HOSTLOADLIBES_tracex6 += -lelf
110
HOSTLOADLIBES_test_probe_write_user += -lelf
111
HOSTLOADLIBES_trace_output += -lelf -lrt
D
Daniel Wagner 已提交
112
HOSTLOADLIBES_lathist += -lelf
113
HOSTLOADLIBES_offwaketime += -lelf
114
HOSTLOADLIBES_spintest += -lelf
115
HOSTLOADLIBES_map_perf_test += -lelf -lrt
116
HOSTLOADLIBES_test_overhead += -lelf -lrt
117
HOSTLOADLIBES_xdp1 += -lelf
118
HOSTLOADLIBES_xdp2 += -lelf
119
HOSTLOADLIBES_test_current_task_under_cgroup += -lelf
120
HOSTLOADLIBES_trace_event += -lelf
121
HOSTLOADLIBES_sampleip += -lelf
122
HOSTLOADLIBES_tc_l2_redirect += -l elf
123
HOSTLOADLIBES_lwt_len_hist += -l elf
124

125 126
# Allows pointing LLC/CLANG to a LLVM backend with bpf support, redefine on cmdline:
#  make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang
127
LLC ?= llc
128
CLANG ?= clang
129

130 131 132 133 134 135 136 137
# Trick to allow make to be run from this directory
all:
	$(MAKE) -C ../../ $$PWD/

clean:
	$(MAKE) -C ../../ M=$$PWD clean
	@rm -f *~

138 139
# Verify LLVM compiler tools are available and bpf target is supported by llc
.PHONY: verify_cmds verify_target_bpf $(CLANG) $(LLC)
140

141 142 143 144 145 146 147
verify_cmds: $(CLANG) $(LLC)
	@for TOOL in $^ ; do \
		if ! (which -- "$${TOOL}" > /dev/null 2>&1); then \
			echo "*** ERROR: Cannot find LLVM tool $${TOOL}" ;\
			exit 1; \
		else true; fi; \
	done
148

149
verify_target_bpf: verify_cmds
150 151 152 153 154 155 156 157
	@if ! (${LLC} -march=bpf -mattr=help > /dev/null 2>&1); then \
		echo "*** ERROR: LLVM (${LLC}) does not support 'bpf' target" ;\
		echo "   NOTICE: LLVM version >= 3.7.1 required" ;\
		exit 2; \
	else true; fi

$(src)/*.c: verify_target_bpf

158 159
# asm/sysreg.h - inline assembly used by it is incompatible with llvm.
# But, there is no easy way to fix it, so just exclude it since it is
160
# useless for BPF samples.
161
$(obj)/%.o: $(src)/%.c
162
	$(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) \
163
		-D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \
164
		-Wno-compare-distinct-pointer-types \
165
		-O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@