We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe3ac34 commit 487c1dbCopy full SHA for 487c1db
xtask/src/main.rs
@@ -142,11 +142,14 @@ impl flags::Clippy {
142
fn run(self) -> Result<()> {
143
let sh = Shell::new()?;
144
145
- // TODO: Enable clippy for aarch64
146
- // https://github.com/hermitcore/loader/issues/78
147
// TODO: Enable clippy for x86_64-uefi
148
// https://github.com/hermitcore/loader/issues/122
149
- for target in [Target::X86_64, Target::X86_64Fc, Target::Riscv64] {
+ for target in [
+ Target::X86_64,
+ Target::X86_64Fc,
150
+ Target::AArch64,
151
+ Target::Riscv64,
152
+ ] {
153
target.install()?;
154
let triple = target.triple();
155
let feature_flags = target.feature_flags();
0 commit comments