Config.in 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. config BR2_PACKAGE_ICU
  2. bool "icu"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_HOST_GCC_AT_LEAST_4_9 # C++11 PR56019
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 PR56019
  7. depends on BR2_TOOLCHAIN_HAS_THREADS
  8. # icu does some funky things by generating by itself an ELF
  9. # file, and it cannot easily be changed to generate FLAT
  10. # format.
  11. depends on !BR2_BINFMT_FLAT
  12. help
  13. International Components for Unicode.
  14. http://site.icu-project.org/
  15. if BR2_PACKAGE_ICU
  16. config BR2_PACKAGE_ICU_CUSTOM_DATA_PATH
  17. string "Path to custom data library file"
  18. help
  19. This option allows to define the path to a custom data
  20. library generated with http://apps.icu-project.org/datacustom/
  21. Make sure you select the appropiate version to match the one
  22. provided by buildroot.
  23. Leave empty to not use this functionality.
  24. endif
  25. comment "icu needs a toolchain w/ C++, wchar, threads, gcc >= 4.9, host gcc >= 4.9"
  26. depends on !BR2_BINFMT_FLAT
  27. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  28. !BR2_TOOLCHAIN_HAS_THREADS || \
  29. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  30. !BR2_HOST_GCC_AT_LEAST_4_9