mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-18 05:13:43 -09:00
luajit is supported since the addition of the package in commit13114d0f93andcb92c44e78Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [Peter: append to LUA_CFFI_CONF_OPTS] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
549 B
Plaintext
18 lines
549 B
Plaintext
config BR2_PACKAGE_LUA_CFFI
|
|
bool "lua-cffi"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libffi
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_LIBFFI
|
|
help
|
|
This is a portable C FFI for Lua, based on libffi and aiming
|
|
to be mostly compatible with LuaJIT FFI, but written from
|
|
scratch.
|
|
|
|
https://github.com/q66/cffi-lua
|
|
|
|
comment "lua-cffi needs a toolchain w/ C++, gcc >= 4.8, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|