Config.in 910 B

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_JEMALLOC_ARCH_SUPPORTS
  2. bool
  3. # see include/jemalloc/internal/quantum.h
  4. default y if BR2_arm || BR2_armeb
  5. default y if BR2_aarch64 || BR2_aarch64_be
  6. default y if BR2_i386 || BR2_x86_64
  7. default y if BR2_m68k
  8. default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  9. default y if BR2_nios2
  10. default y if BR2_or1k
  11. default y if BR2_powerpc
  12. default y if BR2_riscv
  13. default y if BR2_sh4 || BR2sh4eb || BR2_sh4a || BR2_sh4aeb
  14. default y if BR2_sparc64
  15. config BR2_PACKAGE_JEMALLOC
  16. bool "jemalloc"
  17. depends on BR2_PACKAGE_JEMALLOC_ARCH_SUPPORTS
  18. depends on BR2_TOOLCHAIN_HAS_THREADS
  19. help
  20. This library providing a malloc(3) implementation that
  21. emphasizes fragmentation avoidance and scalable concurrency
  22. support.
  23. http://jemalloc.net/
  24. comment "jemalloc needs a toolchain w/ threads"
  25. depends on BR2_PACKAGE_JEMALLOC_ARCH_SUPPORTS
  26. depends on !BR2_TOOLCHAIN_HAS_THREADS