You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many languages support calling native libraries at runtime, such as Java through JNI, and C/C++ through dlopen.
There are many benefits to calling native libraries. Some functionalities currently not supported by WebAssembly can be solved by calling native libraries written in other languages. It enables more applications to be compiled to run on standalone WebAssembly platforms (e.g., wasmtime). In pursuit of performance, it is also necessary to use native implementation. It is convenient to reuse the existing native library functionalities.
Are there plans for WebAssembly to support interfaces like dlopen/dlsym to call native libraries?
The text was updated successfully, but these errors were encountered:
Many languages support calling native libraries at runtime, such as Java through JNI, and C/C++ through dlopen.
There are many benefits to calling native libraries. Some functionalities currently not supported by WebAssembly can be solved by calling native libraries written in other languages. It enables more applications to be compiled to run on standalone WebAssembly platforms (e.g., wasmtime). In pursuit of performance, it is also necessary to use native implementation. It is convenient to reuse the existing native library functionalities.
Are there plans for WebAssembly to support interfaces like dlopen/dlsym to call native libraries?
The text was updated successfully, but these errors were encountered: