From a9ab5ec8a69d5832a40e212fe3ef8b4e7d4c5d58 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 20 May 2024 12:51:50 +0900 Subject: [PATCH] wamr: rename a few recently-added nuttx options from: ARCH_TEXT_HEAP_SEPARATE_DATA_ADDRESS ARCH_TEXT_HEAP_WORD_ALIGNED_READ to: ARCH_HAVE_TEXT_HEAP_SEPARATE_DATA_ADDRESS ARCH_HAVE_TEXT_HEAP_WORD_ALIGNED_READ --- interpreters/wamr/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interpreters/wamr/Kconfig b/interpreters/wamr/Kconfig index fbe400641..6f3dba779 100644 --- a/interpreters/wamr/Kconfig +++ b/interpreters/wamr/Kconfig @@ -49,12 +49,12 @@ config INTERPRETERS_WAMR_AOT_QUICK_ENTRY config INTERPRETERS_WAMR_AOT_WORD_ALIGN_READ bool "Make WAMR AOT loader use word-aligned read" - default y if ARCH_TEXT_HEAP_WORD_ALIGNED_READ + default y if ARCH_HAVE_TEXT_HEAP_WORD_ALIGNED_READ default n config INTERPRETERS_WAMR_MEM_DUAL_BUS_MIRROR bool "Make WAMR AOT loader aware of separate instruction/data memory mapping" - default y if ARCH_TEXT_HEAP_SEPARATE_DATA_ADDRESS + default y if ARCH_HAVE_TEXT_HEAP_SEPARATE_DATA_ADDRESS default n choice