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
{{ message }}
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
The OSGi bundles combine the natives modules into bundles in order for them to use the standard OSGi library loading mechanisms. Unfortunately, the natives modules include module descriptors that look like this:
The important line is the opens line: The natives modules are open for reflection, and this is used to find native libraries when the bundles are used on the JPMS module path. Without that opens section, the native libraries can't be located when the bundles are used on the JPMS module path. I'm not certain how to fix this; we might need to rewrite the module descriptors when multiple modules are combined into a single bundle.
The text was updated successfully, but these errors were encountered:
The OSGi bundles combine the natives modules into bundles in order for them to use the standard OSGi library loading mechanisms. Unfortunately, the natives modules include module descriptors that look like this:
The important line is the
opens
line: The natives modules are open for reflection, and this is used to find native libraries when the bundles are used on the JPMS module path. Without thatopens
section, the native libraries can't be located when the bundles are used on the JPMS module path. I'm not certain how to fix this; we might need to rewrite the module descriptors when multiple modules are combined into a single bundle.The text was updated successfully, but these errors were encountered: