wasm-micro-runtime/core/shared/platform
Wenyong Huang be54b4c7cc
Fix sample littlevgl/gui build issues on zephyr platform (#588)
Fix sample littlevgl/guil build issues on zephyr platform, modify code of zephyr platform by adding some macros to control some apis to fit different zephyr version, and align to zephyr-v2.3.0 for sample littlevgl/gui as the latest zephyr version (>=v2.4.0) requires that the thread stack for the thread to create must be defined by macro but not allocating stack memory dynamically.

Signed-off-by: Wenyong Huang <wenyong.huang@intel.com>
2021-03-23 14:20:50 +08:00
..
alios Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
android Implement libc-WASI for Linux SGX platform and update documents (#343) 2020-08-10 15:12:26 +08:00
common fix pthread library issues: (#522) 2021-02-09 10:36:44 +08:00
darwin Enable to use BH_VPRINTF macro to redirect stdout output (#560) 2021-03-06 22:29:58 +08:00
esp-idf Fix some compilation warnings and add esp-idf platform for experiment (#454) 2020-11-30 16:03:51 +08:00
include Enable to use BH_VPRINTF macro to redirect stdout output (#560) 2021-03-06 22:29:58 +08:00
linux Enable to use BH_VPRINTF macro to redirect stdout output (#560) 2021-03-06 22:29:58 +08:00
linux-sgx Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
nuttx Using posix thread implementation for NuttX (#462) 2020-12-07 21:15:41 +08:00
riot Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
rt-thread Fix failed in loading wasm byte-code if return NULL while size == 0 in os_malloc (#500) 2021-01-18 13:24:10 +08:00
vxworks Enable to use BH_VPRINTF macro to redirect stdout output (#560) 2021-03-06 22:29:58 +08:00
windows Enable to use BH_VPRINTF macro to redirect stdout output (#560) 2021-03-06 22:29:58 +08:00
zephyr Fix sample littlevgl/gui build issues on zephyr platform (#588) 2021-03-23 14:20:50 +08:00
README.md re-org platform APIs, simplify porting process (#201) 2020-03-16 16:43:57 +08:00

This folder contains the platform abstract layer for multiple platforms. To support a new platform, you can simply create a new folder here and implement all the APIs defined in include folder.

Refer to port_wamr.md for how to port WAMR to a target platform.