-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
kmc-solid: Avoid the use of asm_const
#90690
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
Out of interest, why this choice over enabling the relevant feature gate for std? |
Similar to #90348 (comment) - with the stage0 compiler not knowing about |
Seems ok. I would've expected a cfg_attr(not(bootstrap), feature(asm_const)) to work, but I may be missing something. This also seems fine in the meantime anyway. @bors r+ rollup |
📌 Commit f170770 has been approved by |
…=Mark-Simulacrum kmc-solid: Avoid the use of `asm_const` This PR removes the use of [the now-separated-out `asm_const` compiler feature][1] in `std::sys::solid` to fix the [`*-kmc-solid_*`](https://doc.rust-lang.org/nightly/rustc/platform-support/kmc-solid.html) Tier 3 targets. [1]: rust-lang#90348
…askrgr Rollup of 3 pull requests Successful merges: - rust-lang#90690 (kmc-solid: Avoid the use of `asm_const`) - rust-lang#90748 (Add a real tracking issue for `CommandExt::groups`) - rust-lang#90751 (Update books) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
…askrgr Rollup of 3 pull requests Successful merges: - rust-lang#90690 (kmc-solid: Avoid the use of `asm_const`) - rust-lang#90748 (Add a real tracking issue for `CommandExt::groups`) - rust-lang#90751 (Update books) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This PR removes the use of the now-separated-out
asm_const
compiler feature instd::sys::solid
to fix the*-kmc-solid_*
Tier 3 targets.