You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the flamegraph command, I get the following warning:
WARNING: profiling without debuginfo. Enable symbol information by adding the following lines to Cargo.toml:
[profile.bench]
debug = true
Or set this environment variable:
CARGO_PROFILE_BENCH_DEBUG=true
However, this is incorrect since to make this warning go away, I need to use profile.release instead. I am using the following command:
Thanks for the report. Unfortunately I probably won't be able to address this anytime soon -- however, happy to review a PR if you're able to suggest a fix (or answer questions about doing so).
@samyak-jain how did you manage to get the warning?
I'm trying the command and for me it reports:
WARNING: profiling without debuginfo. Enable symbol information by adding the following lines to Cargo.toml:
[profile.release]
debug = true
Or set this environment variable:
CARGO_PROFILE_RELEASE_DEBUG=true
When running the flamegraph command, I get the following warning:
However, this is incorrect since to make this warning go away, I need to use
profile.release
instead. I am using the following command:It seems from here:
flamegraph/src/bin/cargo-flamegraph.rs
Line 245 in 6de8c66
The text was updated successfully, but these errors were encountered: