aa0f115bf7
janet unconditionally uses fork since version 1.32.0 and4b8c1ac2d2
resulting in the following build failure since bump to version 1.32.1 in commitc87abf01a9
: janet.c:(.text+0x19bbc): undefined reference to `fork' Fixes: - http://autobuild.buildroot.org/results/f0771fc6c9905d3a6d60ce245df585b3c6096f7f Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
17 lines
547 B
Plaintext
17 lines
547 B
Plaintext
config BR2_PACKAGE_JANET
|
|
bool "janet"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
|
help
|
|
Janet is a functional and imperative programming language.
|
|
The entire language (core library, interpreter, compiler,
|
|
assembler, PEG) is less than 1MB. You can also add Janet
|
|
scripting to an application by embedding a single C file
|
|
and two headers.
|
|
|
|
https://janet-lang.org/
|
|
|
|
comment "janet needs a toolchain w/ gcc >= 4.9"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|