From 860d937c5680a58ac1437a3daba93496ecc3ad78 Mon Sep 17 00:00:00 2001 From: johannst Date: Wed, 9 Jun 2021 20:09:16 +0200 Subject: move arch.h into arch/ sub-dir --- lib/arch/api.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'lib/arch/api.h') diff --git a/lib/arch/api.h b/lib/arch/api.h index adf773e..3dd5c92 100644 --- a/lib/arch/api.h +++ b/lib/arch/api.h @@ -2,6 +2,20 @@ #pragma once +#if !defined(linux) +static_assert(false, "Matcha Threads only supported on Linux!"); +#endif + +#if defined(__x86_64__) || defined(__amd64__) +// fall-through: x86_64 support +#elif defined(__aarch64__) +// fall-through: arm64 support +#elif defined(__arm__) +// fall-through: armv7 support +#else +static_assert(false, "Unsupported architecture!"); +#endif + // Platform specific API. // When integrating a new platform the following functions must be implemented. -- cgit v1.2.3