-
Notifications
You must be signed in to change notification settings - Fork 13.3k
rustpkg: Can't find libraries. #9948
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
Comments
For the reference:
|
In this case, you would have to write |
@catamorphism: I did:
Probably different problem (the I get your point however. The package id full url, not only the last part. Is that what you mean? |
It would be worth it to try updating rust, since I've fixed some significant bugs in rustpkg since 9/25. Sorry for the trouble. |
Same problem on |
I will re-test this after I land my fix for #10253. (Haven't submitted the PR yet.) |
rustpkg doesn't exist anymore, closing |
This contains preparatory work for rust-lang#9948 to keep that change to the minimum, and make it easier to review it.
Partial no-op refactoring of rust-lang#9948 This contains some prep work for rust-lang#9948 to keep that change to the minimum, and make it easier to review it. This should be a noop, but it has some tests from that PR discussion, and should help in the future with the corner case format handling. cc: `@Alexendoo` `@llogiq` `@xFrednet` as the 3 people who reviewed the parent PR ---- changelog: none
Add support for `#[clippy::format_args]` attribute that can be attached to any macro to indicate that it functions the same as the built-in format macros like `format!`, `println!` and `write!` --- changelog: Enhancement: [`format_in_format_args`], [`recursive_format_impl`], [`to_string_in_format_args`], [`uninlined_format_args`], [`unused_format_specs`]: Recognizes `#[clippy::format_args]` to support custom 3rs party format macros.
I want to be able to use
rustpkg
to build current project like this:rustc
version works as expected:So, I'd expect
rustpkg build hellobin
to work as well and just trigger correspondingrustc
command.The text was updated successfully, but these errors were encountered: