From fb79f284e41627f7c1adbacca865984398db6e8a Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Mon, 28 Mar 2022 14:33:47 +0200 Subject: [PATCH] use release profile as build default --- xtask/src/run.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtask/src/run.rs b/xtask/src/run.rs index e717f98..eda24e7 100644 --- a/xtask/src/run.rs +++ b/xtask/src/run.rs @@ -10,8 +10,8 @@ pub struct Options { /// Set the endianness of the BPF target #[structopt(default_value = "bpfel-unknown-none", long)] pub bpf_target: Architecture, - /// Build profile for userspace program - #[structopt(default_value = "dev", long)] + /// Build profile for ebpf and userspace program + #[structopt(default_value = "release", long)] pub profile: String, /// The command used to wrap your application #[structopt(short, long, default_value = "sudo -E")]