Remove redundant profile config in cranelift/Cargo.toml

This commit is contained in:
Alex Crichton
2020-02-28 12:30:00 -08:00
parent d7ec76b715
commit 9050027e8b

View File

@@ -45,12 +45,3 @@ walkdir = "2.2"
default = ["disas", "wasm", "cranelift-codegen/all-arch"] default = ["disas", "wasm", "cranelift-codegen/all-arch"]
disas = ["capstone"] disas = ["capstone"]
wasm = ["wat", "cranelift-wasm"] wasm = ["wat", "cranelift-wasm"]
# We want debug symbols on release binaries by default since it allows profiling
# tools to give more accurate information. We can always strip them out later if
# necessary.
[profile.release]
debug = true
# debug-assertions = true # uncomment to make bugpoint blazingly fast!
[profile.bench]
debug = true