Skip to content
Snippets Groups Projects
Commit c6c1afe2 authored by Michael Kuron's avatar Michael Kuron :mortar_board:
Browse files

Disable dlopen trick on OpenMPI >= 3.0.0

parent 9aea8976
No related merge requests found
......@@ -26,7 +26,7 @@
#include "core/debug/CheckFunctions.h"
// Workaround for OpenMPI library: it dynamically loads plugins which causes trouble when walberla itself is a shared lib
#if defined(OPEN_MPI) && !defined(_WIN32)
#if defined(OPEN_MPI) && !defined(_WIN32) && OMPI_MAJOR_VERSION < 3
#define OPEN_MPI_WORKAROUND
#include <dlfcn.h>
#endif
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment