-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustpkg can't find std and extra #11852
Comments
|
Is this a case of rust using rlibs by default and rustpkg not looking for them? Or was that fixed? Though even in that case I can't imagine why adding version info would cause it to start working. The version info just filters out candidates, or at least that was my understanding. |
I tried adding the version information last night and it didn't seem to help... |
Just for reference: You also have to add version information to test.rs. (I didn't test your code, but changing test.rs solved a similar problem for me) |
Right now the bots are all injecting a libstd version, so all the rustpkg tests are passing. All rustpkg compilations will fail unless the version number is explicitly given because rustpkg attempts to exactly guess the target file name. Switch back to using a pattern match in order to unbreak tests. Closes #11852
It seems like rustpkg is being/was removed, so this bug is sort of irrelevant now. |
…nly, r=xFrednet reduce `single_char_pattern` to only lint on ascii chars This should mostly fix the `single_char_pattern` lint, because with a single byte, the optimizer will usually see through the char-to-string-expansion and single loop iteration. This fixes rust-lang#11675 and rust-lang#8111. Update: As per the meeting on November 28th, 2023, we voted to also downgrade the lint to pedantic. --- changelog: downgrade [`single_char_pattern`] to `pedantic`
A couple of days ago, some of my Rust CI builds started failing because
rustpkg
is having trouble findingstd
andextra
.Here are a couple of failed builds:
The text was updated successfully, but these errors were encountered: