From 8a7b7497bdf78f9099f8d5a3a2c9bde87ddd52da Mon Sep 17 00:00:00 2001 From: "Willy R. Vasquez" Date: Sun, 29 Jan 2023 10:48:56 -0600 Subject: wasm2c: add SIMD support (#2119) This change incorporates [simd-everywhere](https://github.com/simd-everywhere/simde) into the wasm2c output, which maps wasm SIMD C intrinsics to any supported target architecture. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dd4cf987..a599922c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,6 +85,7 @@ jobs: env: USE_NINJA: "1" CC: "clang" + WASM2C_CFLAGS: "-march=x86-64-v2" # currently required for SIMDe to pass some tests on x86-64 strategy: matrix: sanitizer: [asan, ubsan] @@ -106,7 +107,7 @@ jobs: env: USE_NINJA: "1" CC: "clang" # used by the wasm2c tests - WASM2C_CFLAGS: "-fsanitize=address -DWASM_RT_MEMCHECK_SIGNAL_HANDLER=0" + WASM2C_CFLAGS: "-march=x86-64-v2 -fsanitize=address -DWASM_RT_MEMCHECK_SIGNAL_HANDLER=0" steps: - uses: actions/setup-python@v1 with: -- cgit v1.2.3