aboutsummaryrefslogtreecommitdiff
path: root/lib/arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arch.h')
-rw-r--r--lib/arch.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/arch.h b/lib/arch.h
deleted file mode 100644
index a02fdba..0000000
--- a/lib/arch.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Copyright (c) 2020 Johannes Stoelp */
-
-#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
-
-#include "arch/api.h"