depencency linking
Currently, Pinc uses dlopen / LoadLibrary / etc to load dependencies. This is great for reducing the need for the library to be present at compile time, but it would be nice to directly link a dependency rather than opening it at runtime.
This is a requirement for platforms like the web, where dynamic linking is not an option.
depencency linking
Currently, Pinc uses
dlopen/LoadLibrary/ etc to load dependencies. This is great for reducing the need for the library to be present at compile time, but it would be nice to directly link a dependency rather than opening it at runtime.This is a requirement for platforms like the web, where dynamic linking is not an option.