From e4dcc3fdf0fa1430a974fcd7da31b03ea642df9b Mon Sep 17 00:00:00 2001 From: Assistant Date: Fri, 29 Mar 2024 09:17:33 -0400 Subject: [PATCH] fix build on aarch64 platform when uname -m reports aarch64 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 75f62aed1..91b9571bb 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,10 @@ ifeq ($(shell uname -m),arm64) export aarch64=1 endif +ifeq ($(shell uname -m),aarch64) + export aarch64=1 +endif + .PHONY: clean all profile debug minimap2 samtools .DEFAULT_GOAL := all