Config.in 510 B

12345678910111213141516
  1. comment "openmpi needs a toolchain w/ dynamic library, NPTL, wchar, C++"
  2. depends on BR2_USE_MMU
  3. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
  4. || !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
  5. config BR2_PACKAGE_OPENMPI
  6. bool "openmpi"
  7. depends on BR2_USE_MMU # fork()
  8. depends on BR2_USE_WCHAR
  9. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  10. depends on BR2_INSTALL_LIBSTDCPP
  11. depends on !BR2_STATIC_LIBS # dlfcn.h
  12. help
  13. A High Performance Message Passing Library.
  14. https://www.open-mpi.org/