David -
You're correct - adding --enable-static (or it's file equivalent enable_static)
causes components to be linked into libmpi instead of left as individual
components. This is probably a bug, but it's what Open MPI's done for it's
entire life, so it's unlikely to change. Removing the ena
Hi Jeff,
Thanks for the response. Reviewing my builds, I realized that for
1.4.2, I had configured using
contrib/platform/lanl/tlcc/optimized-nopanasas
per Ralph Castain's suggestion. That file includes both:
enable_dlopen=no
enable_shared=yes
enable_static=yes
Here is my *real* issue. I a
It is more than likely that you compiled Open MPI with --enable-static and/or
--disable-dlopen. In this case, all of Open MPI's plugins are slurped up into
the libraries themselves (e.g., libmpi.so or libmpi.a). That's why everything
continues to work properly.
On Oct 4, 2010, at 6:58 PM, Da