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