kumquat-buildroot/package/janet/Config.in
Fabrice Fontaine d82fea2662 package/janet: needs gcc >= 4.9
janet needs gcc >= 4.9 for stdatomic.h since version 1.26.0 and
bfcfd58259
resulting in the following build failure since commit
5c6f32bd25:

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>
2023-03-12 15:50:30 +01:00

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