Skip to content

Commit 301500a

Browse files
committed
Load libmono as RTLD_GLOBAL
1 parent 2c0bd6f commit 301500a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clr_loader/ffi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def load_mono(path=None, gc=None):
4242
if path is None:
4343
raise RuntimeError("Could not find libmono")
4444

45-
return ffi.dlopen(path)
45+
return ffi.dlopen(path, ffi.RTLD_GLOBAL)
4646

4747

4848
def load_netfx():

0 commit comments

Comments
 (0)