From 9295d52508bae4918d676f98aa53b4b49abae9be Mon Sep 17 00:00:00 2001 From: Cur1ed Date: Mon, 1 Sep 2025 23:26:17 +0800 Subject: [PATCH] Correct the build command in the doc --- doc/build_wamr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build_wamr.md b/doc/build_wamr.md index e5487cbf0..6d4e60741 100644 --- a/doc/build_wamr.md +++ b/doc/build_wamr.md @@ -341,7 +341,7 @@ And the wasm app can calls below APIs to allocate/free memory from/to the shared We can combine the configurations. For example, if we want to disable interpreter, enable AOT and WASI, we can run command: ``` Bash -cmake .. -DWAMR_BUILD_INTERP=0 -DWAMR_BUILD_AOT=1 -DWAMR_BUILD_LIBC_WASI=0 -DWAMR_BUILD_PLATFORM=linux +cmake .. -DWAMR_BUILD_INTERP=0 -DWAMR_BUILD_AOT=1 -DWAMR_BUILD_LIBC_WASI=1 -DWAMR_BUILD_PLATFORM=linux ``` Or if we want to enable interpreter, disable AOT and WASI, and build as X86_32, we can run command: