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