RFR: 8339212: gradle downloads x64 binary of SWT on Linux/aarch64

ANUPAM DEV duke at openjdk.org
Thu Aug 29 13:55:27 UTC 2024


On Thu, 29 Aug 2024 11:55:08 GMT, Kevin Rushforth <kcr at openjdk.org> wrote:

>> Hi,
>> 
>> I have updated the name of the SWT.jar that needs to be downloaded during the build process for Linux aarch64.
>> from:
>>     IS_LINUX ? "org.eclipse.swt.gtk.linux.x86_64_3.124.200.v20231113-1355" : ""
>> 
>> to:
>>     IS_LINUX && IS_AARCH64 ? "org.eclipse.swt.gtk.linux.aarch64_3.124.200.v20231113-1355" :
>>     IS_LINUX && !IS_AARCH64 ? "org.eclipse.swt.gtk.linux.x86_64_3.124.200.v20231113-1355" : ""
>> 
>> Please review.
>> 
>> Regards,
>> Anupam
>
> I updated the JBS bug title to be clearer. Can you update this PR title to match?

Hi @kevinrushforth,
Thankyou for the review. Can you please let me know how to get the checksum for aarch64? I see it gets generated automatically by gradle. ( https://github.com/openjdk/jfx/tree/master/gradle#readme )
I do not have aarch64 headful machine to generate the checksum either. As you suggested, copying the entry for Linux /x64 and modifying it will have the same checksum as x86-64 which would be wrong. 
Please suggest.

Thanks,
~Anupam

-------------

PR Comment: https://git.openjdk.org/jfx/pull/1549#issuecomment-2317726959


More information about the openjfx-dev mailing list