Refactor WASM runner and logging functionality; add heartbeat task and improve initialization process

This commit is contained in:
Lukas Höppner
2026-08-12 01:22:09 +02:00
parent 27c3aaf88f
commit b623e5cf0a
13 changed files with 261 additions and 95 deletions
+2 -2
View File
@@ -84,10 +84,11 @@ else()
# WAMR Desktop-Konfiguration
set(WAMR_BUILD_INTERP 1 CACHE BOOL "" FORCE)
set(WAMR_BUILD_FAST_INTERP 1 CACHE BOOL "" FORCE)
# set(WAMR_BUILD_INTERP_TICKS 1 CACHE BOOL "" FORCE)
set(WAMR_BUILD_JIT 0 CACHE BOOL "" FORCE)
set(WAMR_BUILD_AOT 0 CACHE BOOL "" FORCE)
set(WAMR_BUILD_LIBC_BUILTIN 1 CACHE BOOL "" FORCE)
# Disable WASI
set(WAMR_BUILD_LIBC_WASI 0 CACHE BOOL "" FORCE)
@@ -99,7 +100,6 @@ else()
set(WAMR_BUILD_PLATFORM "linux" CACHE STRING "" FORCE)
endif()
# define Target 'freertos_kernel'
FetchContent_MakeAvailable(FreeRTOS_Kernel wamr_runtime)
# --------------------------------------------------------------------------