This is an automated email from the ASF dual-hosted git repository.
guan404ming pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 9ddeba518a [Web] Link custom allocator into WASM runtime (#20046)
9ddeba518a is described below
commit 9ddeba518a7950a3993e7bc815b1683617bdb0df
Author: Akaash Parthasarathy <[email protected]>
AuthorDate: Sat Jul 25 06:30:49 2026 -0700
[Web] Link custom allocator into WASM runtime (#20046)
---
web/emcc/wasm_runtime.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/web/emcc/wasm_runtime.cc b/web/emcc/wasm_runtime.cc
index 99d4194db0..15282e04a6 100644
--- a/web/emcc/wasm_runtime.cc
+++ b/web/emcc/wasm_runtime.cc
@@ -49,6 +49,7 @@
// relax setup
#include "3rdparty/tvm-ffi/src/ffi/backtrace.cc"
#include "3rdparty/tvm-ffi/src/ffi/container.cc"
+#include "3rdparty/tvm-ffi/src/ffi/custom_allocator.cc"
#include "3rdparty/tvm-ffi/src/ffi/dtype.cc"
#include "3rdparty/tvm-ffi/src/ffi/error.cc"
#include "3rdparty/tvm-ffi/src/ffi/extra/env_c_api.cc"