You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2022/05/24 14:38:43 UTC

[incubator-nuttx-apps] branch master updated (1d216fde9 -> 562db060b)

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

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


    from 1d216fde9 import/Make.defs: Add -noincstd++
     new 90e164b70 interpreters/wamr/Kconfig: Add an option to enable wasi libc
     new 562db060b interpreters/wamr/Kconfig: Mention limitations about wasi

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 interpreters/wamr/Kconfig | 12 ++++++++++++
 1 file changed, 12 insertions(+)


[incubator-nuttx-apps] 02/02: interpreters/wamr/Kconfig: Mention limitations about wasi

Posted by xi...@apache.org.
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

commit 562db060b79b3cbbc4aaff3c256aae5e798d434e
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Tue May 24 10:08:50 2022 +0900

    interpreters/wamr/Kconfig: Mention limitations about wasi
---
 interpreters/wamr/Kconfig | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/interpreters/wamr/Kconfig b/interpreters/wamr/Kconfig
index a71dd79b4..d15c8df75 100644
--- a/interpreters/wamr/Kconfig
+++ b/interpreters/wamr/Kconfig
@@ -61,6 +61,14 @@ config INTERPRETERS_WAMR_LIBC_BUILTIN
 config INTERPRETERS_WAMR_LIBC_WASI
 	bool "Enable WASI libc"
 	default n
+	---help---
+	Note: As of writing this, this works only with main branch of
+	wasm-micro-runtime.
+	I.e. INTERPRETERS_WAMR_VERSION="main"
+
+	Note: As of writing this, most of the filesystem operations are
+	not implemented. (Mainly because of lack of openat family of
+	the API in NuttX.)
 
 config INTERPRETERS_WAMR_MULTI_MODULE
 	bool "Enable multi module support"


[incubator-nuttx-apps] 01/02: interpreters/wamr/Kconfig: Add an option to enable wasi libc

Posted by xi...@apache.org.
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

commit 90e164b708f5303618a8951f0c95fa90be9d9b2b
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Wed Apr 27 13:23:05 2022 +0900

    interpreters/wamr/Kconfig: Add an option to enable wasi libc
---
 interpreters/wamr/Kconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/interpreters/wamr/Kconfig b/interpreters/wamr/Kconfig
index d50f73e42..a71dd79b4 100644
--- a/interpreters/wamr/Kconfig
+++ b/interpreters/wamr/Kconfig
@@ -58,6 +58,10 @@ config INTERPRETERS_WAMR_LIBC_BUILTIN
 	bool "Enable built-in libc"
 	default n
 
+config INTERPRETERS_WAMR_LIBC_WASI
+	bool "Enable WASI libc"
+	default n
+
 config INTERPRETERS_WAMR_MULTI_MODULE
 	bool "Enable multi module support"
 	default n