Re: Cross-compiling JavaFX for Apple ARM64

2021-11-29 Thread Kevin Rushforth
Not currently. I admit it would be nice, but there are some challenges that make this difficult. One of the main ones that Johan discovered is that the WebKit build system builds some tools (executable binaries) that are then used in later stages of the build. This means that those tools need

Cross-compiling JavaFX for Apple ARM64

2021-11-25 Thread Michael Strauß
JavaFX can be cross-compiled for Apple ARM64 on an Intel Mac by specifying TARGET_ARCH=arm64 for the Gradle build. This works for all native libraries except for WebKit, because TARGET_ARCH is not passed to WebKit's cmake script. Are there any plans to support this particular scenario?