You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by je...@apache.org on 2021/05/27 06:20:52 UTC

[incubator-nuttx-apps] branch master updated (b843486 -> f6f4de1)

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

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


    from b843486  readline: Reset offset when top command is issued repeateadly
     new a077598  interpreters: wamr: Change the default version to "04-15-2021"
     new f6f4de1  interpreters: wamr: Add touch in Makefile to avoid unnecessary mv

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  | 2 +-
 interpreters/wamr/Makefile | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

[incubator-nuttx-apps] 02/02: interpreters: wamr: Add touch in Makefile to avoid unnecessary mv

Posted by je...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f6f4de1ca2874e615fe1722a8cf2dbcadba63804
Author: Masayuki Ishikawa <ma...@gmail.com>
AuthorDate: Wed May 26 14:21:14 2021 +0900

    interpreters: wamr: Add touch in Makefile to avoid unnecessary mv
    
    Signed-off-by: Masayuki Ishikawa <Ma...@jp.sony.com>
---
 interpreters/wamr/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/interpreters/wamr/Makefile b/interpreters/wamr/Makefile
index 15c27ab..0a3a32d 100644
--- a/interpreters/wamr/Makefile
+++ b/interpreters/wamr/Makefile
@@ -55,6 +55,7 @@ $(WAMR_UNPACK): $(WAMR_TARBALL)
 	$(Q) echo "Unpacking $(WAMR_TARBALL) to $(WAMR_UNPACK)"
 	$(Q) unzip $(WAMR_TARBALL)
 	$(Q) mv wasm-micro-runtime-$(WAMR_VERSION_STUB)$(WAMR_VERSION) $(WAMR_UNPACK)
+	$(Q) touch $(WAMR_UNPACK)
 
 context:: $(WAMR_UNPACK)
 

[incubator-nuttx-apps] 01/02: interpreters: wamr: Change the default version to "04-15-2021"

Posted by je...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a077598b6d0c10f091caa9324e9cdfbe2ebf889c
Author: Masayuki Ishikawa <ma...@gmail.com>
AuthorDate: Wed May 26 14:10:44 2021 +0900

    interpreters: wamr: Change the default version to "04-15-2021"
    
    Summary:
    - This commit changes the default version to "04-15-2021"
      to fix a compile error for Cortex-M target
    
    Impact:
    - WASM micro runtime (WAMR)
    - NOTE: There are still compile warnings in the WAMR which
      should be fixed later
    
    Testing:
    - Tested with spresense (NOTE: need to add -lm)
    - Tested with esp32-devkitc
    
    Signed-off-by: Masayuki Ishikawa <Ma...@jp.sony.com>
---
 interpreters/wamr/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/interpreters/wamr/Kconfig b/interpreters/wamr/Kconfig
index 4896b40..33374f9 100644
--- a/interpreters/wamr/Kconfig
+++ b/interpreters/wamr/Kconfig
@@ -12,7 +12,7 @@ if INTERPRETERS_WAMR
 
 config INTERPRETERS_WAMR_VERSION
 	string "WAMR Version"
-	default "09-29-2020"
+	default "04-15-2021"
 	---help---
 	Version 09-29-2020 and later (include main) supported.