samples: bpf: Fix xdp_sample_user.o linking with Clang
[platform/kernel/linux-rpi.git] / samples / bpf / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2
3 BPF_SAMPLES_PATH ?= $(abspath $(srctree)/$(src))
4 TOOLS_PATH := $(BPF_SAMPLES_PATH)/../../tools
5
6 # List of programs to build
7 tprogs-y := test_lru_dist
8 tprogs-y += sock_example
9 tprogs-y += fds_example
10 tprogs-y += sockex1
11 tprogs-y += sockex2
12 tprogs-y += sockex3
13 tprogs-y += tracex1
14 tprogs-y += tracex2
15 tprogs-y += tracex3
16 tprogs-y += tracex4
17 tprogs-y += tracex5
18 tprogs-y += tracex6
19 tprogs-y += tracex7
20 tprogs-y += test_probe_write_user
21 tprogs-y += trace_output
22 tprogs-y += lathist
23 tprogs-y += offwaketime
24 tprogs-y += spintest
25 tprogs-y += map_perf_test
26 tprogs-y += test_overhead
27 tprogs-y += test_cgrp2_array_pin
28 tprogs-y += test_cgrp2_attach
29 tprogs-y += test_cgrp2_sock
30 tprogs-y += test_cgrp2_sock2
31 tprogs-y += xdp1
32 tprogs-y += xdp2
33 tprogs-y += xdp_router_ipv4
34 tprogs-y += test_current_task_under_cgroup
35 tprogs-y += trace_event
36 tprogs-y += sampleip
37 tprogs-y += tc_l2_redirect
38 tprogs-y += lwt_len_hist
39 tprogs-y += xdp_tx_iptunnel
40 tprogs-y += test_map_in_map
41 tprogs-y += per_socket_stats_example
42 tprogs-y += xdp_rxq_info
43 tprogs-y += syscall_tp
44 tprogs-y += cpustat
45 tprogs-y += xdp_adjust_tail
46 tprogs-y += xdpsock
47 tprogs-y += xdpsock_ctrl_proc
48 tprogs-y += xsk_fwd
49 tprogs-y += xdp_fwd
50 tprogs-y += task_fd_query
51 tprogs-y += xdp_sample_pkts
52 tprogs-y += ibumad
53 tprogs-y += hbm
54
55 tprogs-y += xdp_redirect_cpu
56 tprogs-y += xdp_redirect_map_multi
57 tprogs-y += xdp_redirect_map
58 tprogs-y += xdp_redirect
59 tprogs-y += xdp_monitor
60
61 # Libbpf dependencies
62 LIBBPF_SRC = $(TOOLS_PATH)/lib/bpf
63 LIBBPF_OUTPUT = $(abspath $(BPF_SAMPLES_PATH))/libbpf
64 LIBBPF_DESTDIR = $(LIBBPF_OUTPUT)
65 LIBBPF_INCLUDE = $(LIBBPF_DESTDIR)/include
66 LIBBPF = $(LIBBPF_OUTPUT)/libbpf.a
67
68 CGROUP_HELPERS := ../../tools/testing/selftests/bpf/cgroup_helpers.o
69 TRACE_HELPERS := ../../tools/testing/selftests/bpf/trace_helpers.o
70 XDP_SAMPLE := xdp_sample_user.o
71
72 fds_example-objs := fds_example.o
73 sockex1-objs := sockex1_user.o
74 sockex2-objs := sockex2_user.o
75 sockex3-objs := sockex3_user.o
76 tracex1-objs := tracex1_user.o $(TRACE_HELPERS)
77 tracex2-objs := tracex2_user.o
78 tracex3-objs := tracex3_user.o
79 tracex4-objs := tracex4_user.o
80 tracex5-objs := tracex5_user.o $(TRACE_HELPERS)
81 tracex6-objs := tracex6_user.o
82 tracex7-objs := tracex7_user.o
83 test_probe_write_user-objs := test_probe_write_user_user.o
84 trace_output-objs := trace_output_user.o
85 lathist-objs := lathist_user.o
86 offwaketime-objs := offwaketime_user.o $(TRACE_HELPERS)
87 spintest-objs := spintest_user.o $(TRACE_HELPERS)
88 map_perf_test-objs := map_perf_test_user.o
89 test_overhead-objs := test_overhead_user.o
90 test_cgrp2_array_pin-objs := test_cgrp2_array_pin.o
91 test_cgrp2_attach-objs := test_cgrp2_attach.o
92 test_cgrp2_sock-objs := test_cgrp2_sock.o
93 test_cgrp2_sock2-objs := test_cgrp2_sock2.o
94 xdp1-objs := xdp1_user.o
95 # reuse xdp1 source intentionally
96 xdp2-objs := xdp1_user.o
97 xdp_router_ipv4-objs := xdp_router_ipv4_user.o
98 test_current_task_under_cgroup-objs := $(CGROUP_HELPERS) \
99                                        test_current_task_under_cgroup_user.o
100 trace_event-objs := trace_event_user.o $(TRACE_HELPERS)
101 sampleip-objs := sampleip_user.o $(TRACE_HELPERS)
102 tc_l2_redirect-objs := tc_l2_redirect_user.o
103 lwt_len_hist-objs := lwt_len_hist_user.o
104 xdp_tx_iptunnel-objs := xdp_tx_iptunnel_user.o
105 test_map_in_map-objs := test_map_in_map_user.o
106 per_socket_stats_example-objs := cookie_uid_helper_example.o
107 xdp_rxq_info-objs := xdp_rxq_info_user.o
108 syscall_tp-objs := syscall_tp_user.o
109 cpustat-objs := cpustat_user.o
110 xdp_adjust_tail-objs := xdp_adjust_tail_user.o
111 xdpsock-objs := xdpsock_user.o
112 xdpsock_ctrl_proc-objs := xdpsock_ctrl_proc.o
113 xsk_fwd-objs := xsk_fwd.o
114 xdp_fwd-objs := xdp_fwd_user.o
115 task_fd_query-objs := task_fd_query_user.o $(TRACE_HELPERS)
116 xdp_sample_pkts-objs := xdp_sample_pkts_user.o
117 ibumad-objs := ibumad_user.o
118 hbm-objs := hbm.o $(CGROUP_HELPERS)
119
120 xdp_redirect_map_multi-objs := xdp_redirect_map_multi_user.o $(XDP_SAMPLE)
121 xdp_redirect_cpu-objs := xdp_redirect_cpu_user.o $(XDP_SAMPLE)
122 xdp_redirect_map-objs := xdp_redirect_map_user.o $(XDP_SAMPLE)
123 xdp_redirect-objs := xdp_redirect_user.o $(XDP_SAMPLE)
124 xdp_monitor-objs := xdp_monitor_user.o $(XDP_SAMPLE)
125
126 # Tell kbuild to always build the programs
127 always-y := $(tprogs-y)
128 always-y += sockex1_kern.o
129 always-y += sockex2_kern.o
130 always-y += sockex3_kern.o
131 always-y += tracex1_kern.o
132 always-y += tracex2_kern.o
133 always-y += tracex3_kern.o
134 always-y += tracex4_kern.o
135 always-y += tracex5_kern.o
136 always-y += tracex6_kern.o
137 always-y += tracex7_kern.o
138 always-y += sock_flags_kern.o
139 always-y += test_probe_write_user_kern.o
140 always-y += trace_output_kern.o
141 always-y += tcbpf1_kern.o
142 always-y += tc_l2_redirect_kern.o
143 always-y += lathist_kern.o
144 always-y += offwaketime_kern.o
145 always-y += spintest_kern.o
146 always-y += map_perf_test_kern.o
147 always-y += test_overhead_tp_kern.o
148 always-y += test_overhead_raw_tp_kern.o
149 always-y += test_overhead_kprobe_kern.o
150 always-y += parse_varlen.o parse_simple.o parse_ldabs.o
151 always-y += test_cgrp2_tc_kern.o
152 always-y += xdp1_kern.o
153 always-y += xdp2_kern.o
154 always-y += xdp_router_ipv4_kern.o
155 always-y += test_current_task_under_cgroup_kern.o
156 always-y += trace_event_kern.o
157 always-y += sampleip_kern.o
158 always-y += lwt_len_hist_kern.o
159 always-y += xdp_tx_iptunnel_kern.o
160 always-y += test_map_in_map_kern.o
161 always-y += tcp_synrto_kern.o
162 always-y += tcp_rwnd_kern.o
163 always-y += tcp_bufs_kern.o
164 always-y += tcp_cong_kern.o
165 always-y += tcp_iw_kern.o
166 always-y += tcp_clamp_kern.o
167 always-y += tcp_basertt_kern.o
168 always-y += tcp_tos_reflect_kern.o
169 always-y += tcp_dumpstats_kern.o
170 always-y += xdp_rxq_info_kern.o
171 always-y += xdp2skb_meta_kern.o
172 always-y += syscall_tp_kern.o
173 always-y += cpustat_kern.o
174 always-y += xdp_adjust_tail_kern.o
175 always-y += xdp_fwd_kern.o
176 always-y += task_fd_query_kern.o
177 always-y += xdp_sample_pkts_kern.o
178 always-y += ibumad_kern.o
179 always-y += hbm_out_kern.o
180 always-y += hbm_edt_kern.o
181 always-y += xdpsock_kern.o
182
183 ifeq ($(ARCH), arm)
184 # Strip all except -D__LINUX_ARM_ARCH__ option needed to handle linux
185 # headers when arm instruction set identification is requested.
186 ARM_ARCH_SELECTOR := $(filter -D__LINUX_ARM_ARCH__%, $(KBUILD_CFLAGS))
187 BPF_EXTRA_CFLAGS := $(ARM_ARCH_SELECTOR)
188 TPROGS_CFLAGS += $(ARM_ARCH_SELECTOR)
189 endif
190
191 ifeq ($(ARCH), mips)
192 TPROGS_CFLAGS += -D__SANE_USERSPACE_TYPES__
193 ifdef CONFIG_MACH_LOONGSON64
194 BPF_EXTRA_CFLAGS += -I$(srctree)/arch/mips/include/asm/mach-loongson64
195 BPF_EXTRA_CFLAGS += -I$(srctree)/arch/mips/include/asm/mach-generic
196 endif
197 endif
198
199 TPROGS_CFLAGS += -Wall -O2
200 TPROGS_CFLAGS += -Wmissing-prototypes
201 TPROGS_CFLAGS += -Wstrict-prototypes
202
203 TPROGS_CFLAGS += -I$(objtree)/usr/include
204 TPROGS_CFLAGS += -I$(srctree)/tools/testing/selftests/bpf/
205 TPROGS_CFLAGS += -I$(LIBBPF_INCLUDE)
206 TPROGS_CFLAGS += -I$(srctree)/tools/include
207 TPROGS_CFLAGS += -I$(srctree)/tools/perf
208 TPROGS_CFLAGS += -DHAVE_ATTR_TEST=0
209
210 ifdef SYSROOT
211 TPROGS_CFLAGS += --sysroot=$(SYSROOT)
212 TPROGS_LDFLAGS := -L$(SYSROOT)/usr/lib
213 endif
214
215 TPROGS_LDLIBS                   += $(LIBBPF) -lelf -lz
216 TPROGLDLIBS_xdp_monitor         += -lm
217 TPROGLDLIBS_xdp_redirect        += -lm
218 TPROGLDLIBS_xdp_redirect_cpu    += -lm
219 TPROGLDLIBS_xdp_redirect_map    += -lm
220 TPROGLDLIBS_xdp_redirect_map_multi += -lm
221 TPROGLDLIBS_tracex4             += -lrt
222 TPROGLDLIBS_trace_output        += -lrt
223 TPROGLDLIBS_map_perf_test       += -lrt
224 TPROGLDLIBS_test_overhead       += -lrt
225 TPROGLDLIBS_xdpsock             += -pthread -lcap
226 TPROGLDLIBS_xsk_fwd             += -pthread
227
228 # Allows pointing LLC/CLANG to a LLVM backend with bpf support, redefine on cmdline:
229 # make M=samples/bpf LLC=~/git/llvm-project/llvm/build/bin/llc CLANG=~/git/llvm-project/llvm/build/bin/clang
230 LLC ?= llc
231 CLANG ?= clang
232 OPT ?= opt
233 LLVM_DIS ?= llvm-dis
234 LLVM_OBJCOPY ?= llvm-objcopy
235 BTF_PAHOLE ?= pahole
236
237 # Detect that we're cross compiling and use the cross compiler
238 ifdef CROSS_COMPILE
239 CLANG_ARCH_ARGS = --target=$(notdir $(CROSS_COMPILE:%-=%))
240 endif
241
242 # Don't evaluate probes and warnings if we need to run make recursively
243 ifneq ($(src),)
244 HDR_PROBE := $(shell printf "\#include <linux/types.h>\n struct list_head { int a; }; int main() { return 0; }" | \
245         $(CC) $(TPROGS_CFLAGS) $(TPROGS_LDFLAGS) -x c - \
246         -o /dev/null 2>/dev/null && echo okay)
247
248 ifeq ($(HDR_PROBE),)
249 $(warning WARNING: Detected possible issues with include path.)
250 $(warning WARNING: Please install kernel headers locally (make headers_install).)
251 endif
252
253 BTF_LLC_PROBE := $(shell $(LLC) -march=bpf -mattr=help 2>&1 | grep dwarfris)
254 BTF_PAHOLE_PROBE := $(shell $(BTF_PAHOLE) --help 2>&1 | grep BTF)
255 BTF_OBJCOPY_PROBE := $(shell $(LLVM_OBJCOPY) --help 2>&1 | grep -i 'usage.*llvm')
256 BTF_LLVM_PROBE := $(shell echo "int main() { return 0; }" | \
257                           $(CLANG) -target bpf -O2 -g -c -x c - -o ./llvm_btf_verify.o; \
258                           readelf -S ./llvm_btf_verify.o | grep BTF; \
259                           /bin/rm -f ./llvm_btf_verify.o)
260
261 BPF_EXTRA_CFLAGS += -fno-stack-protector
262 ifneq ($(BTF_LLVM_PROBE),)
263         BPF_EXTRA_CFLAGS += -g
264 else
265 ifneq ($(and $(BTF_LLC_PROBE),$(BTF_PAHOLE_PROBE),$(BTF_OBJCOPY_PROBE)),)
266         BPF_EXTRA_CFLAGS += -g
267         LLC_FLAGS += -mattr=dwarfris
268         DWARF2BTF = y
269 endif
270 endif
271 endif
272
273 # Trick to allow make to be run from this directory
274 all:
275         $(MAKE) -C ../../ M=$(CURDIR) BPF_SAMPLES_PATH=$(CURDIR)
276
277 clean:
278         $(MAKE) -C ../../ M=$(CURDIR) clean
279         @find $(CURDIR) -type f -name '*~' -delete
280         @$(RM) -r $(CURDIR)/libbpf $(CURDIR)/bpftool
281
282 $(LIBBPF): FORCE | $(LIBBPF_OUTPUT)
283 # Fix up variables inherited from Kbuild that tools/ build system won't like
284         $(MAKE) -C $(LIBBPF_SRC) RM='rm -rf' EXTRA_CFLAGS="$(TPROGS_CFLAGS)" \
285                 LDFLAGS=$(TPROGS_LDFLAGS) srctree=$(BPF_SAMPLES_PATH)/../../ \
286                 O= OUTPUT=$(LIBBPF_OUTPUT)/ DESTDIR=$(LIBBPF_DESTDIR) prefix= \
287                 $@ install_headers
288
289 BPFTOOLDIR := $(TOOLS_PATH)/bpf/bpftool
290 BPFTOOL_OUTPUT := $(abspath $(BPF_SAMPLES_PATH))/bpftool
291 BPFTOOL := $(BPFTOOL_OUTPUT)/bpftool
292 $(BPFTOOL): $(LIBBPF) $(wildcard $(BPFTOOLDIR)/*.[ch] $(BPFTOOLDIR)/Makefile) | $(BPFTOOL_OUTPUT)
293             $(MAKE) -C $(BPFTOOLDIR) srctree=$(BPF_SAMPLES_PATH)/../../ \
294                 OUTPUT=$(BPFTOOL_OUTPUT)/ \
295                 LIBBPF_OUTPUT=$(LIBBPF_OUTPUT)/ \
296                 LIBBPF_DESTDIR=$(LIBBPF_DESTDIR)/
297
298 $(LIBBPF_OUTPUT) $(BPFTOOL_OUTPUT):
299         $(call msg,MKDIR,$@)
300         $(Q)mkdir -p $@
301
302 $(obj)/syscall_nrs.h:   $(obj)/syscall_nrs.s FORCE
303         $(call filechk,offsets,__SYSCALL_NRS_H__)
304
305 targets += syscall_nrs.s
306 clean-files += syscall_nrs.h
307
308 FORCE:
309
310
311 # Verify LLVM compiler tools are available and bpf target is supported by llc
312 .PHONY: verify_cmds verify_target_bpf $(CLANG) $(LLC)
313
314 verify_cmds: $(CLANG) $(LLC)
315         @for TOOL in $^ ; do \
316                 if ! (which -- "$${TOOL}" > /dev/null 2>&1); then \
317                         echo "*** ERROR: Cannot find LLVM tool $${TOOL}" ;\
318                         exit 1; \
319                 else true; fi; \
320         done
321
322 verify_target_bpf: verify_cmds
323         @if ! (${LLC} -march=bpf -mattr=help > /dev/null 2>&1); then \
324                 echo "*** ERROR: LLVM (${LLC}) does not support 'bpf' target" ;\
325                 echo "   NOTICE: LLVM version >= 3.7.1 required" ;\
326                 exit 2; \
327         else true; fi
328
329 $(BPF_SAMPLES_PATH)/*.c: verify_target_bpf $(LIBBPF)
330 $(src)/*.c: verify_target_bpf $(LIBBPF)
331
332 libbpf_hdrs: $(LIBBPF)
333 $(obj)/$(TRACE_HELPERS) $(obj)/$(CGROUP_HELPERS) $(obj)/$(XDP_SAMPLE): | libbpf_hdrs
334
335 .PHONY: libbpf_hdrs
336
337 $(obj)/xdp_redirect_cpu_user.o: $(obj)/xdp_redirect_cpu.skel.h
338 $(obj)/xdp_redirect_map_multi_user.o: $(obj)/xdp_redirect_map_multi.skel.h
339 $(obj)/xdp_redirect_map_user.o: $(obj)/xdp_redirect_map.skel.h
340 $(obj)/xdp_redirect_user.o: $(obj)/xdp_redirect.skel.h
341 $(obj)/xdp_monitor_user.o: $(obj)/xdp_monitor.skel.h
342
343 $(obj)/tracex5_kern.o: $(obj)/syscall_nrs.h
344 $(obj)/hbm_out_kern.o: $(src)/hbm.h $(src)/hbm_kern.h
345 $(obj)/hbm.o: $(src)/hbm.h
346 $(obj)/hbm_edt_kern.o: $(src)/hbm.h $(src)/hbm_kern.h
347
348 # Override includes for xdp_sample_user.o because $(srctree)/usr/include in
349 # TPROGS_CFLAGS causes conflicts
350 XDP_SAMPLE_CFLAGS += -Wall -O2 \
351                      -I$(src)/../../tools/include \
352                      -I$(src)/../../tools/include/uapi \
353                      -I$(LIBBPF_INCLUDE) \
354                      -I$(src)/../../tools/testing/selftests/bpf
355
356 $(obj)/$(XDP_SAMPLE): TPROGS_CFLAGS = $(XDP_SAMPLE_CFLAGS)
357 $(obj)/$(XDP_SAMPLE): $(src)/xdp_sample_user.h $(src)/xdp_sample_shared.h
358
359 -include $(BPF_SAMPLES_PATH)/Makefile.target
360
361 VMLINUX_BTF_PATHS ?= $(abspath $(if $(O),$(O)/vmlinux))                         \
362                      $(abspath $(if $(KBUILD_OUTPUT),$(KBUILD_OUTPUT)/vmlinux)) \
363                      $(abspath ./vmlinux)
364 VMLINUX_BTF ?= $(abspath $(firstword $(wildcard $(VMLINUX_BTF_PATHS))))
365
366 $(obj)/vmlinux.h: $(VMLINUX_BTF) $(BPFTOOL)
367 ifeq ($(VMLINUX_H),)
368         $(Q)$(BPFTOOL) btf dump file $(VMLINUX_BTF) format c > $@
369 else
370         $(Q)cp "$(VMLINUX_H)" $@
371 endif
372
373 ifeq ($(VMLINUX_BTF),)
374         $(error Cannot find a vmlinux for VMLINUX_BTF at any of "$(VMLINUX_BTF_PATHS)",\
375                 build the kernel or set VMLINUX_BTF variable)
376 endif
377
378 clean-files += vmlinux.h
379
380 # Get Clang's default includes on this system, as opposed to those seen by
381 # '-target bpf'. This fixes "missing" files on some architectures/distros,
382 # such as asm/byteorder.h, asm/socket.h, asm/sockios.h, sys/cdefs.h etc.
383 #
384 # Use '-idirafter': Don't interfere with include mechanics except where the
385 # build would have failed anyways.
386 define get_sys_includes
387 $(shell $(1) -v -E - </dev/null 2>&1 \
388         | sed -n '/<...> search starts here:/,/End of search list./{ s| \(/.*\)|-idirafter \1|p }') \
389 $(shell $(1) -dM -E - </dev/null | grep '#define __riscv_xlen ' | sed 's/#define /-D/' | sed 's/ /=/')
390 endef
391
392 CLANG_SYS_INCLUDES = $(call get_sys_includes,$(CLANG))
393
394 $(obj)/xdp_redirect_cpu.bpf.o: $(obj)/xdp_sample.bpf.o
395 $(obj)/xdp_redirect_map_multi.bpf.o: $(obj)/xdp_sample.bpf.o
396 $(obj)/xdp_redirect_map.bpf.o: $(obj)/xdp_sample.bpf.o
397 $(obj)/xdp_redirect.bpf.o: $(obj)/xdp_sample.bpf.o
398 $(obj)/xdp_monitor.bpf.o: $(obj)/xdp_sample.bpf.o
399
400 $(obj)/%.bpf.o: $(src)/%.bpf.c $(obj)/vmlinux.h $(src)/xdp_sample.bpf.h $(src)/xdp_sample_shared.h
401         @echo "  CLANG-BPF " $@
402         $(Q)$(CLANG) -g -O2 -target bpf -D__TARGET_ARCH_$(SRCARCH) \
403                 -Wno-compare-distinct-pointer-types -I$(srctree)/include \
404                 -I$(srctree)/samples/bpf -I$(srctree)/tools/include \
405                 -I$(LIBBPF_INCLUDE) $(CLANG_SYS_INCLUDES) \
406                 -c $(filter %.bpf.c,$^) -o $@
407
408 LINKED_SKELS := xdp_redirect_cpu.skel.h xdp_redirect_map_multi.skel.h \
409                 xdp_redirect_map.skel.h xdp_redirect.skel.h xdp_monitor.skel.h
410 clean-files += $(LINKED_SKELS)
411
412 xdp_redirect_cpu.skel.h-deps := xdp_redirect_cpu.bpf.o xdp_sample.bpf.o
413 xdp_redirect_map_multi.skel.h-deps := xdp_redirect_map_multi.bpf.o xdp_sample.bpf.o
414 xdp_redirect_map.skel.h-deps := xdp_redirect_map.bpf.o xdp_sample.bpf.o
415 xdp_redirect.skel.h-deps := xdp_redirect.bpf.o xdp_sample.bpf.o
416 xdp_monitor.skel.h-deps := xdp_monitor.bpf.o xdp_sample.bpf.o
417
418 LINKED_BPF_SRCS := $(patsubst %.bpf.o,%.bpf.c,$(foreach skel,$(LINKED_SKELS),$($(skel)-deps)))
419
420 BPF_SRCS_LINKED := $(notdir $(wildcard $(src)/*.bpf.c))
421 BPF_OBJS_LINKED := $(patsubst %.bpf.c,$(obj)/%.bpf.o, $(BPF_SRCS_LINKED))
422 BPF_SKELS_LINKED := $(addprefix $(obj)/,$(LINKED_SKELS))
423
424 $(BPF_SKELS_LINKED): $(BPF_OBJS_LINKED) $(BPFTOOL)
425         @echo "  BPF GEN-OBJ " $(@:.skel.h=)
426         $(Q)$(BPFTOOL) gen object $(@:.skel.h=.lbpf.o) $(addprefix $(obj)/,$($(@F)-deps))
427         @echo "  BPF GEN-SKEL" $(@:.skel.h=)
428         $(Q)$(BPFTOOL) gen skeleton $(@:.skel.h=.lbpf.o) name $(notdir $(@:.skel.h=)) > $@
429
430 # asm/sysreg.h - inline assembly used by it is incompatible with llvm.
431 # But, there is no easy way to fix it, so just exclude it since it is
432 # useless for BPF samples.
433 # below we use long chain of commands, clang | opt | llvm-dis | llc,
434 # to generate final object file. 'clang' compiles the source into IR
435 # with native target, e.g., x64, arm64, etc. 'opt' does bpf CORE IR builtin
436 # processing (llvm12) and IR optimizations. 'llvm-dis' converts
437 # 'opt' output to IR, and finally 'llc' generates bpf byte code.
438 $(obj)/%.o: $(src)/%.c
439         @echo "  CLANG-bpf " $@
440         $(Q)$(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(BPF_EXTRA_CFLAGS) \
441                 -I$(obj) -I$(srctree)/tools/testing/selftests/bpf/ \
442                 -I$(LIBBPF_INCLUDE) \
443                 -D__KERNEL__ -D__BPF_TRACING__ -Wno-unused-value -Wno-pointer-sign \
444                 -D__TARGET_ARCH_$(SRCARCH) -Wno-compare-distinct-pointer-types \
445                 -Wno-gnu-variable-sized-type-not-at-end \
446                 -Wno-address-of-packed-member -Wno-tautological-compare \
447                 -Wno-unknown-warning-option $(CLANG_ARCH_ARGS) \
448                 -fno-asynchronous-unwind-tables \
449                 -I$(srctree)/samples/bpf/ -include asm_goto_workaround.h \
450                 -O2 -emit-llvm -Xclang -disable-llvm-passes -c $< -o - | \
451                 $(OPT) -O2 -mtriple=bpf-pc-linux | $(LLVM_DIS) | \
452                 $(LLC) -march=bpf $(LLC_FLAGS) -filetype=obj -o $@
453 ifeq ($(DWARF2BTF),y)
454         $(BTF_PAHOLE) -J $@
455 endif