Config.in 620 B

1234567891011121314
  1. config BR2_PACKAGE_LUAPOSIX
  2. bool "luaposix"
  3. # "bit32" is included in Lua 5.2+. luajit has an equivalent
  4. # "bit" module, but since it has a different name, luaposix
  5. # doesn't find it.
  6. select BR2_PACKAGE_LUA_BIT32 if BR2_PACKAGE_LUAINTERPRETER_ABI_VERSION_5_1 # runtime
  7. help
  8. This is a POSIX binding for LuaJIT, Lua 5.1 through 5.4;
  9. like most libraries it simply binds to C APIs on the
  10. underlying system, so it won't work on non-POSIX systems.
  11. However, it does try to detect the level of POSIX conformance
  12. of the underlying system and bind only available APIs.
  13. https://github.com/luaposix/luaposix