Re #374 (new C++ module scheme) Fixed loaded module symbols not available to other modules under Linux

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3470 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5792ad3b71b34d5eaa8dc97ed6188c609b80fbb0
Former-commit-id: 21db885ed4d9f50b85d320be183380c3e844f2bf
This commit is contained in:
pouillot 2011-04-05 21:01:01 +00:00
parent 5a2ff17a51
commit 0e2f745a95

View file

@ -32,7 +32,7 @@
# define soLibHandle(handle) (void*)handle
#else
# include <dlfcn.h>
# define dlopen(soFileName) dlopen(soFileName, RTLD_LAZY)
# define dlopen(soFileName) dlopen(soFileName, RTLD_LAZY|RTLD_GLOBAL)
# define soLibHandle(handle) handle
#endif