wasm-micro-runtime/core/shared/platform
Marcin Kolny 3e77b053c3
Enhance sock_addr_local syscall (#1320)
Slightly change the __wasi_sock_addr_local interface - since we already have
a `__wasi_addr_t` structure which is an union, there's no need for passing the
length around - the address buffer will always have the right length (i.e. max
of all address families).
2022-08-01 15:15:33 +08:00
..
alios Apply clang-format for core/shared and product-mini files (#785) 2021-10-14 09:12:07 +08:00
android Upgrade uvwasi to 1.42.0 and fix Android link issues (#938) 2022-01-06 18:25:37 +08:00
common Enhance sock_addr_local syscall (#1320) 2022-08-01 15:15:33 +08:00
darwin Enable source debugging feature for windows platform (#910) 2021-12-22 19:52:07 +08:00
esp-idf Refactor Orc JIT to enable lazy compilation (#974) 2022-01-20 18:40:13 +08:00
include Enhance sock_addr_local syscall (#1320) 2022-08-01 15:15:33 +08:00
linux Enable source debugging feature for windows platform (#910) 2021-12-22 19:52:07 +08:00
linux-sgx Enhance sock_addr_local syscall (#1320) 2022-08-01 15:15:33 +08:00
nuttx Set nuttx isatty definition according to CONFIG_SERIAL_TERMIOS (#1234) 2022-06-20 11:58:48 +08:00
riot Correct RIOT os_mmap size type to size_t (#1002) 2022-02-09 10:21:54 +08:00
rt-thread Apply clang-format for core/shared and product-mini files (#785) 2021-10-14 09:12:07 +08:00
vxworks Apply clang-format for core/shared and product-mini files (#785) 2021-10-14 09:12:07 +08:00
windows Enhance sock_addr_local syscall (#1320) 2022-08-01 15:15:33 +08:00
zephyr Apply clang-format for core/shared and product-mini files (#785) 2021-10-14 09:12:07 +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.