From e3edd4c4ef6f88806e33026f8ce814b7563dff71 Mon Sep 17 00:00:00 2001 From: Schell-HAR Date: Wed, 5 Feb 2025 11:48:11 +0100 Subject: [PATCH] Update Makefile added support for 64-bit ARM architecture --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 7d9d2e89..fa510d5b 100644 --- a/Makefile +++ b/Makefile @@ -353,6 +353,11 @@ armtest: clean @echo ---- test ARM compilation ---- CC=arm-linux-gnueabi-gcc MOREFLAGS="-Werror -static" $(MAKE) xxhsum +.PHONY: arm64test +arm64test: clean + @echo ---- test ARM64 compilation ---- + CC=aarch64-linux-gnu-gcc MOREFLAGS="-Werror -static" $(MAKE) xxhsum + .PHONY: clangtest clangtest: clean @echo ---- test clang compilation ----