Config.in 608 B

123456789101112131415161718
  1. config BR2_PACKAGE_NUMACTL_ARCH_SUPPORTS
  2. bool
  3. # numactl uses some system calls that are not available on all
  4. # architectures.
  5. default y if BR2_aarch64
  6. default y if BR2_i386 || BR2_x86_64
  7. default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  8. default y if BR2_powerpc
  9. config BR2_PACKAGE_NUMACTL
  10. bool "numactl"
  11. depends on BR2_PACKAGE_NUMACTL_ARCH_SUPPORTS
  12. help
  13. numactl allows you to run your application on specific cpus
  14. and memory nodes. It does this by supplying a NUMA memory
  15. policy to the operating system before running your program.
  16. https://github.com/numactl/numactl