Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
added support for 64-bit ARM architecture
  • Loading branch information
Schell-HAR authored Feb 5, 2025
1 parent 293590a commit e3edd4c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ----
Expand Down

0 comments on commit e3edd4c

Please sign in to comment.