-
Hello, I start to use wasm-micro-runtime. However I can not run the sample.
Any suggestions to solve it? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
wasm-micro-runtime/samples/multi-module/build> make |
Beta Was this translation helpful? Give feedback.
-
Hi @Zghw2012 , |
Beta Was this translation helpful? Give feedback.
Hi @Zghw2012 ,
fc 0a
opcode is formemory.copy
operation (see https://pengowray.github.io/wasm-ops/) which is part of bulk memory proposal. This is supported by WAMR but only enabled by default very recently: #1781You either migrate to the latest WAMR, or explicitly enable bulk memory by adding
-DWAMR_BUILD_BULK_MEMORY=1
to your cmake command.