From 4cd36ecdeaca6d2671ff4c284ca751e552b4b1b0 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 8 Aug 2022 18:41:06 +0200 Subject: [PATCH] No parallel execution on emscripten. --- server/TracySort.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracySort.hpp b/server/TracySort.hpp index 3f47180e..fce0c0a7 100644 --- a/server/TracySort.hpp +++ b/server/TracySort.hpp @@ -2,7 +2,7 @@ #define __TRACYSORT_HPP__ #ifndef NO_PARALLEL_SORT -# if !defined __APPLE__ && ( ( defined _MSC_VER && _MSVC_LANG >= 201703L ) || __cplusplus >= 201703L ) +# if !defined __APPLE__ && !defined __EMSCRIPTEN__ && ( ( defined _MSC_VER && _MSVC_LANG >= 201703L ) || __cplusplus >= 201703L ) # if __has_include() # include # include