Skip to content

Commit

Permalink
fix(xtask): enable clippy for aarch64
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Feb 7, 2024
1 parent 30acddb commit 311f4ef
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,14 @@ impl flags::Clippy {
fn run(self) -> Result<()> {
let sh = Shell::new()?;

// TODO: Enable clippy for aarch64
// https://github.com/hermitcore/loader/issues/78
// TODO: Enable clippy for x86_64-uefi
// https://github.com/hermitcore/loader/issues/122
for target in [Target::X86_64, Target::X86_64Fc, Target::Riscv64] {
for target in [
Target::X86_64,
Target::X86_64Fc,
Target::AArch64,
Target::Riscv64,
] {
target.install()?;
let triple = target.triple();
let feature_flags = target.feature_flags();
Expand Down

0 comments on commit 311f4ef

Please sign in to comment.