Skip to content

Commit

Permalink
cranelift: don't enable trace-log feature by default (bytecodeallianc…
Browse files Browse the repository at this point in the history
…e#6549)

In bytecodealliance#5382 ("egraph support: rewrite to work in terms of CLIF data
structures"), we added the `trace-log` feature to the set of default
features for `cranelift-codegen`. I think this was an accident, probably
added while debugging and overlooked when cleaning up to merge.

So let's undo that change. Fixes bytecodealliance#6548.
  • Loading branch information
jameysharp committed Jun 9, 2023
1 parent 271b605 commit ae489e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cranelift/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cranelift-codegen-meta = { path = "meta", version = "0.96.3" }
cranelift-isle = { path = "../isle/isle", version = "=0.96.3" }

[features]
default = ["std", "unwind", "trace-log"]
default = ["std", "unwind"]

# The "std" feature enables use of libstd. The "core" feature enables use
# of some minimal std-like replacement libraries. At least one of these two
Expand Down

0 comments on commit ae489e6

Please sign in to comment.