From ee77866a16c1317d7a49f174ec4363488b03b563 Mon Sep 17 00:00:00 2001 From: William Findlay Date: Mon, 8 Nov 2021 22:48:52 -0500 Subject: [PATCH] xtask/build_ebpf: document flags --- xtask/src/build_ebpf.rs | 2 ++ 1 file changed, 2 insertions(+) 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, }