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
I don't think that pub will correctly manage and download the native extension shared libraries for a Dart extension. These are typically dart libraries with an import statement like
import("dart-ext:foo"),
which makes the standalone Dart binary load a library named foo.dll, libfoo.so, or libfoo.dylib, and run the initialization routine. To distribute these packages, pub would have to download the appropriate native library to the package cache.
This is also blocked on proper handling of the package: prefix in the URL of the importing library, when figuring out the path of the native shared library from the (relative) path in the dart-ext: import. This is issue #6264.
The text was updated successfully, but these errors were encountered:
I don't think that pub will correctly manage and download the native extension shared libraries for a Dart extension. These are typically dart libraries with an import statement like
import("dart-ext:foo"),
which makes the standalone Dart binary load a library named foo.dll, libfoo.so, or libfoo.dylib, and run the initialization routine. To distribute these packages, pub would have to download the appropriate native library to the package cache.
This is also blocked on proper handling of the package: prefix in the URL of the importing library, when figuring out the path of the native shared library from the (relative) path in the dart-ext: import. This is issue #6264.
The text was updated successfully, but these errors were encountered: