Add section: Source file checksums in debug info#623
Merged
mark-i-m merged 1 commit intorust-lang:masterfrom Apr 8, 2020
Merged
Add section: Source file checksums in debug info#623mark-i-m merged 1 commit intorust-lang:masterfrom
mark-i-m merged 1 commit intorust-lang:masterfrom
Conversation
c5dd2a4 to
0a5c8e1
Compare
Contributor
Author
|
r? @eddyb |
Member
|
(this repo doesn't have any bots AFAIK) |
Member
|
I think this should be blocked until that PR is merged? |
arlosi
commented
Mar 24, 2020
nikomatsakis
previously approved these changes
Mar 24, 2020
sivadeilra
reviewed
Mar 24, 2020
d9c3438 to
ed9e1cb
Compare
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Apr 4, 2020
Add hash of source files in debug info LLVM supports placing the hash of source files inside the debug info. This information can be used by a debugger to verify that the source code matches the executable. This change adds support for both hash algorithms supported by LLVM, MD5 and SHA1, controlled by a target option. * DWARF only supports MD5 * LLVM IR supports MD5 and SHA1 (and SHA256 in LLVM 11). * CodeView (.PDB) supports MD5, SHA1, and SHA256. Fixes rust-lang#68980. Tracking issue: rust-lang#70401 rustc dev guide PR with further details: rust-lang/rustc-dev-guide#623
Contributor
|
rust-lang/rust#69718 has merged |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implementation PR in Rust: rust-lang/rust#69718