Bump libc dependency of std to 0.2.88.#82731
Merged
bors merged 1 commit intorust-lang:masterfrom Mar 9, 2021
Merged
Conversation
This comment has been minimized.
This comment has been minimized.
Contributor
Author
|
Hmm, the test failure seems unrelated: |
385b2a9 to
b8c43db
Compare
This comment has been minimized.
This comment has been minimized.
b8c43db to
3d0916d
Compare
Contributor
Author
Right, forgot about that. Added it now. |
Member
|
r? @Mark-Simulacrum for final review. |
Member
|
libc v0.2.88 is released, @de-vri-es we should use the new version here. |
Contributor
Author
|
Yep, definitely. Updated it now. Thanks for the quick libc release :] |
3d0916d to
c946d1d
Compare
Member
|
@bors r+ rollup=iffy |
Collaborator
|
📌 Commit c946d1d has been approved by |
m-ou-se
added a commit
to m-ou-se/rust
that referenced
this pull request
Mar 9, 2021
…-Simulacrum Bump libc dependency of std to 0.2.88. This PR bumps the `libc` dependency of `std` to 0.2.88. This will fix `TcpListener::accept` for Android on x86 platforms (rust-lang/libc@31a2777). This will really finally fix rust-lang#82400 for the main branch :) r? `@JohnTitor`
This was referenced Mar 9, 2021
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Mar 9, 2021
Rollup of 8 pull requests Successful merges: - rust-lang#81127 (Improve sift_down performance in BinaryHeap) - rust-lang#81879 (Added #[repr(transparent)] to core::cmp::Reverse) - rust-lang#82048 (or-patterns: disallow in `let` bindings) - rust-lang#82731 (Bump libc dependency of std to 0.2.88.) - rust-lang#82799 (Add regression test for rust-lang#75525) - rust-lang#82841 (Change x64 size checks to not apply to x32.) - rust-lang#82883 (Update Cargo) - rust-lang#82887 (Update CONTRIBUTING.md) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
bors
added a commit
to rust-lang/libc
that referenced
this pull request
Apr 29, 2021
Don't unconditionally link libiconv on macOS. This adds `#[link(name = "iconv")]` to just the iconv symbols so that the library is only linked if the symbols are used. #2037 added a build.rs directive to always link libiconv on Apple platforms, but that shouldn't be necessary. With this change, we can see using `otool -L` that a binary that uses an `iconv` symbol links libiconv, but other binaries don't. Note that this can only be seen with a rustc prior to nightly-2021-03-09, as nightly-2021-03-10 includes rust-lang/rust#82731 which includes #2037, therefore unconditionally linking all Rust binaries to libiconv.
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 PR bumps the
libcdependency ofstdto 0.2.88. This will fixTcpListener::acceptfor Android on x86 platforms (rust-lang/libc@31a2777).This will really finally fix #82400 for the main branch :)
r? @JohnTitor