-
Bug
-
Resolution: Fixed
-
P4
-
jfx22
-
b08
-
aarch64
-
linux
ADDITIONAL SYSTEM INFORMATION :
Linux/aarch64
A DESCRIPTION OF THE PROBLEM :
build.gradle, line 504, just determine this is linux, then download the jar with arch: x86_64.
In Linux(aarch64), need to download the jar with arch: aarch64.
expected: download org.eclipse.swt.gtk.linux.aarch64_3.124.200.v20231113-1355.jar
actually: download org.eclipse.swt.gtk.linux.x86_64_3.124.200.v20231113-1355.jar
howto:
build.gradle line 504
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" : ""
Linux/aarch64
A DESCRIPTION OF THE PROBLEM :
build.gradle, line 504, just determine this is linux, then download the jar with arch: x86_64.
In Linux(aarch64), need to download the jar with arch: aarch64.
expected: download org.eclipse.swt.gtk.linux.aarch64_3.124.200.v20231113-1355.jar
actually: download org.eclipse.swt.gtk.linux.x86_64_3.124.200.v20231113-1355.jar
howto:
build.gradle line 504
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" : ""
- relates to
-
JDK-8339270 GHA: build on Linux / aarch64
- Open
-
JDK-8321638 Update to SWT 4.30
- Resolved
- links to
-
Commit(master) openjdk/jfx/2bf8ffc4
-
Review(master) openjdk/jfx/1549