-
Notifications
You must be signed in to change notification settings - Fork 1.7k
unresolved macro call on standard library macro. #9352
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
|
That is a stability marker, not a cfg. |
Wasn't quite awake yet I suppose 🤦 |
So ye the problem is we can't resolve |
It probably needs to be added to the list of sysroot crates. |
stdarch is full of |
9357: fix: Update sysroot crates r=jonas-schievink a=jonas-schievink Removes `rtstartup`, since that's not a Cargo crate (its files are compiled into object files and linked alongside the stdlib). Adds `std_detect`. Part of #9352 (doesn't fix it since std_detect is full of `cfg_if!`) bors r+ Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
Since this seems to work fine and the |
The following code triggers an unresolved macro problem with RA nightly 2021-06-20:
Given that I'm building for x86_64 windows, the macro should be in the standard library just fine. Indeed, the program compiles and runs perfectly with
cargo run
, only RA itself is having the hiccup.The text was updated successfully, but these errors were encountered: