Wenyong Huang
Wenyong Huang
> Also added build flags to enable dynamic linking > > Please note this PR includes two extra commits: > > * [fecd383](https://github.com/bytecodealliance/wasm-micro-runtime/commit/fecd383c94bbc560eb7485e5c31fbd22f4272da8) > * [da31c07](https://github.com/bytecodealliance/wasm-micro-runtime/commit/da31c079b2fd39cbaa4f7c8a7b937fb783876b82) > > If we...
Could you rebase the code with main branch? A CI issue was fixed with ##3764
> > Could you rebase the code with main branch? A CI issue was fixed with ##3764 > > done Seems not rebased? The CI still reported the same error:...
Sorry that I didn't realize this PR is to merge to dev/dynamic_linking branch and some commits in main branch hadn't been merged to it yet, so the CI still reported...
@littetimo567 Do you use wamr go binding to call the wasm function which hasn't parameter? Maybe you can get the function first and then get its parameter count, and then...
OK, thanks for update, how about renaming `Call` to `CallFuncV2` and `lookupFunction` to `LookupFunction`? And could you submit a PR to upload the code?
@SBKarr thanks for the patch, it seems a good enhancement, could you help submit an PR? BTW, is it better to change to: ```cmake if (NOT MINGW) set (source_all ${c_source_all}...
Normally the compilation of `iwasm --llvm-jit` should be much faster than wamrc: (1) it supports lazy compilation in the main thread and only needs to compile the wasm function to...
The exception handling proposal has changed a lot after it was implemented in WAMR, it really takes a lot of effort to refactor the code to align with the latest...
Hi, WAMR and WAVM are LLVM-based, wasmtime is cranelift based, it really takes more time for the former to compile wasm files. And WAMR uses llvm new pass manager and...