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

01_wait_forever error: unused import: raspberrypi::* with Rust 1.82.0 #219

Open
ChocolateLoverRaj opened this issue Oct 18, 2024 · 0 comments

Comments

@ChocolateLoverRaj
Copy link

ChocolateLoverRaj commented Oct 18, 2024

Rust versions tested:

cargo 1.84.0-nightly (8c30ce536 2024-10-15)
cargo 1.82.0 (8f40fc59f 2024-08-21)

I get the error with both of the versions.

Output:

make qemu

Compiling kernel ELF - rpi3
   Compiling mingo v0.1.0 (/home/rajas/Documents/rust-raspberrypi-OS-tutorials/01_wait_forever)
error: unused import: `raspberrypi::*`
  --> src/bsp.rs:11:9
   |
11 | pub use raspberrypi::*;
   |         ^^^^^^^^^^^^^^
   |
   = note: `-D unused-imports` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(unused_imports)]`

error: could not compile `mingo` (bin "kernel") due to 1 previous error
make: *** [Makefile:123: target/aarch64-unknown-none-softfloat/release/kernel] Error 101

make qemu runs successfully If I comment out the unused line:

// #[cfg(any(feature = "bsp_rpi3", feature = "bsp_rpi4"))]
// pub use raspberrypi::*;

OS: NixOS
Flake I'm using for devShell:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    rust-overlay.url = "github:oxalica/rust-overlay";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        overlays = [ (import rust-overlay) ];
        pkgs = import nixpkgs {
          inherit system overlays;
        };
      in
      {
        devShells.default = with pkgs; mkShell {
          buildInputs = [
            (rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override {
              extensions = [ "rust-src" "llvm-tools-preview" ];
              targets = [ "aarch64-unknown-none-softfloat" ];
            }))
            cargo-bootimage
            qemu
            gnumake
            cargo-binutils
            rustfilt
          ];
        };
      }
    );
}
@ChocolateLoverRaj ChocolateLoverRaj changed the title 01_wait_forever error: unused import: raspberrypi::* 01_wait_forever error: unused import: raspberrypi::* with Rust 1.84.0-nightly Oct 18, 2024
@ChocolateLoverRaj ChocolateLoverRaj changed the title 01_wait_forever error: unused import: raspberrypi::* with Rust 1.84.0-nightly 01_wait_forever error: unused import: raspberrypi::* with Rust 1.82.0 Oct 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant