On Tue, 2009-02-24 at 13:30 -0500, Jeff Squyres wrote:
> - Get Python to give you the possibility of opening dependent  
> libraries in the global scope.  This may be somewhat controversial;  
> there are good reasons to open plugins in private scopes.  But I have  
> to imagine that OMPI is not the only python extension out there that  
> wants to open plugins of its own; other such projects should be  
> running into similar issues.
> 
Can you check if the following works:
import dl
import sys
flags = sys.getdlopenflags()
sys.setdlopenflags(flags | dl.RTLD_GLOBAL)
import minimpi


--Nysal

Reply via email to