[Cilium] TroubleShooting
Trouble Shooting Guides for eBPF by Cilium
1. Compiling
1.1 Clang
1.1.1 'asm/types.h' file not found
Example Command:
Solution:
1.1.2 Dependency Problems
Example Error Message:
Solution:
Use vmlinux.h
for solving dependency issues with C code. The commands came from https://www.grant.pizza/blog/vmlinux-header/
Then #include vmlinux.h
instead of the dependency that you are using.
1.1.3 Top Level Declarator Error
Example Error Message:
Solution:
1.1.4 'bpf/*.h' file not found
Example Error Message:
Solution:
Last updated