From e60a06484e5db7bd6c78a61a232a7d176c68f4d0 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Wed, 4 Dec 2019 22:04:00 +0100 Subject: [PATCH] need to initialize here also for osx and co. --- src/simix/smx_context.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/simix/smx_context.cpp b/src/simix/smx_context.cpp index 31d2aa2ffb..93acd015e8 100644 --- a/src/simix/smx_context.cpp +++ b/src/simix/smx_context.cpp @@ -60,6 +60,7 @@ void SIMIX_context_mod_init() xbt_assert(simix_global->context_factory == nullptr); #if HAVE_SMPI && (defined(__APPLE__) || defined(__NetBSD__)) + smpi_init_options(); std::string priv = simgrid::config::get_value("smpi/privatization"); if (context_factory_name == "thread" && (priv == "dlopen" || priv == "yes" || priv == "default" || priv == "1")) { XBT_WARN("dlopen+thread broken on Apple and BSD. Switching to raw contexts."); @@ -68,6 +69,7 @@ void SIMIX_context_mod_init() #endif #if HAVE_SMPI && defined(__FreeBSD__) + smpi_init_options(); if (context_factory_name == "thread" && simgrid::config::get_value("smpi/privatization") != "no") { XBT_WARN("mmap broken on FreeBSD, but dlopen+thread broken too. Switching to dlopen+raw contexts."); context_factory_name = "raw"; -- 2.20.1