@@ -93,7 +93,6 @@ This tier indicates experimental features with foundational support levels. Thes
9393| Nuttx Compatibility | WAMR_BUILD_PALTFORM=nuttx | Portability |
9494| SGX Compatibility | WAMR_BUILD_PALTFORM=linux-sgx | Portability |
9595| Zephyr Compatibility | WAMR_BUILD_PALTFORM=zephyr | Portability |
96- | GC (Garbage Collection) | [ WAMR_BUILD_GC] ( ./build_wamr.md#garbage-collection ) | Wasm Proposal |
9796| Stringref | [ WAMR_BUILD_STRINGREF] ( ./build_wamr.md#garbage-collection ) | Wasm Proposal |
9897| Tail Calls | [ WAMR_BUILD_TAIL_CALL] ( ./build_wamr.md#tail-call-feature ) | Wasm Proposal |
9998| LLVM JIT | [ WAMR_BUILD_JIT] ( ./build_wamr.md#configure-llvm-jit ) | Running mode |
@@ -108,7 +107,6 @@ This tier indicates experimental features with foundational support levels. Thes
108107| Copy Call Stack | [ WAMR_BUILD_COPY_CALL_STACK] ( ./build_wamr.md#copy-call-stack ) | Runtime Extensions |
109108| Debug Interpreter | [ WAMR_BUILD_DEBUG_INTERP] ( ./build_wamr.md#configure-debug ) | Runtime Extensions |
110109| Dump call stack | [ WAMR_BUILD_DUMP_CALL_STACK] ( ./build_wamr.md#dump-call-stack-feature ) | Runtime Extensions |
111- | Garbage Collection Heap Verify | [ WAMR_BUILD_GC_HEAP_VERIFY] ( ./build_wamr.md#garbage-collection ) | Runtime Extensions |
112110| Native General Invocation | [ WAMR_BUILD_INVOKE_NATIVE_GENERAL] ( ./build_wamr.md#invoke-general-ffi ) | Runtime Extensions |
113111| Lazy JIT Compilation | [ WAMR_BUILD_LAZY_JIT] ( ./build_wamr.md#configure-llvm-jit ) | Runtime Extensions |
114112| Pthread | [ WAMR_BUILD_LIB_PTHREAD] ( ./build_wamr.md#lib-pthread ) | Runtime Extensions |
@@ -153,31 +151,33 @@ This tier indicates experimental features with foundational support levels. Thes
153151
154152## Features
155153
156- | Description | Compilation Flags | Labels |
157- | ------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------ |
158- | AliOS compatibility | WAMR_BUILD_PLATFORM=alios-things | Portability |
159- | Android Compatibility | WAMR_BUILD_PLATFORM=android | Portability |
160- | Cosmo Compatibility | WAMR_BUILD_PLATFORM=cosmopolitan | Portability |
161- | FreeBSD Compatibility | WAMR_BUILD_PLATFORM=freebsd | Portability |
162- | iOS Compatibility | WAMR_BUILD_PLATFORM=darwin | Portability |
163- | RIOT OS Compatibility | WAMR_BUILD_PLATFORM=riot | Portability |
164- | RT-Thread Compatibility | WAMR_BUILD_PLATFORM=rt-thread | Portability |
165- | VxWorks Compatibility | WAMR_BUILD_PLATFORM=vxworks | Portability |
166- | Windows Compatibility | WAMR_BUILD_PLATFORM=windows | Portability |
167- | Legacy Exception Handling | [ WAMR_BUILD_EXCE_HANDLING] ( ./build_wamr.md#exception-handling ) | Wasm Proposal |
168- | Multi-memory | [ WAMR_BUILD_MULTI_MEMORY] ( ./build_wamr.md#multi-memory ) | Wasm Proposal |
169- | Fast JIT | [ WAMR_BUILD_FAST_JIT] ( ./build_wamr.md#configure-fast-jit ) | Running mode |
170- | Multi-tier JIT | [ Combination of flags] ( ./build_wamr.md#configure-multi-tier-jit ) | Running mode |
171- | AoT Validator | [ WAMR_BUILD_AOT_VALIDATOR] ( ./build_wamr.md#aot-validator ) | Runtime Extensions |
172- | Debug AOT | [ WAMR_BUILD_DEBUG_AOT] ( ./build_wamr.md#configure-debug ) | Runtime Extensions |
173- | Dynamic AoT debugging | [ WAMR_BUILD_DYNAMIC_AOT_DEBUG] ( ./build_wamr.md#configure-debug ) | Runtime Extensions |
174- | Fast JIT Dump | [ WAMR_BUILD_FAST_JIT_DUMP] ( ./build_wamr.md#configure-fast-jit ) | Runtime Extensions |
175- | Instruction Metering | [ WAMR_BUILD_INSTRUCTION_METERING] ( ./build_wamr.md#instruction-metering ) | Runtime Extensions |
176- | Libc EMCC Compatibility | [ WAMR_BUILD_LIBC_EMCC] ( ./build_wamr.md#libc-emcc ) | Runtime Extensions |
177- | Libc UVWASI Compatibility | [ WAMR_BUILD_LIBC_UVWASI] ( ./build_wamr.md#libc-uvwasi ) | Runtime Extensions |
178- | RATS Library | [ WAMR_BUILD_LIB_RATS] ( ./build_wamr.md#librats ) | Runtime Extensions |
179- | Mini Loader | [ WAMR_BUILD_MINI_LOADER] ( ./build_wamr.md#wasm-mini-loader ) | Runtime Extensions |
180- | SGX IPFS Support | [ WAMR_BUILD_SGX_IPFS] ( ./build_wamr.md#intel-protected-file-system ) | Runtime Extensions |
181- | Static PGO | [ WAMR_BUILD_STATIC_PGO] ( ./build_wamr.md#running-pgoprofile-guided-optimization-instrumented-aot-file ) | Runtime Extensions |
182- | WASM cache | [ WAMR_BUILD_WASM_CACHE] ( ./build_wamr.md#wasm-cache ) | Runtime Extensions |
183- | Test garbage collection | [ WAMR_TEST_GC] ( ./build_wamr.md#test-garbage-collection ) | Runtime Extensions |
154+ | Description | Compilation Flags | Labels |
155+ | ------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------ |
156+ | AliOS compatibility | WAMR_BUILD_PLATFORM=alios-things | Portability |
157+ | Android Compatibility | WAMR_BUILD_PLATFORM=android | Portability |
158+ | Cosmo Compatibility | WAMR_BUILD_PLATFORM=cosmopolitan | Portability |
159+ | FreeBSD Compatibility | WAMR_BUILD_PLATFORM=freebsd | Portability |
160+ | iOS Compatibility | WAMR_BUILD_PLATFORM=darwin | Portability |
161+ | RIOT OS Compatibility | WAMR_BUILD_PLATFORM=riot | Portability |
162+ | RT-Thread Compatibility | WAMR_BUILD_PLATFORM=rt-thread | Portability |
163+ | VxWorks Compatibility | WAMR_BUILD_PLATFORM=vxworks | Portability |
164+ | Windows Compatibility | WAMR_BUILD_PLATFORM=windows | Portability |
165+ | GC (Garbage Collection) | [ WAMR_BUILD_GC] ( ./build_wamr.md#garbage-collection ) | Wasm Proposal |
166+ | Legacy Exception Handling | [ WAMR_BUILD_EXCE_HANDLING] ( ./build_wamr.md#exception-handling ) | Wasm Proposal |
167+ | Multi-memory | [ WAMR_BUILD_MULTI_MEMORY] ( ./build_wamr.md#multi-memory ) | Wasm Proposal |
168+ | Fast JIT | [ WAMR_BUILD_FAST_JIT] ( ./build_wamr.md#configure-fast-jit ) | Running mode |
169+ | Multi-tier JIT | [ Combination of flags] ( ./build_wamr.md#configure-multi-tier-jit ) | Running mode |
170+ | AoT Validator | [ WAMR_BUILD_AOT_VALIDATOR] ( ./build_wamr.md#aot-validator ) | Runtime Extensions |
171+ | Debug AOT | [ WAMR_BUILD_DEBUG_AOT] ( ./build_wamr.md#configure-debug ) | Runtime Extensions |
172+ | Dynamic AoT debugging | [ WAMR_BUILD_DYNAMIC_AOT_DEBUG] ( ./build_wamr.md#configure-debug ) | Runtime Extensions |
173+ | Fast JIT Dump | [ WAMR_BUILD_FAST_JIT_DUMP] ( ./build_wamr.md#configure-fast-jit ) | Runtime Extensions |
174+ | Garbage Collection Heap Verify | [ WAMR_BUILD_GC_HEAP_VERIFY] ( ./build_wamr.md#garbage-collection ) | Runtime Extensions |
175+ | Instruction Metering | [ WAMR_BUILD_INSTRUCTION_METERING] ( ./build_wamr.md#instruction-metering ) | Runtime Extensions |
176+ | Libc EMCC Compatibility | [ WAMR_BUILD_LIBC_EMCC] ( ./build_wamr.md#libc-emcc ) | Runtime Extensions |
177+ | Libc UVWASI Compatibility | [ WAMR_BUILD_LIBC_UVWASI] ( ./build_wamr.md#libc-uvwasi ) | Runtime Extensions |
178+ | RATS Library | [ WAMR_BUILD_LIB_RATS] ( ./build_wamr.md#librats ) | Runtime Extensions |
179+ | Mini Loader | [ WAMR_BUILD_MINI_LOADER] ( ./build_wamr.md#wasm-mini-loader ) | Runtime Extensions |
180+ | SGX IPFS Support | [ WAMR_BUILD_SGX_IPFS] ( ./build_wamr.md#intel-protected-file-system ) | Runtime Extensions |
181+ | Static PGO | [ WAMR_BUILD_STATIC_PGO] ( ./build_wamr.md#running-pgoprofile-guided-optimization-instrumented-aot-file ) | Runtime Extensions |
182+ | WASM cache | [ WAMR_BUILD_WASM_CACHE] ( ./build_wamr.md#wasm-cache ) | Runtime Extensions |
183+ | Test garbage collection | [ WAMR_TEST_GC] ( ./build_wamr.md#test-garbage-collection ) | Runtime Extensions |
0 commit comments