From 33f286000db35fe50639c237caa736deea304585 Mon Sep 17 00:00:00 2001 From: johannst Date: Tue, 22 Sep 2020 23:48:09 +0200 Subject: split classes into separate files, add arch specific subdir --- lib/compile_guard.cc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/compile_guard.cc (limited to 'lib/compile_guard.cc') diff --git a/lib/compile_guard.cc b/lib/compile_guard.cc new file mode 100644 index 0000000..61c7ad5 --- /dev/null +++ b/lib/compile_guard.cc @@ -0,0 +1,5 @@ +/* Copyright (c) 2020 Johannes Stoelp */ + +#if !defined(linux) || (!defined(__x86_64__) && !defined(__amd64__)) +static_assert(false, "Matcha Threads only supported on Linux x86_64!"); +#endif -- cgit v1.2.3