Re: JOGL for Mac ARM Silicon
Posted by
Manu on
Jan 12, 2021; 7:38pm
URL: https://forum.jogamp.org/JOGL-for-Mac-ARM-Silicon-tp4040887p4040968.html
Next step, I tried to prepare a .app bundle for macOS to let users make tests without installing Java.
This required the
jpackage command found in
Azul Open JDK 15 that replaces the missing
javapackager of Oracle Java. To get a "universal" .app bundle able to run under x86_64 and arm_64 architectures, I also merged the Contents/MacOS executable and Java runtime .dylib files contained in the .app bundle generated by
jpackage with the
lipo command (see my previous message).
Finally, I signed the application with entitlements described
here and successfully submitted it for notarization to Apple.
The resulting application can be found in
SweetHome3D-6.4.2b-macosx.dmg (81.6 MB).
Emmanuel Puybaret