wasm-micro-runtime/core/shared/platform
Huang Qi 5bdbba0dbe
platform/nuttx: Fix dcache operation in os_dcache_flush (#4225)
Replace up_invalidate_dcache_all() with up_flush_dcache_all() in
os_dcache_flush() to properly flush the data cache instead of just
invalidating it. This ensures that any modified data in the cache
is written back to memory before execution.

Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
2025-05-06 06:55:53 +08:00
..
alios Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
android Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
common fix: correct typos and improve comments across multiple files by codespell (#4116) 2025-03-07 08:21:54 +08:00
cosmopolitan Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
darwin Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
ego Make a workaround for EGO when fstat returns NOT_SUPPORT (#1970) 2023-02-21 11:11:27 +08:00
esp-idf Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
freebsd Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
include fix: correct typos and improve comments across multiple files by codespell (#4116) 2025-03-07 08:21:54 +08:00
linux Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
linux-sgx fix: correct typos and improve comments across multiple files by codespell (#4116) 2025-03-07 08:21:54 +08:00
nuttx platform/nuttx: Fix dcache operation in os_dcache_flush (#4225) 2025-05-06 06:55:53 +08:00
riot fix: correct typos and improve comments across multiple files by codespell (#4116) 2025-03-07 08:21:54 +08:00
rt-thread Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
vxworks Fix compiler warnings (#3784) 2024-09-11 08:59:16 +08:00
windows cr suggestions 2025-02-24 21:20:07 +00:00
zephyr Only access Zephyr thread stats info when it's available (#3962) 2024-12-19 14:26:34 +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.