nuttx-apps/interpreters
Huang Qi dec2cd9635 tools/Wasm: Decouple the wasm compilation and runtime specific AOT compilation
Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
2023-05-13 10:15:40 -03:00
..
bas Fix the nxstyle warning 2023-05-08 21:35:16 +03:00
duktape Makefile: replace INCDIR to INCDIR_PREFIX 2022-11-10 02:38:58 +08:00
ficl apps/interpreters/ficl/Make.defs: Add missing Apache Foundation copyright header 2023-03-08 13:50:23 -03:00
lua lua: download tarball from github release tag 2023-03-21 20:38:29 -03:00
luajit Initial LuaJIT interpreter load 2023-03-17 09:28:58 +08:00
luamodules luamodules: Fix implicit declaration warning for strncasecmp 2023-03-28 14:54:16 -03:00
minibasic Replace all strncpy with strlcpy 2023-05-08 21:35:16 +03:00
quickjs Makefile: replace INCDIR to INCDIR_PREFIX 2022-11-10 02:38:58 +08:00
toywasm toywasm: regen 2023-04-24 23:47:13 +08:00
wamr tools/Wasm: Decouple the wasm compilation and runtime specific AOT compilation 2023-05-13 10:15:40 -03:00
wasm3 Makefile: replace INCDIR to INCDIR_PREFIX 2022-11-10 02:38:58 +08:00
.gitignore
Make.defs Makefiles: Gregory Nutt: update licenses to Apache 2021-06-07 21:35:33 -05:00
Makefile Makefiles: Gregory Nutt: update licenses to Apache 2021-06-07 21:35:33 -05:00
README.md interpreters: add Lua support 2022-03-21 13:49:42 +08:00

Interpreters

This apps/ directory is set aside to hold interpreters that may be incorporated into NuttX.

Ficl

This is DIY port of Ficl (the Forth Inspired Command Language). See http://ficl.sourceforge.net/. It is a DIY port because the Ficl source is not in that directory, only an environment and instructions that will let you build Ficl under NuttX. The rest is up to you.

Lua

Fetch and build a Lua interpreter. Versions 5.2 through 5.4 are supported. The lua command will be added to NSH. Lua can run a script for a given path, execute a string of code, or open a readline compatible REPL on the NSH console. The <lua.h> and <lauxlib.h> headers are available to start a new embedded interpreter or extend Lua with C modules. See the luamod_hello example for how to include a built-in module.

A math library is required to build. Enable the LIBM config or use a toolchain provided math library.

The following configs are recommended for a full featured Lua interpreter:

  • LIBC_FLOATINGPOINT
  • SYSTEM_READLINE

Mini Basic

The Mini Basic implementation at apps/interpreters derives from version 1.0 by Malcolm McLean, Leeds University, and was released under the Creative Commons Attibution license. I am not legal expert, but this license appears to be compatible with the NuttX BSD license see: https://creativecommons.org/licenses/. I, however, cannot take responsibility for any actions that you might take based on my understanding. Please use your own legal judgement.