Skip to content

Commit 487c1db

Browse files
committed
fix(xtask): enable clippy for aarch64
Signed-off-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de>
1 parent fe3ac34 commit 487c1db

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

xtask/src/main.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,14 @@ impl flags::Clippy {
142142
fn run(self) -> Result<()> {
143143
let sh = Shell::new()?;
144144

145-
// TODO: Enable clippy for aarch64
146-
// https://github.com/hermitcore/loader/issues/78
147145
// TODO: Enable clippy for x86_64-uefi
148146
// https://github.com/hermitcore/loader/issues/122
149-
for target in [Target::X86_64, Target::X86_64Fc, Target::Riscv64] {
147+
for target in [
148+
Target::X86_64,
149+
Target::X86_64Fc,
150+
Target::AArch64,
151+
Target::Riscv64,
152+
] {
150153
target.install()?;
151154
let triple = target.triple();
152155
let feature_flags = target.feature_flags();

0 commit comments

Comments
 (0)