Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config BR2_PACKAGE_PCRE2
  2. bool "pcre2"
  3. help
  4. Perl Compatible Regular Expressions. By default, only the
  5. 8-bits libpcre2 is built. To get the 16-bits and/or 32-bits
  6. variants libpcre2-16/libpcre2-32, use the package
  7. sub-options.
  8. http://www.pcre.org/
  9. if BR2_PACKAGE_PCRE2
  10. config BR2_PACKAGE_PCRE2_16
  11. bool "16-bit pcre2"
  12. help
  13. This option builds the 16-bits pcre2 library, i.e
  14. 'libpcre2-16'
  15. config BR2_PACKAGE_PCRE2_32
  16. bool "32-bit pcre2"
  17. help
  18. This option builds the 32-bits pcre2 library, i.e
  19. 'libpcre2-32'
  20. config BR2_PACKAGE_PCRE2_JIT_ARCH_SUPPORTS
  21. bool
  22. default y if BR2_aarch64
  23. default y if BR2_arm || BR2_armeb
  24. default y if BR2_i386 || BR2_x86_64
  25. default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  26. default y if BR2_powerpc
  27. default y if BR2_sparc
  28. config BR2_PACKAGE_PCRE2_JIT
  29. bool "enable JIT support"
  30. depends on BR2_PACKAGE_PCRE2_JIT_ARCH_SUPPORTS
  31. depends on BR2_TOOLCHAIN_HAS_THREADS
  32. help
  33. This option enables JIT support
  34. comment "JIT support needs a toolchain w/ threads"
  35. depends on BR2_PACKAGE_PCRE2_JIT_ARCH_SUPPORTS
  36. depends on !BR2_TOOLCHAIN_HAS_THREADS
  37. endif