Skip to content

Commit

Permalink
fix(xtask): enable clippy for feature = "newlib"
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de>
  • Loading branch information
mkroening committed Aug 15, 2024
1 parent 7f81a72 commit 64ec51e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions xtask/src/clippy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,10 @@ impl Clippy {
.run()?;
}

// TODO: Enable clippy for newlib
// https://github.com/hermit-os/kernel/issues/470
// cmd!(sh, "cargo clippy --target={triple}")
// .arg("--no-default-features")
// .arg("--features=acpi,fsgsbase,newlib,smp,vga")
// .run()?;
cmd!(sh, "cargo clippy --target={triple}")
.arg("--no-default-features")
.arg("--features=acpi,fsgsbase,newlib,smp,vga")
.run()?;
}

cmd!(sh, "cargo clippy")
Expand Down

0 comments on commit 64ec51e

Please sign in to comment.