Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix command-reactor: Look for _initialize only if _start not found (#…
…2891) A wasm module can be either a command or a reactor, so it can export either `_start` or `_initialize`. Currently, if a command module is run, `iwasm` still looks for `_initialize`, resulting in the warning: `can not find an export 0 named _initialize in the module`. Change to look for `_initialize` only if `_start` not found to resolve the issue.
- Loading branch information