Skip to content

Commit bf45cee

Browse files
[GR-48963] Merge in tag jdk-22+17.
PullRequest: labsjdk-ce/16
2 parents 2f28877 + ece7168 commit bf45cee

File tree

412 files changed

+14965
-2405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

412 files changed

+14965
-2405
lines changed

ci.jsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
176176

177177
Build(defs, conf, is_musl_build):: conf + setupJDKSources(conf) + (if is_musl_build then self.MuslBootJDK else self.BootJDK) + {
178178
name: "build-jdk" + conf.name,
179-
timelimit: "2:10:00", # Windows is the long pole
179+
timelimit: "2:30:00", # Windows is the long pole
180180
diskspace_required: "10G",
181181
logs: ["*.log"],
182182
targets: ["gate"],
@@ -243,7 +243,7 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
243243
# Downstream Graal branch to test against. If you change this value to anything but
244244
# "master", you must create an ol-jira issue to change it back to master once the
245245
# next JVMCI release has been made. Add the issue id as a comment here.
246-
local downstream_branch = "me/GR-48881_1",
246+
local downstream_branch = "master",
247247

248248
local clone_graal(defs) = {
249249
# Checkout the graal-enterprise repo to the "_gate" version of the

make/JrtfsJar.gmk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -46,8 +46,10 @@ JIMAGE_PKGS := \
4646
jdk/internal/jrtfs \
4747
#
4848

49+
# Compile jrt-fs.jar with the interim compiler, as it
50+
# ends up in the image, this will ensure reproducible classes
4951
$(eval $(call SetupJavaCompilation, BUILD_JRTFS, \
50-
COMPILER := bootjdk, \
52+
COMPILER := interim, \
5153
DISABLED_WARNINGS := options, \
5254
TARGET_RELEASE := $(TARGET_RELEASE_JDK8), \
5355
SRC := $(TOPDIR)/src/java.base/share/classes, \

make/autoconf/basic.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ AC_DEFUN([BASIC_CHECK_DIR_ON_LOCAL_DISK],
479479
# df on AIX does not understand -l. On modern AIXes it understands "-T local" which
480480
# is the same. On older AIXes we just continue to live with a "not local build" warning.
481481
if test "x$OPENJDK_TARGET_OS" = xaix; then
482-
if "$DF -T local > /dev/null 2>&1"; then
482+
if $DF -T local > /dev/null 2>&1; then
483483
DF_LOCAL_ONLY_OPTION='-T local'
484484
else # AIX may use GNU-utils instead
485485
DF_LOCAL_ONLY_OPTION='-l'

0 commit comments

Comments
 (0)