aboutsummaryrefslogtreecommitdiff
path: root/lib/arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arch.h')
-rw-r--r--lib/arch.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/arch.h b/lib/arch.h
new file mode 100644
index 0000000..fc86cad
--- /dev/null
+++ b/lib/arch.h
@@ -0,0 +1,13 @@
+/* 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__)
+# include "arch/x86_64/api.h"
+#else
+static_assert(false, "Matcha Threads only supported on x86_64!");
+#endif