[Uno.Wasm.Bootstrap] Enable emscripten dynamic linking #10272
-
Upon attempting to call dlopen/dlsym, i get an exception stating to enable dynamic linking in empscripten, but when attempting to do so like how the emscripten docs say to, i get an exception on build, and looking at the binlog, it seems that theres conflicting symbol exports, i think since -sMAIN_MODULE exports everything. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Dynamic linking is not supported by Uno at this time, it's also not supported by the .NET runtime in general. We tried supporting it in the past, and it was very difficult to get right. Static linking is the only available route for .NET at this point. Why do you need dlopen to work? |
Beta Was this translation helpful? Give feedback.
Dynamic linking is not supported by Uno at this time, it's also not supported by the .NET runtime in general. We tried supporting it in the past, and it was very difficult to get right.
Static linking is the only available route for .NET at this point.
Why do you need dlopen to work?