Skip to content

Commit 527b0e4

Browse files
committed
8248984: Bump minimum boot jdk to JDK 15
Reviewed-by: darcy, erikj, dholmes
1 parent ac15d64 commit 527b0e4

File tree

2 files changed

+5
-18
lines changed

2 files changed

+5
-18
lines changed

make/autoconf/version-numbers

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ DEFAULT_VERSION_EXTRA3=0
3636
DEFAULT_VERSION_DATE=2021-03-16
3737
DEFAULT_VERSION_CLASSFILE_MAJOR=60 # "`$EXPR $DEFAULT_VERSION_FEATURE + 44`"
3838
DEFAULT_VERSION_CLASSFILE_MINOR=0
39-
DEFAULT_ACCEPTABLE_BOOT_VERSIONS="14 15 16"
39+
DEFAULT_ACCEPTABLE_BOOT_VERSIONS="15 16"
4040
DEFAULT_JDK_SOURCE_TARGET_VERSION=16
4141
DEFAULT_PROMOTED_VERSION_PRE=ea
4242

make/conf/jib-profiles.js

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ var getJibProfilesCommon = function (input, data) {
381381
};
382382
};
383383

384-
common.boot_jdk_version = "14";
384+
common.boot_jdk_version = "15";
385385
common.boot_jdk_build_number = "36";
386386
common.boot_jdk_home = input.get("boot_jdk", "install_path") + "/jdk-"
387387
+ common.boot_jdk_version
@@ -994,17 +994,8 @@ var getJibProfilesDependencies = function (input, common) {
994994
? input.get("gnumake", "install_path") + "/cygwin/bin"
995995
: input.get("gnumake", "install_path") + "/bin");
996996

997-
if (input.build_cpu == 'aarch64') {
998-
boot_jdk = {
999-
organization: common.organization,
1000-
ext: "tar.gz",
1001-
module: "jdk-linux_aarch64",
1002-
revision: "14+1.0",
1003-
configure_args: "--with-boot-jdk=" + common.boot_jdk_home,
1004-
environment_path: common.boot_jdk_home + "/bin"
1005-
}
1006-
} else {
1007-
boot_jdk = {
997+
var dependencies = {
998+
boot_jdk: {
1008999
server: "jpg",
10091000
product: "jdk",
10101001
version: common.boot_jdk_version,
@@ -1013,11 +1004,7 @@ var getJibProfilesDependencies = function (input, common) {
10131004
+ boot_jdk_platform + "_bin" + boot_jdk_ext,
10141005
configure_args: "--with-boot-jdk=" + common.boot_jdk_home,
10151006
environment_path: common.boot_jdk_home + "/bin"
1016-
}
1017-
}
1018-
1019-
var dependencies = {
1020-
boot_jdk: boot_jdk,
1007+
},
10211008

10221009
devkit: {
10231010
organization: common.organization,

0 commit comments

Comments
 (0)