Disable #[thread_local] support on i686-pc-windows-msvc#95430
Merged
bors merged 1 commit intorust-lang:masterfrom Apr 2, 2022
Merged
Disable #[thread_local] support on i686-pc-windows-msvc#95430bors 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
|
Contributor
|
Isn't disabling things for whole platform without clear reproducible test is too fast decision? |
Member
Author
|
While not ideal, this is basically just reverting to the previous status quo. And there have been known issues in the past, which is why it was originally not enabled. Even now there are still issues with dylibs due to TLS being scoped to the dll/exe rather than global to the process. |
Member
|
@bors r+, but it would be great if we could get the reporter to produce a minimal reproducer which we could convert into a test. |
Member
Collaborator
|
📌 Commit 017a092 has been approved by |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Apr 2, 2022
Rollup of 8 pull requests Successful merges: - rust-lang#95354 (Handle rustc_const_stable attribute in library feature collector) - rust-lang#95373 (invalid_value lint: detect invalid initialization of arrays) - rust-lang#95430 (Disable #[thread_local] support on i686-pc-windows-msvc) - rust-lang#95544 (Add error message suggestion for missing noreturn in naked function) - rust-lang#95556 (Implement provenance preserving methods on NonNull) - rust-lang#95557 (Fix `thread_local!` macro to be compatible with `no_implicit_prelude`) - rust-lang#95559 (small type system refactoring) - rust-lang#95560 (convert more `DefId`s to `LocalDefId`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
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.
Fixes #95429