Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 67f18ef..9089827 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,6 +14,12 @@ if(MSVC)
add_compile_options(/W4 /WX)
else()
add_compile_options(-Wall -Wextra -pedantic -Werror -Wno-unknown-pragmas)
+ if (COMPILE_WASM)
+ # Disabling Pthreads + memory growth warning to be an error for WASM
+ # Pthreads + memory growth causes JS accessing the wasm memory to be slow
+ # https://github.com/WebAssembly/design/issues/1271
+ add_compile_options(-Wno-error=pthreads-mem-growth)
+ endif()
endif()
# Check if compiler supports AVX2 (this should only catch emscripten)