| commit | 835a50753579aa8368a08fca307e638723207768 | [log] [tgz] |
|---|---|---|
| author | Alexei Starovoitov <ast@kernel.org> | Wed Dec 03 20:14:30 2025 -0800 |
| committer | Alexei Starovoitov <ast@kernel.org> | Wed Dec 03 20:20:11 2025 -0800 |
| tree | 6919557c9a0f5d6407a5ee2967ce3d3cf611776e | |
| parent | 8f7aa3d3c7323f4ca2768a9e74ebbe359c4f8f88 [diff] |
selftests/bpf: Add -fms-extensions to bpf build flags
The kernel is now built with -fms-extensions, therefore
generated vmlinux.h contains types like:
struct slab {
..
struct freelist_counters;
};
Use -fms-extensions and -Wno-microsoft-anon-tag flags
to build bpf programs that #include "vmlinux.h"
Signed-off-by: Alexei Starovoitov <ast@kernel.org>