Avoid injecting sanitizer runtimes into staticlibs (#64629).#65497
Merged
bors merged 1 commit intorust-lang:masterfrom Oct 20, 2019
Merged
Avoid injecting sanitizer runtimes into staticlibs (#64629).#65497bors merged 1 commit intorust-lang:masterfrom
bors merged 1 commit intorust-lang:masterfrom
Conversation
Contributor
|
r? @davidtwco (rust_highfive has picked a reviewer for you, use r? to override) |
Contributor
Author
Contributor
Author
|
Also Cc @tmiasko and @nikomatsakis for additional eyes :) |
Contributor
|
@bors rollup=never |
Contributor
|
It seems fine to me, but I don't claim a deep understanding of what's going on =) |
Contributor
Collaborator
|
✌️ @tmiasko can now approve this pull request |
Contributor
|
I don't think that this implies any changes to the content in rust-lang/rustc-dev-guide#466, right? |
Contributor
Author
Contributor
|
@bors r+ |
Collaborator
|
📌 Commit a2feb9c has been approved by |
Collaborator
bors
added a commit
that referenced
this pull request
Oct 20, 2019
Avoid injecting sanitizer runtimes into staticlibs (#64629). This fixes the remaining issue in `creader.rs` and also fixes the expected test failure. I have explicitly turned the `$(CC)` call into a negative check with the `!` to ensure that this command is really failing (if it is not, then either the runtime is attached to the lib or the lib has not been instrumented and both would be an error). I've also borrowed `program.rs` and the additional `rustc` invocation from @tmiasko 's PR since he pointed out that using `-fsanitize=address` with `$(CC)` for linking could fail if the sanitizer runtimes on the system are incompatible. With this toolchain I was able to compile Firefox locally without any linker errors. I am still seeing races with Rust in TSan but I assume that is because I did not build with `-Z build-std`.
Collaborator
|
☀️ Test successful - checks-azure |
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.
This fixes the remaining issue in
creader.rsand also fixes the expected test failure. I have explicitly turned the$(CC)call into a negative check with the!to ensure that this command is really failing (if it is not, then either the runtime is attached to the lib or the lib has not been instrumented and both would be an error).I've also borrowed
program.rsand the additionalrustcinvocation from @tmiasko 's PR since he pointed out that using-fsanitize=addresswith$(CC)for linking could fail if the sanitizer runtimes on the system are incompatible.With this toolchain I was able to compile Firefox locally without any linker errors. I am still seeing races with Rust in TSan but I assume that is because I did not build with
-Z build-std.