Makefile 5.4 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

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

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

HOSTCFLAGS += -I$(objtree)/usr/include
94 95

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

120 121
# 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
122
LLC ?= llc
123
CLANG ?= clang
124

125 126 127 128 129 130 131 132
# Trick to allow make to be run from this directory
all:
	$(MAKE) -C ../../ $$PWD/

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

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

136 137 138 139 140 141 142
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
143

144
verify_target_bpf: verify_cmds
145 146 147 148 149 150 151 152
	@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

153 154
# 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
155
# useless for BPF samples.
156
$(obj)/%.o: $(src)/%.c
157
	$(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) \
158
		-D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \
159
		-Wno-compare-distinct-pointer-types \
160
		-O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@