From 15d1f44625e063c3f6e821bd37a20a08c296fd6d Mon Sep 17 00:00:00 2001 From: serge-sans-paille Date: Tue, 18 Nov 2025 11:11:37 +0100 Subject: [PATCH] [ci] Bump C++ requirement to C++17 for emscripten As required by embind header --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e6bad7999..b04306c34 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -226,7 +226,7 @@ add_subdirectory(architectures) if(EMSCRIPTEN) set_target_properties(test_xsimd PROPERTIES LINK_FLAGS "-s MODULARIZE=1 -s EXPORT_NAME=test_xsimd_wasm -s WASM=1 -s ALLOW_MEMORY_GROWTH=1 -lembind") target_compile_options(test_xsimd - PUBLIC --std=c++14 + PUBLIC --std=c++17 PUBLIC "SHELL: -msimd128" PUBLIC "SHELL: -msse2" )