1comment "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 8config BR2_PACKAGE_OPENMPI 9 bool "openmpi" 10 depends on BR2_USE_MMU # fork() 11 depends on BR2_USE_WCHAR 12 depends on BR2_TOOLCHAIN_HAS_ATOMIC 13 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL 14 depends on BR2_INSTALL_LIBSTDCPP 15 depends on !BR2_STATIC_LIBS # dlfcn.h 16 # from the configure script: "Sparc v8 target is not supported 17 # in this release of Open MPI" 18 depends on !BR2_sparc 19 help 20 A High Performance Message Passing Library. 21 22 https://www.open-mpi.org/ 23