Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion crates/cli/src/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ pub struct BenchmarkCommand {

/// Configure an engine using engine-specific flags. (For the Wasmtime
/// engine, these can be a subset of flags from `wasmtime run --help`).
#[structopt(long("engine-flags"), value_name = "ENGINE_FLAGS")]
#[structopt(
long("engine-flags"),
value_name = "ENGINE_FLAGS",
allow_hyphen_values = true
)]
engine_flags: Option<String>,

/// How many processes should we use for each Wasm benchmark?
Expand Down