Add sample for adding simple drop program to link
[deliverable/linux.git] / samples / bpf / Makefile
1 # kbuild trick to avoid linker error. Can be omitted if a module is built.
2 obj- := dummy.o
3
4 # List of programs to build
5 hostprogs-y := test_verifier test_maps
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 += trace_output
18 hostprogs-y += lathist
19 hostprogs-y += offwaketime
20 hostprogs-y += spintest
21 hostprogs-y += map_perf_test
22 hostprogs-y += test_overhead
23 hostprogs-y += test_cgrp2_array_pin
24 hostprogs-y += xdp1
25
26 test_verifier-objs := test_verifier.o libbpf.o
27 test_maps-objs := test_maps.o libbpf.o
28 sock_example-objs := sock_example.o libbpf.o
29 fds_example-objs := bpf_load.o libbpf.o fds_example.o
30 sockex1-objs := bpf_load.o libbpf.o sockex1_user.o
31 sockex2-objs := bpf_load.o libbpf.o sockex2_user.o
32 sockex3-objs := bpf_load.o libbpf.o sockex3_user.o
33 tracex1-objs := bpf_load.o libbpf.o tracex1_user.o
34 tracex2-objs := bpf_load.o libbpf.o tracex2_user.o
35 tracex3-objs := bpf_load.o libbpf.o tracex3_user.o
36 tracex4-objs := bpf_load.o libbpf.o tracex4_user.o
37 tracex5-objs := bpf_load.o libbpf.o tracex5_user.o
38 tracex6-objs := bpf_load.o libbpf.o tracex6_user.o
39 trace_output-objs := bpf_load.o libbpf.o trace_output_user.o
40 lathist-objs := bpf_load.o libbpf.o lathist_user.o
41 offwaketime-objs := bpf_load.o libbpf.o offwaketime_user.o
42 spintest-objs := bpf_load.o libbpf.o spintest_user.o
43 map_perf_test-objs := bpf_load.o libbpf.o map_perf_test_user.o
44 test_overhead-objs := bpf_load.o libbpf.o test_overhead_user.o
45 test_cgrp2_array_pin-objs := libbpf.o test_cgrp2_array_pin.o
46 xdp1-objs := bpf_load.o libbpf.o xdp1_user.o
47
48 # Tell kbuild to always build the programs
49 always := $(hostprogs-y)
50 always += sockex1_kern.o
51 always += sockex2_kern.o
52 always += sockex3_kern.o
53 always += tracex1_kern.o
54 always += tracex2_kern.o
55 always += tracex3_kern.o
56 always += tracex4_kern.o
57 always += tracex5_kern.o
58 always += tracex6_kern.o
59 always += trace_output_kern.o
60 always += tcbpf1_kern.o
61 always += lathist_kern.o
62 always += offwaketime_kern.o
63 always += spintest_kern.o
64 always += map_perf_test_kern.o
65 always += test_overhead_tp_kern.o
66 always += test_overhead_kprobe_kern.o
67 always += parse_varlen.o parse_simple.o parse_ldabs.o
68 always += test_cgrp2_tc_kern.o
69 always += xdp1_kern.o
70
71 HOSTCFLAGS += -I$(objtree)/usr/include
72
73 HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable
74 HOSTLOADLIBES_fds_example += -lelf
75 HOSTLOADLIBES_sockex1 += -lelf
76 HOSTLOADLIBES_sockex2 += -lelf
77 HOSTLOADLIBES_sockex3 += -lelf
78 HOSTLOADLIBES_tracex1 += -lelf
79 HOSTLOADLIBES_tracex2 += -lelf
80 HOSTLOADLIBES_tracex3 += -lelf
81 HOSTLOADLIBES_tracex4 += -lelf -lrt
82 HOSTLOADLIBES_tracex5 += -lelf
83 HOSTLOADLIBES_tracex6 += -lelf
84 HOSTLOADLIBES_trace_output += -lelf -lrt
85 HOSTLOADLIBES_lathist += -lelf
86 HOSTLOADLIBES_offwaketime += -lelf
87 HOSTLOADLIBES_spintest += -lelf
88 HOSTLOADLIBES_map_perf_test += -lelf -lrt
89 HOSTLOADLIBES_test_overhead += -lelf -lrt
90 HOSTLOADLIBES_xdp1 += -lelf
91
92 # Allows pointing LLC/CLANG to a LLVM backend with bpf support, redefine on cmdline:
93 # make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang
94 LLC ?= llc
95 CLANG ?= clang
96
97 # Trick to allow make to be run from this directory
98 all:
99 $(MAKE) -C ../../ $$PWD/
100
101 clean:
102 $(MAKE) -C ../../ M=$$PWD clean
103 @rm -f *~
104
105 # Verify LLVM compiler tools are available and bpf target is supported by llc
106 .PHONY: verify_cmds verify_target_bpf $(CLANG) $(LLC)
107
108 verify_cmds: $(CLANG) $(LLC)
109 @for TOOL in $^ ; do \
110 if ! (which -- "$${TOOL}" > /dev/null 2>&1); then \
111 echo "*** ERROR: Cannot find LLVM tool $${TOOL}" ;\
112 exit 1; \
113 else true; fi; \
114 done
115
116 verify_target_bpf: verify_cmds
117 @if ! (${LLC} -march=bpf -mattr=help > /dev/null 2>&1); then \
118 echo "*** ERROR: LLVM (${LLC}) does not support 'bpf' target" ;\
119 echo " NOTICE: LLVM version >= 3.7.1 required" ;\
120 exit 2; \
121 else true; fi
122
123 $(src)/*.c: verify_target_bpf
124
125 # asm/sysreg.h - inline assembly used by it is incompatible with llvm.
126 # But, there is no easy way to fix it, so just exclude it since it is
127 # useless for BPF samples.
128 $(obj)/%.o: $(src)/%.c
129 $(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) \
130 -D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \
131 -Wno-compare-distinct-pointer-types \
132 -O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@
This page took 0.041647 seconds and 5 git commands to generate.