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