diff --git a/xtask/src/build_ebpf.rs b/xtask/src/build_ebpf.rs index da4dc13..85facdc 100644 --- a/xtask/src/build_ebpf.rs +++ b/xtask/src/build_ebpf.rs @@ -32,8 +32,10 @@ impl std::fmt::Display for Architecture { #[derive(StructOpt)] pub struct Options { + /// Set the endianness of the BPF target #[structopt(default_value = "bpfel-unknown-none", long)] pub target: Architecture, + /// Build the release target #[structopt(long)] pub release: bool, }