Config.in 913 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS
  2. bool
  3. # Needs __sync*() built-ins for 4-byte data, except on a few
  4. # architectures for which a specific implementation is
  5. # provided in ltp-testsuite
  6. default y if BR2_TOOLCHAIN_HAS_SYNC_4
  7. default y if BR2_arc
  8. # does not build on nios2, cachectl.h issue
  9. depends on !BR2_nios2
  10. config BR2_PACKAGE_LTP_TESTSUITE
  11. bool "ltp-testsuite"
  12. depends on BR2_USE_MMU # fork()
  13. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  14. depends on BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS
  15. select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
  16. select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC
  17. help
  18. The Linux Test Project provides a huge testsuite for Linux.
  19. http://linux-test-project.github.io
  20. comment "ltp-testsuite needs a toolchain w/ NPTL"
  21. depends on BR2_PACKAGE_LTP_TESTSUITE_ARCH_SUPPORTS
  22. depends on BR2_USE_MMU
  23. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL