Skip to content

Commit

Permalink
Enable pulley by default for the wasmtime CLI (bytecodealliance#9983
Browse files Browse the repository at this point in the history
)

Now that pulley is nearing completion this makes it more useful to test
out the interpreter on the CLI by having it available by default on all
platforms.
  • Loading branch information
alexcrichton authored Jan 11, 2025
1 parent 8b42faf commit a1511a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,7 @@ default = [
"gc-drc",
"gc-null",
"winch",
"pulley",

# Enable some nice features of clap by default, but they come at a binary size
# cost, so allow disabling this through disabling of our own `default`
Expand All @@ -436,7 +437,6 @@ default = [
# These features are off-by-default but may optionally be enabled.
all-arch = ["wasmtime/all-arch"]
winch = ["wasmtime/winch"]
pulley = ["wasmtime/pulley"]
wmemcheck = ["wasmtime/wmemcheck"]
trace-log = ["wasmtime/trace-log"]
memory-protection-keys = ["wasmtime-cli-flags/memory-protection-keys"]
Expand Down Expand Up @@ -476,6 +476,7 @@ gc = ["wasmtime-cli-flags/gc", "wasmtime/gc"]
gc-drc = ["gc", "wasmtime/gc-drc", "wasmtime-cli-flags/gc-drc"]
gc-null = ["gc", "wasmtime/gc-null", "wasmtime-cli-flags/gc-null"]
signals-based-traps = ["wasmtime/signals-based-traps", "wasmtime-cli-flags/signals-based-traps"]
pulley = ["wasmtime-cli-flags/pulley"]

# CLI subcommands for the `wasmtime` executable. See `wasmtime $cmd --help`
# for more information on each subcommand.
Expand Down
1 change: 1 addition & 0 deletions crates/cli-flags/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ gc-null = ["gc", "wasmtime/gc-null"]
threads = ["wasmtime/threads"]
memory-protection-keys = ["wasmtime/memory-protection-keys"]
signals-based-traps = ["wasmtime/signals-based-traps"]
pulley = ["wasmtime/pulley"]

0 comments on commit a1511a0

Please sign in to comment.