只对x86_64进行clippy check (#651)

This commit is contained in:
LoGin
2024-03-23 11:51:30 +08:00
committed by GitHub
parent 4e4c8c41e9
commit 3660256a9e

View File

@ -26,7 +26,10 @@ clean:
.PHONY: fmt
fmt:
@cargo fmt --all $(FMT_CHECK)
ifeq ($(ARCH), x86_64)
@cargo clippy --all-features
endif
.PHONY: check
check: ECHO