1# Architecture dependency from the bundled bdwgc. 2config 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 9config BR2_PACKAGE_GAUCHE 10 bool "gauche" 11 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL 12 depends on BR2_USE_MMU # fork() 13 depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS 14 depends on !BR2_STATIC_LIBS 15 help 16 Gauche is an R7RS Scheme implementation developed to be a 17 handy script interpreter, which allows programmers and 18 system administrators to write small to large scripts for 19 their daily chores. Quick startup, built-in system 20 interface, native multilingual support are some of its 21 goals. 22 23 http://practical-scheme.net/gauche/ 24 25comment "gauche needs a toolchain w/ NPTL, dynamic library" 26 depends on BR2_USE_MMU 27 depends on BR2_PACKAGE_GAUCHE_ARCH_SUPPORTS 28 depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS 29