From 533a9e57de8cb74594499f625810ad812359d3fb Mon Sep 17 00:00:00 2001 From: johannst Date: Tue, 29 Sep 2020 04:31:51 +0200 Subject: added basic arm64 support --- lib/arch.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/arch.h') diff --git a/lib/arch.h b/lib/arch.h index fc86cad..9604be8 100644 --- a/lib/arch.h +++ b/lib/arch.h @@ -8,6 +8,8 @@ static_assert(false, "Matcha Threads only supported on Linux!"); #if defined(__x86_64__) || defined(__amd64__) # include "arch/x86_64/api.h" +#elif defined(__aarch64__) +# include "arch/arm64/api.h" #else static_assert(false, "Matcha Threads only supported on x86_64!"); #endif -- cgit v1.2.3