Config.in 1015 B

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