On Wed, 14 Apr 2021 14:56:16 GMT, Kevin Rushforth <k...@openjdk.org> wrote:
>> buildSrc/win.gradle line 46: >> >>> 44: def HOST_ARCH = getWinArch(ext.OS_ARCH) >>> 45: def TARGET_ARCH = getWinArch(ext.TARGET_ARCH) >>> 46: def IS_CROSS = HOST_ARCH != TARGET_ARCH >> >> can we move this to build.gradle? >> With the increasing number of supported configurations, there will otherwise >> be more gradle sub-files that have something similar. > > Yes, this does seem like a better plan. Should this be done as a follow-on or > do you want to see it done now? One reason I ask is that my PR #462 (which is > now approved, but waiting re-review) does something similar to `getWinArch()` > to determine whether we are running on aarch64 or not and should be modified > as well. In that case, a follow-up seems best (we can tackle mac/win/linux aarch64 simultaneously then) ------------- PR: https://git.openjdk.java.net/jfx/pull/439