summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorWilly R. Vasquez <wrv@utexas.edu>2023-01-29 10:48:56 -0600
committerGitHub <noreply@github.com>2023-01-29 08:48:56 -0800
commit8a7b7497bdf78f9099f8d5a3a2c9bde87ddd52da (patch)
tree1996c3154a28f875248d4fed6fdfe54cd1b6c856 /.github
parentc831b98d2ed0571cda9b3ed7acaddd0df2c5a934 (diff)
downloadwabt-8a7b7497bdf78f9099f8d5a3a2c9bde87ddd52da.tar.gz
wabt-8a7b7497bdf78f9099f8d5a3a2c9bde87ddd52da.tar.bz2
wabt-8a7b7497bdf78f9099f8d5a3a2c9bde87ddd52da.zip
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml3
1 files changed, 2 insertions, 1 deletions
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: