Wenyong Huang
Wenyong Huang
@donghengqaz, Thanks for uploading the PR! @loganek is also extending support for socket APIs, see https://github.com/bytecodealliance/wasm-micro-runtime/issues/1336, currently the development branch is dev/socket, and there are already some patches merged. It...
@qmyyxtl please build iwasm with libc-wasi and lib-pthread enabled: `cmake .. -DWAMR_BUILD_LIB_PTHREAD=1`, thanks. We also uploaded PR #1040 to refine to sample and document, the user experience should be better...
Hi, FreeRTOS is supported, but as it isn't a complete platform, some APIs must be implemented, like printf and vprintf, it wasn't added to the support list yet. Here are...
Hi, not sure why you cannot apply the extra passes to the LLVM module but need to apply them to LL file? To compile LL file to an object file,...
Hi, currently the output LL file is for debug purpose only.
@jakob999999 A possible method to access the memory from exec_env: ```C wasm_module_inst_t module_inst; uint32 app_start_offset, app_end_offset; void *mem_start_addr, *mem_end_addr; module_inst = wasm_runtime_get_module_inst(exec_env); /* Use offset 0 to get the begin/end...
Hi, seems that the build target isn't set correctly, could you please try building them with `cmake .. -DWAMR_BUILD_TARGET=AARCH64`?
@jasonleecode have you make clean and make again, please check whether invokeNative_em64.s is still being compiled? Normally file invokeNative_aarch64.s should be compiled instead of invokeNative_em64.s for ARM64 target.
@jasonleecode Did you build iwasm under the folder `product-mini/platforms/darwin` but not `product-mini/platforms/linux`? In MacOS, we should use the former to build iwasm.
@Lost-Temple Could you please try modifying file `wamr-sdk/wamr_config_default.cmake`, change the platform and target: ```cmake set (WAMR_BUILD_PLATFORM "darwin") set (WAMR_BUILD_TARGET AARCH64) ```