You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2020/09/17 17:28:29 UTC

[incubator-nuttx-apps] branch master updated: interpreters/wamr: Add missing options

This is an automated email from the ASF dual-hosted git repository.

aguettouche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 6995602  interpreters/wamr: Add missing options
6995602 is described below

commit 69956020b44f0d9f123343040fb0f48d020206f9
Author: Huang Qi <hu...@xiaomi.com>
AuthorDate: Thu Sep 17 20:09:24 2020 +0800

    interpreters/wamr: Add missing options
    
    Signed-off-by: Huang Qi <hu...@xiaomi.com>
    Change-Id: Id1783f42842288a8f9c6ddf6105b6718dde757a1
---
 interpreters/wamr/Kconfig | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/interpreters/wamr/Kconfig b/interpreters/wamr/Kconfig
index c7f9b9a..e5f5699 100644
--- a/interpreters/wamr/Kconfig
+++ b/interpreters/wamr/Kconfig
@@ -33,4 +33,26 @@ config INTERPRETERS_WAMR_LIBC_BUILTIN
 	bool "Enable built-in libc"
 	default n
 
+config INTERPRETERS_WAMR_MULTI_MODULE
+	bool "Enable mutli module support"
+	default n
+
+config INTERPRETERS_WAMR_MINILOADER
+	bool "Enable mini-loader"
+	default n
+	---help---
+	Mini-loader don't check the integrity of wasm module
+
+config INTERPRETERS_WAMR_THREAD_MGR
+	bool "Enable thread manager"
+	default n
+
+config INTERPRETERS_WAMR_LIB_PTHREAD
+	bool "Enable lib pthread"
+	default n
+
+config INTERPRETERS_WAMR_DISABLE_HW_BOUND_CHECK
+	bool "Disable hardware bound check"
+	default n
+
 endif