Config.in 1.0 KB

12345678910111213141516171819202122232425262728
  1. # Architecture dependency from the bundled bdwgc.
  2. config BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS
  3. bool
  4. default y if BR2_arm || BR2_armeb || BR2_i386 || BR2_m68k || \
  5. BR2_mips || BR2_mipsel || BR2_mips64 || \
  6. BR2_mips64el || BR2_powerpc || BR2_powerpc64 || \
  7. BR2_powerpc64le || BR2_sh || BR2_x86_64
  8. config BR2_PACKAGE_GAUCHE
  9. bool "gauche"
  10. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  11. depends on BR2_USE_MMU # fork()
  12. depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS
  13. depends on !BR2_STATIC_LIBS
  14. help
  15. Gauche is an R7RS Scheme implementation developed to be a
  16. handy script interpreter, which allows programmers and
  17. system administrators to write small to large scripts for
  18. their daily chores. Quick startup, built-in system
  19. interface, native multilingual support are some of its
  20. goals.
  21. http://practical-scheme.net/gauche/
  22. comment "gauche needs a toolchain w/ NPTL, dynamic library"
  23. depends on BR2_USE_MMU
  24. depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS
  25. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS