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

xiaoxiang 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 65b58724c interpreters/wamr/Kconfig: Add 
INTERPRETERS_WAMR_DEBUG_INTERP option
65b58724c is described below

commit 65b58724ca5c95f383c8b5edfb73707f26499003
Author: YAMAMOTO Takashi <yamam...@midokura.com>
AuthorDate: Mon Aug 29 13:25:40 2022 +0900

    interpreters/wamr/Kconfig: Add INTERPRETERS_WAMR_DEBUG_INTERP option
    
    Tested with sim/Linux/amd64 and esp32 devkit-c.
---
 interpreters/wamr/Kconfig | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/interpreters/wamr/Kconfig b/interpreters/wamr/Kconfig
index c609bfb5f..f3e3984cb 100644
--- a/interpreters/wamr/Kconfig
+++ b/interpreters/wamr/Kconfig
@@ -51,6 +51,17 @@ config INTERPRETERS_NONE
 
 endchoice
 
+config INTERPRETERS_WAMR_DEBUG_INTERP
+       bool "Enable debugger support in the interpreter"
+       default n
+       # Note: It only works with the classic interpreter
+       depends on INTERPRETERS_WAMR_CLASSIC
+       # Note: It uses thread-manager internally
+       depends on INTERPRETERS_WAMR_THREAD_MGR
+       # Note: It sets up the listening socket with SO_LINGER
+       depends on NET_TCP
+       depends on NET_SOLINGER
+
 config INTERPRETERS_WAMR_LOG
        bool "Enable log"
        default n

Reply via email to