Using jlink to cross-compile minimal JREs 16 January 2023 jlink is a JDK tool to create bespoke, minimal JREs for your applications. Let’s try it with a “Hello, world!” program: class Main { public static void main(String… args) { System.out.println(“Hello, world!”); } } My laptop is an M1 Mac and I have downloaded the Azul […]