Skip to content

Commit 68d5ae1

Browse files
authored
docs: fix cmake variable typo (#4441)
1 parent d598c0d commit 68d5ae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

product-mini/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The Fast JIT is a lightweight JIT engine with quick startup, small footprint and
111111
(6) To enable the `Multi-tier JIT` mode:
112112
``` Bash
113113
mkdir build && cd build
114-
cmake .. -DWAMR_BUILD_FAST_JTI=1 -DWAMR_BUILD_JIT=1
114+
cmake .. -DWAMR_BUILD_FAST_JIT=1 -DWAMR_BUILD_JIT=1
115115
make
116116
```
117117
The Multi-tier JIT is a two level JIT tier-up engine, which launches Fast JIT to run the wasm module as soon as possible and creates backend threads to compile the LLVM JIT functions at the same time, and when the LLVM JIT functions are compiled, the runtime will switch the extecution from the Fast JIT jitted code to LLVM JIT jitted code gradually, so as to gain the best performance.

0 commit comments

Comments
 (0)