Skip to content

Commit 29e7f3e

Browse files
committed
feat: enable -msimd128 for all packages
Signed-off-by: Gordon Smith <[email protected]>
1 parent 53a950d commit 29e7f3e

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ set(VCPKG_INCLUDE_DIR ${VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/include)
1010
# See: https://github.com/emscripten-core/emscripten/blob/main/src/settings.js
1111
set(EM_CPP_FLAGS
1212
"-flto"
13+
"-msimd128"
1314
)
1415

1516
set(EM_LINK_FLAGS

packages/duckdb/src-cpp/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ find_package(DuckDB CONFIG REQUIRED)
66

77
set(EM_CPP_FLAGS
88
${EM_CPP_FLAGS}
9-
"-msimd128"
109
"-fwasm-exceptions"
1110
)
1211
string(REPLACE ";" " " CPP_FLAGS "${EM_CPP_FLAGS}")

packages/llama/src-cpp/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ find_package(Llama CONFIG REQUIRED)
66

77
set(EM_CPP_FLAGS
88
${EM_CPP_FLAGS}
9-
"-msimd128"
109
"-fwasm-exceptions"
1110
)
1211
string(REPLACE ";" " " CPP_FLAGS "${EM_CPP_FLAGS}")

0 commit comments

Comments
 (0)