d82fea2662
janet needs gcc >= 4.9 for stdatomic.h since version 1.26.0 andbfcfd58259
resulting in the following build failure since commit5c6f32bd25
: src/core/abstract.c:35:23: fatal error: stdatomic.h: No such file or directory Fixes: - http://autobuild.buildroot.org/results/a2b40adb93b751221ba2cdf9a705f86c30499021 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
15 lines
490 B
Plaintext
15 lines
490 B
Plaintext
config BR2_PACKAGE_JANET
|
|
bool "janet"
|
|
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_TOOLCHAIN_GCC_AT_LEAST_4_9
|