Source Context
Learn about showing your source code as part of stack traces.
Install and Configure Sentry CLI by providing an auth token, org and project.
Enable full debug information for your release build:
Cargo.toml
Copied
[profiles.release]
debug = true
Build the release binary, extract debug information and strip it from the binary:
Copied
cargo build --release
objcopy --only-keep-debug target/release/app{,.d}
objcopy --strip-debug --strip-unneeded target/release/app
objcopy --add-gnu-debuglink target/release/app{.d,}
Use a profile like the following for your release builds:
Cargo.toml
Copied
[profile.release]
debug = true
split-debuginfo = "packed"
strip = true
Build the release binary, debug information will be available in separate files and stripped from the binary automatically:
Copied
cargo build --release
Use Sentry CLI to upload debug information and source files:
Copied
sentry-cli debug-files upload --include-sources .
If you don't want to strip the binary, you should disable the debug-images
integration of the SDK, as otherwise you will run into the issue documented here which could cause duplicated frames to appear in your Sentry issues.
Was this helpful?
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").