set default value of WAMR_BUILD_REF_TYPES to 1 in standalone cases (#4227)

- set default value of WAMR_BUILD_REF_TYPES to 1 in CMakeLists.txt
This commit is contained in:
Liu Jia
2025-04-30 14:10:56 +08:00
committed by GitHub
parent a9966897b6
commit 9773390537
5 changed files with 16 additions and 4 deletions

View File

@ -48,6 +48,9 @@ endif ()
if (NOT WAMR_BUILD_AOT)
set (WAMR_BUILD_AOT 1)
endif ()
if (NOT WAMR_BUILD_REF_TYPES)
set (WAMR_BUILD_REF_TYPES 1)
endif ()
set (WAMR_BUILD_LIBC_BUILTIN 1)
set (WAMR_BUILD_LIBC_WASI 1)

View File

@ -55,4 +55,3 @@ else
./iwasm --native-lib=./libtest_module_malloc.so wasm-app/test.aot
fi
fi