mogenson commented on a change in pull request #1075:
URL: 
https://github.com/apache/incubator-nuttx-apps/pull/1075#discussion_r827319861



##########
File path: interpreters/lua/Kconfig
##########
@@ -0,0 +1,90 @@
+#
+# For a description of the syntax of this configuration file,
+# see the file kconfig-language.txt in the NuttX tools repository.
+#
+
+menuconfig INTERPRETERS_LUA
+       bool "Lua interpreter support"
+       default n
+       select ARCH_SETJMP_H
+       select LIBC_FLOATINGPOINT
+       select LIBC_LOCALE
+       select LIBM
+       select SYSTEM_SYSTEM
+       ---help---
+               Embed Lua language interpreter.
+               Select the Lua version with the INTERPRETER_LUA_VERSION config.
+               It's suggested to enable the SYSTEM_READLINE config.
+
+if INTERPRETERS_LUA
+
+config INTERPRETER_LUA_VERSION
+       string "Lua interpreter version"
+       default "5.4.0"
+       ---help---
+               Lua release version to fetch and build.
+               Versions 5.2.0 and up are supported.
+
+config INTERPRETER_LUA_CORE_LIBS
+       bool "Load core Lua modules"
+       default y
+       ---help---
+               Load core Lua modules like "string" and "table".
+
+menuconfig INTERPRETER_LUA_SET_PATH
+       bool "Override default search path for Lua modules"
+       default n
+       ---help---
+               Set a custom package.path search path for Lua modules.
+
+if INTERPRETER_LUA_SET_PATH
+
+config INTERPRETER_LUA_PATH

Review comment:
       Will do.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to