Compile embedded wasm
| 124 | |
| 125 | /// Compile embedded wasm |
| 126 | void compileWasm() { |
| 127 | TRY(WasmEdge_CompilerCompileFromBuffer) |
| 128 | (Ptr{TRY(WasmEdge_CompilerCreate)(nullptr)}, EmbeddedNestedWasm.data(), |
| 129 | EmbeddedNestedWasm.size(), PathNestedWasmCompiled); |
| 130 | } |
| 131 | |
| 132 | /// Stack of nested VM |
| 133 | thread_local std::stack<WasmEdge_ExecutorContext *> ExecutorsStack; |