docs: fix common issues section of quickstart

This commit is contained in:
Pragyansh Chaturvedi
2026-01-25 13:31:21 +05:30
parent 9ff33229a0
commit 2840a5c101

View File

@ -229,6 +229,14 @@ If compilation fails:
* Check that `llc` is installed and in your PATH * Check that `llc` is installed and in your PATH
* Verify your Python syntax is correct * Verify your Python syntax is correct
* Ensure all imported types are from `ctypes` * Ensure all imported types are from `ctypes`
* In the worst case, compile object files manually using `compile_to_ir()` and `llc` to get detailed errors
### Verification Failure
If verification fails:
* Compile the object files using `compile()` function instead of loading directly
* Run `sudo check.sh check <bpf>.o` to get detailed verification output
## Next Steps ## Next Steps