Skip to content
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

The no_std targets seem hardcoded in bootstraping #97322

Closed
Ayush1325 opened this issue May 23, 2022 · 2 comments
Closed

The no_std targets seem hardcoded in bootstraping #97322

Ayush1325 opened this issue May 23, 2022 · 2 comments
Labels
C-bug Category: This is a bug.

Comments

@Ayush1325
Copy link
Contributor

I was trying to build library/core for x86_64-unknown-uefi. However, it was trying to build library/test and by extension library/std for some reason. This is odd since the UEFI targets are no_std targets according to rust platform support. The error I was getting is as follows:

error[E0658]: use of unstable library feature 'restricted_std'
  |
  = help: add `#![feature(restricted_std)]` to the crate attributes to enable

For more information about this error, try `rustc --explain E0658`.
warning: `test` (lib) generated 1 warning (1 duplicate)
error: could not compile `test` due to previous error; 1 warning emitted

Building for some other no_std targets such as x86_64-unknown-none works fine and only builds core, rustc-std-workspace-core, compiler_builtins and alloc.

After some digging around, I found that this can be fixed by making the following changes

--- a/src/bootstrap/config.rs
+++ b/src/bootstrap/config.rs
@@ -363,7 +363,7 @@ pub struct Target {
 impl Target {
     pub fn from_triple(triple: &str) -> Self {
         let mut target: Self = Default::default();
-        if triple.contains("-none") || triple.contains("nvptx") {
+        if triple.contains("-none") || triple.contains("nvptx") || triple.contains("-uefi") {
             target.no_std = true;
         }
         target

However, hardcoding no_std like this doesn't seem to be a good solution. Maybe #95503 will solve this but I don't really know. So just wanted to bring this to community's attention (unless everyone is already aware of this).

@Ayush1325 Ayush1325 added the C-bug Category: This is a bug. label May 23, 2022
matthiaskrgr pushed a commit to matthiaskrgr/rust that referenced this issue Jul 26, 2022
matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Jul 26, 2022
…std-build, r=jyn514

Don't build std for *-uefi targets

rust-lang#97322
JohnTitor added a commit to JohnTitor/rust that referenced this issue Jul 27, 2022
…std-build, r=jyn514

Don't build std for *-uefi targets

rust-lang#97322
@dvdhrm
Copy link
Contributor

dvdhrm commented Jul 28, 2022

Note that you can avoid building std by setting no-std = true in your build.toml like this:

[target.x86_64-unknown-uefi]
no-std = true

This avoids relying on the hard-coded values in src/bootstrap/, but does not solve the issue entirely. I think a possibility would be to avoid building std, except for targets that opt-in. I am unsure how and where to encode that information, though. std could list the targets it has been ported to, and bootstrap could read it.

@Ayush1325
Copy link
Contributor Author

Closing it now since #99765 is already merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: This is a bug.
Projects
None yet
Development

No branches or pull requests

2 participants