wasm-micro-runtime/core/shared/platform
zoraaver 3c9cd40aa6
Provide default vprintf on UWP (#2725)
UWP apps do not have a console attached so any output to stdout/stderr
is lost. Therefore, provide a default BH_VPRINTF in that case for debug
builds which redirects output to the debugger.
2023-11-07 20:37:43 +08:00
..
alios Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
android Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
common Move WASI types into separate header (#2724) 2023-11-07 09:39:15 +08:00
cosmopolitan Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
darwin Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
ego Make a workaround for EGO when fstat returns NOT_SUPPORT (#1970) 2023-02-21 11:11:27 +08:00
esp-idf Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
freebsd Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
include Move WASI types into separate header (#2724) 2023-11-07 09:39:15 +08:00
linux Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
linux-sgx Refactor clock functions to use WASI types (#2666) 2023-10-25 18:06:04 +08:00
nuttx Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
riot Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
rt-thread Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
vxworks Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +08:00
windows Provide default vprintf on UWP (#2725) 2023-11-07 20:37:43 +08:00
zephyr Abstract POSIX filesystem functions (#2585) 2023-10-19 19:19:39 +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.