Config.in 547 B

12345678910111213141516
  1. config BR2_PACKAGE_JANET
  2. bool "janet"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
  5. help
  6. Janet is a functional and imperative programming language.
  7. The entire language (core library, interpreter, compiler,
  8. assembler, PEG) is less than 1MB. You can also add Janet
  9. scripting to an application by embedding a single C file
  10. and two headers.
  11. https://janet-lang.org/
  12. comment "janet needs a toolchain w/ gcc >= 4.9"
  13. depends on BR2_USE_MMU
  14. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9