Config.in 726 B

12345678910111213141516171819202122
  1. comment "openmpi needs a toolchain w/ dynamic library, NPTL, wchar, C++"
  2. depends on BR2_USE_MMU
  3. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  4. depends on !BR2_sparc
  5. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
  6. || !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
  7. config BR2_PACKAGE_OPENMPI
  8. bool "openmpi"
  9. depends on BR2_USE_MMU # fork()
  10. depends on BR2_USE_WCHAR
  11. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  12. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  13. depends on BR2_INSTALL_LIBSTDCPP
  14. depends on !BR2_STATIC_LIBS # dlfcn.h
  15. # from the configure script: "Sparc v8 target is not supported
  16. # in this release of Open MPI"
  17. depends on !BR2_sparc
  18. help
  19. A High Performance Message Passing Library.
  20. https://www.open-mpi.org/