File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ var getJibProfilesCommon = function (input, data) {
396
396
397
397
if ( input . build_os == 'macosx' && input . build_cpu == 'aarch64' ) {
398
398
common . boot_jdk_version = "17" ;
399
- common . boot_jdk_build_number = "19 " ;
399
+ common . boot_jdk_build_number = "24 " ;
400
400
} else {
401
401
common . boot_jdk_version = "16" ;
402
402
common . boot_jdk_build_number = "36" ;
@@ -1069,9 +1069,15 @@ var getJibProfilesDependencies = function (input, common) {
1069
1069
devkit_cross_prefix = input . build_platform + "-to-" ;
1070
1070
}
1071
1071
}
1072
-
1073
- var boot_jdk_platform = ( input . build_os == "macosx" ? "osx" : input . build_os )
1074
- + "-" + input . build_cpu ;
1072
+ var boot_jdk_os = input . build_os ;
1073
+ if ( input . build_os == "macosx" ) {
1074
+ if ( input . build_cpu == "aarch64" ) {
1075
+ boot_jdk_os = "macos" ;
1076
+ } else {
1077
+ boot_jdk_os = "osx" ;
1078
+ }
1079
+ }
1080
+ var boot_jdk_platform = boot_jdk_os + "-" + input . build_cpu ;
1075
1081
var boot_jdk_ext = ( input . build_os == "windows" ? ".zip" : ".tar.gz" )
1076
1082
// If running in WSL and building for Windows, it will look like Linux,
1077
1083
// but we need a Windows boot JDK.
You can’t perform that action at this time.
0 commit comments