Add warning against production use

This commit is contained in:
varunrmallya
2025-09-11 02:39:31 +05:30
committed by GitHub
parent b64b5b2483
commit cfdc14137c

View File

@ -6,6 +6,8 @@
This is an LLVM IR generator for eBPF programs in Python. We use llvmlite to generate LLVM IR from pure Python. This is then compiled to LLVM object files, which can be loaded into the kernel for execution. We do not rely on BCC to do our compilation. This is an LLVM IR generator for eBPF programs in Python. We use llvmlite to generate LLVM IR from pure Python. This is then compiled to LLVM object files, which can be loaded into the kernel for execution. We do not rely on BCC to do our compilation.
# DO NOT USE IN PRODUCTION. IN DEVELOPMENT.
## Installation ## Installation
- Have `clang` installed. - Have `clang` installed.
- `pip install pythonbpf` - `pip install pythonbpf`