We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 724ca1e commit 04f0ce7Copy full SHA for 04f0ce7
clr_loader/ffi/__init__.py
@@ -35,6 +35,8 @@ def load_hostfxr(dotnet_root):
35
36
37
def load_mono(path=None, gc=None):
38
+ # Preload C++ standard library, Mono needs that and doesn't properly link against it
39
+ ffi.dlopen("stdc++", ffi.RTLD_GLOBAL)
40
if path is None:
41
from ctypes.util import find_library
42
0 commit comments