1config BR2_PACKAGE_RUBY 2 bool "ruby" 3 depends on BR2_USE_WCHAR 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on !BR2_STATIC_LIBS 6 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 7 depends on BR2_HOST_GCC_AT_LEAST_4_9 8 help 9 Object Oriented Scripting Language. 10 11 http://www.ruby-lang.org/ 12 13comment "ruby needs a toolchain w/ wchar, threads, dynamic library, gcc >= 4.9, host gcc >= 4.9" 14 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 15 BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 16 !BR2_HOST_GCC_AT_LEAST_4_9 17