We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d61745 commit 2d404f7Copy full SHA for 2d404f7
2 files changed
build-scripts/unsupported_combination.cmake
@@ -72,3 +72,7 @@ if(WAMR_BUILD_SIMD EQUAL 1)
72
check_classic_interp_error("Unsupported build configuration: SIMD + CLASSIC_INTERP")
73
check_fast_jit_error("Unsupported build configuration: SIMD + FAST_JIT")
74
endif()
75
+
76
+if(WAMR_BUILD_SHARED_HEAP EQUAL 1)
77
+ check_fast_jit_error("Unsupported build configuration: SHARED_HEAP + FAST_JIT")
78
+endif()
doc/build_wamr.md
@@ -476,6 +476,9 @@ cmake -DWAMR_BUILD_PLATFORM=linux -DWAMR_BUILD_TARGET=ARM
476
> void shared_heap_free(void *ptr);
477
> ```
478
479
+> [!WARNING]
480
+> Currently, the shared-heap feature is not supported in fast-jit mode.
481
482
### **Shrunk the memory usage**
483
484
- **WAMR_BUILD_SHRUNK_MEMORY**=1/0, default to enable if not set
0 commit comments