You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add WASI Preview 2 platform support and target triples
- Add WASI version constraint settings and platform configurations for wasip2
- Add support for wasm32-wasip2 and wasm32-wasip1-threads targets
- Fix WASI toolchain and allocator library issues for cross-compilation
- Add comprehensive unit tests and documentation for WASI platform functionality
Copy file name to clipboardExpand all lines: ffi/cc/allocator_library/BUILD.bazel
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,9 @@ cc_library(
7
7
# If someone can make this work on Windows, please do!
8
8
# For now we will silently not supply any symbols, because it would be very messy to conditionally define the default allocator library on toolchains depending on the platform.
9
9
"@platforms//os:windows": ["empty.cc"],
10
+
# WASI doesn't need the allocator library - WASI runtime provides allocation
11
+
# Use empty srcs list to avoid needing archiving tools
0 commit comments