summaryrefslogtreecommitdiff
path: root/wasm2c/wasm-rt.h
diff options
context:
space:
mode:
Diffstat (limited to 'wasm2c/wasm-rt.h')
-rw-r--r--wasm2c/wasm-rt.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/wasm2c/wasm-rt.h b/wasm2c/wasm-rt.h
index 3274a15d..c5bad614 100644
--- a/wasm2c/wasm-rt.h
+++ b/wasm2c/wasm-rt.h
@@ -79,10 +79,13 @@ extern "C" {
#endif
-#ifdef _MSC_VER
-#define WASM_RT_THREAD_LOCAL __declspec(thread)
-#elif defined(WASM_RT_C11_AVAILABLE)
+#ifdef WASM_RT_C11_AVAILABLE
#define WASM_RT_THREAD_LOCAL _Thread_local
+#elif defined(_MSC_VER)
+#define WASM_RT_THREAD_LOCAL __declspec(thread)
+#elif (defined(__GNUC__) || defined(__clang__)) && !defined(__APPLE__)
+// Disabled on Apple systems due to sporadic test failures.
+#define WASM_RT_THREAD_LOCAL __thread
#else
#define WASM_RT_THREAD_LOCAL
#endif