compilation error in std for target_os="ios" - #23077
Closed
semarie wants to merge 1 commit into
Closed
Conversation
This patch corrects the following errors:
../src/libstd/env.rs:569:42: 569:63 error: unresolved name `super::os::DLL_PREFIX`
../src/libstd/env.rs:569 pub const DLL_PREFIX: &'static str = super::os::DLL_PREFIX;
^~~~~~~~~~~~~~~~~~~~~
../src/libstd/env.rs:574:42: 574:63 error: unresolved name `super::os::DLL_SUFFIX`
../src/libstd/env.rs:574 pub const DLL_SUFFIX: &'static str = super::os::DLL_SUFFIX;
^~~~~~~~~~~~~~~~~~~~~
../src/libstd/env.rs:579:45: 579:69 error: unresolved name `super::os::DLL_EXTENSION`
../src/libstd/env.rs:579 pub const DLL_EXTENSION: &'static str = super::os::DLL_EXTENSION;
^~~~~~~~~~~~~~~~~~~~~~~~
Contributor
|
r? @huonw (rust_highfive has picked a reviewer for you, use r? to override) |
Member
|
Duplicate of #23029, but thanks! |
Contributor
Author
|
my bad, I don't have checked for duplicate first. |
lnicola
pushed a commit
to lnicola/rust
that referenced
this pull request
Aug 10, 2026
fix: parse or pattern after range pattern
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 patch corrects the following errors:
The patch is untested: only the compilation was done. The code follow "macos" definition.