C++项目使用emscripten工具链编译成WebAssembly,启动报错:
Module._malloc is not a function
解决方案:
在EXPORTED_FUNCTIONS中加入_malloc
由于项目使用CMakeList.txt构建的工程,因此调整CMakeLists中的link命令即可
target_link_options(${APP_NAME} PRIVATE
"-sEXPORTED_FUNCTIONS=[_main,_malloc,_free]"
)
参考资料:https://github.com/emscripten-core/emscripten/blob/main/ChangeLog.md#3131---012623