From 0e5dfe270e91edc9e2624f11c5ccf9d22e69343b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Laban?= Date: Mon, 29 Apr 2019 08:29:32 -0400 Subject: [PATCH] mono emscripten double loading issue Commit migrated from https://github.com/mono/mono/commit/51abc92b6e42e65149835602b0d643a29ac5b4b1 --- src/mono/mono/utils/mono-dl-wasm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mono/mono/utils/mono-dl-wasm.c b/src/mono/mono/utils/mono-dl-wasm.c index d0f0b62..53afb90 100644 --- a/src/mono/mono/utils/mono-dl-wasm.c +++ b/src/mono/mono/utils/mono-dl-wasm.c @@ -71,6 +71,7 @@ mono_dl_convert_flags (int flags) void * mono_dl_open_file (const char *file, int flags) { + // issue https://github.com/emscripten-core/emscripten/issues/8511 if (strstr(file, "System.Native")) { return NULL; } -- 2.7.4