Makefile 6.1 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 += test_cgrp2_attach2
27
hostprogs-y += test_cgrp2_sock
28
hostprogs-y += test_cgrp2_sock2
29
hostprogs-y += xdp1
30
hostprogs-y += xdp2
31
hostprogs-y += test_current_task_under_cgroup
32
hostprogs-y += trace_event
33
hostprogs-y += sampleip
34
hostprogs-y += tc_l2_redirect
35
hostprogs-y += lwt_len_hist
36

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

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

HOSTCFLAGS += -I$(objtree)/usr/include
A
Alexei Starovoitov 已提交
104
HOSTCFLAGS += -I$(srctree)/tools/testing/selftests/bpf/
105 106

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

133 134
# 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
135
LLC ?= llc
136
CLANG ?= clang
137

138 139 140 141 142 143 144 145
# Trick to allow make to be run from this directory
all:
	$(MAKE) -C ../../ $$PWD/

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

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

149 150 151 152 153 154 155
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
156

157
verify_target_bpf: verify_cmds
158 159 160 161 162 163 164 165
	@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

166 167
# 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
168
# useless for BPF samples.
169
$(obj)/%.o: $(src)/%.c
170
	$(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) \
171
		-D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \
172
		-Wno-compare-distinct-pointer-types \
173 174
		-Wno-gnu-variable-sized-type-not-at-end \
		-Wno-address-of-packed-member -Wno-tautological-compare \
175
		-O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@