Config.in 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. config BR2_PACKAGE_FLUENT_BIT
  2. bool "fluent-bit"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  5. depends on !BR2_STATIC_LIBS # dlfcn.h
  6. select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC
  7. select BR2_PACKAGE_OPENSSL
  8. select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL
  9. select BR2_PACKAGE_LIBYAML
  10. help
  11. Fast and Lightweight Logs and Metrics processor.
  12. https://github.com/fluent/fluent-bit
  13. if BR2_PACKAGE_FLUENT_BIT
  14. config BR2_PACKAGE_FLUENT_BIT_WASM_ARCH
  15. string
  16. default "AARCH64" if BR2_aarch64 || BR2_aarch64_be
  17. default "ARC" if BR2_arcle || BR2_arceb
  18. default "ARM" if BR2_arm || BR2_armeb
  19. default "MIPS" if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  20. default "RISCV32" if BR2_riscv && BR2_RISCV_32
  21. default "RISCV64" if BR2_riscv && BR2_RISCV_64
  22. default "X86_32" if BR2_i386
  23. default "X86_64" if BR2_x86_64
  24. default "XTENSA" if BR2_xtensa
  25. config BR2_PACKAGE_FLUENT_BIT_WASM_ARCH_SUPPORTS
  26. bool
  27. default y if BR2_PACKAGE_FLUENT_BIT_WASM_ARCH != ""
  28. config BR2_PACKAGE_FLUENT_BIT_WASM
  29. bool "wasm runtime support"
  30. depends on BR2_INSTALL_LIBSTDCPP
  31. depends on BR2_PACKAGE_FLUENT_BIT_WASM_ARCH_SUPPORTS
  32. help
  33. Support for WASM-based plugins.
  34. comment "wasm runtime support needs a toolchain w/ C++"
  35. depends on BR2_PACKAGE_FLUENT_BIT_WASM_ARCH_SUPPORTS
  36. depends on !BR2_INSTALL_LIBSTDCPP
  37. endif
  38. comment "fluent-bit needs a toolchain w/ threads, dynamic library"
  39. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  40. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS