-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jigsaw support? provided as jmod & could be used for jlink to build os specific runtime #54
Comments
I don’t have a good knowledge of best practices there. Can you describe in details how it should be organized and how it will be used? |
Pretty much like JavaFX does now like this: similarly maybe with jmod format of this project we should use then use this runtime to run the javafx or skija program e.g. In order to to that, we need the release in jmod which is java module format with native content for more information: |
So jmods are used only to package a self-sufficient JRE+app package, correct? |
I think the best description for jmod is: |
Yeah but you can’t use jmods in normal app run, only when packaging your own jre, no?
… On 19. Nov 2020, at 01:52, Chengen Zhao ***@***.***> wrote:
I think the best description for jmod is:
if there are native parts(os related) in jar, then it should be packaged as jmod rather than jar
jar should only contains class files and other os irrelevant resources
In this sense, netty-native should be packaged as jmods, and lwjgl etc. since they all include native parts in the jar
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#54 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AACFU3D3R2BKR6PZBXDLRGTSQRT3RANCNFSM4TZZVYOQ>.
|
Right, usually we package different jmod into a customized runtime |
Ok, seems like a good thing to do eventually. If you want to participate, I’d be happy to review a PR that implements that. |
Hi:
Could this project provide jmod or jar in modular format
thus users could use jlink to build their own runtime for different os?
Thx
The text was updated successfully, but these errors were encountered: