Config.in 533 B

12345678910111213141516
  1. config 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. http://www.ruby-lang.org/
  11. comment "ruby needs a toolchain w/ wchar, threads, dynamic library, gcc >= 4.9, host gcc >= 4.9"
  12. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  13. BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  14. !BR2_HOST_GCC_AT_LEAST_4_9