Skip to content

Commit 2e0f7ce

Browse files
[GR-50939] Merge in tag jdk-23+11.
PullRequest: labsjdk-ce/59
2 parents a5c9f75 + 2941dfc commit 2e0f7ce

File tree

327 files changed

+8516
-5779
lines changed

Some content is hidden

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

327 files changed

+8516
-5779
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ local contains(str, needle) = std.findSubstr(needle, str) != [];
248248
# next JVMCI release has been made. Add the issue id as a comment here.
249249
# You might want to point this to the merge commit of a Graal PR, i.e., include
250250
# the "_gate" suffix.
251-
local downstream_branch = "labsjdk/automation-2-15-2024-4249_gate",
251+
local downstream_branch = "labsjdk/automation-2-22-2024-3494_gate",
252252

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

make/autoconf/build-aux/pkg.m4

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# questions.
2626
#
2727

28-
#
28+
#
2929
# Copyright © 2004 Scott James Remnant <[email protected]>.
3030
#
3131
# This program is free software; you can redistribute it and/or modify
@@ -54,18 +54,18 @@ AC_DEFUN([PKG_PROG_PKG_CONFIG],
5454
m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
5555
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
5656
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
57-
AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
57+
AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
5858
fi
5959
if test -n "$PKG_CONFIG"; then
60-
_pkg_min_version=m4_default([$1], [0.9.0])
61-
AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
62-
if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
63-
AC_MSG_RESULT([yes])
64-
else
65-
AC_MSG_RESULT([no])
66-
PKG_CONFIG=""
67-
fi
68-
60+
_pkg_min_version=m4_default([$1], [0.9.0])
61+
AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
62+
if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
63+
AC_MSG_RESULT([yes])
64+
else
65+
AC_MSG_RESULT([no])
66+
PKG_CONFIG=""
67+
fi
68+
6969
fi[]dnl
7070
])# PKG_PROG_PKG_CONFIG
7171

@@ -97,7 +97,7 @@ m4_define([_PKG_CONFIG],
9797
elif test -n "$PKG_CONFIG"; then
9898
PKG_CHECK_EXISTS([$3],
9999
[pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
100-
[pkg_failed=yes])
100+
[pkg_failed=yes])
101101
else
102102
pkg_failed=untried
103103
fi[]dnl
@@ -143,14 +143,14 @@ See the pkg-config man page for more details.])
143143
if test $pkg_failed = yes; then
144144
_PKG_SHORT_ERRORS_SUPPORTED
145145
if test $_pkg_short_errors_supported = yes; then
146-
$1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
147-
else
148-
$1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
146+
$1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
147+
else
148+
$1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
149149
fi
150-
# Put the nasty error message in config.log where it belongs
151-
echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
150+
# Put the nasty error message in config.log where it belongs
151+
echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
152152
153-
ifelse([$4], , [AC_MSG_ERROR(dnl
153+
ifelse([$4], , [AC_MSG_ERROR(dnl
154154
[Package requirements ($2) were not met:
155155
156156
$$1_PKG_ERRORS
@@ -160,22 +160,22 @@ installed software in a non-standard prefix.
160160
161161
_PKG_TEXT
162162
])],
163-
[AC_MSG_RESULT([no])
163+
[AC_MSG_RESULT([no])
164164
$4])
165165
elif test $pkg_failed = untried; then
166-
ifelse([$4], , [AC_MSG_FAILURE(dnl
166+
ifelse([$4], , [AC_MSG_FAILURE(dnl
167167
[The pkg-config script could not be found or is too old. Make sure it
168168
is in your PATH or set the PKG_CONFIG environment variable to the full
169169
path to pkg-config.
170170
171171
_PKG_TEXT
172172
173173
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
174-
[$4])
174+
[$4])
175175
else
176-
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
177-
$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
176+
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
177+
$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
178178
AC_MSG_RESULT([yes])
179-
ifelse([$3], , :, [$3])
179+
ifelse([$3], , :, [$3])
180180
fi[]dnl
181181
])# PKG_CHECK_MODULES

make/common/MakeBase.gmk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2024, 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
@@ -152,6 +152,10 @@ define SetupLogging
152152
endif
153153
endif
154154

155+
ifneq ($$(findstring $$(LOG_LEVEL), debug trace),)
156+
SHELL := $$(SHELL) -x
157+
endif
158+
155159
ifeq ($$(LOG_LEVEL), trace)
156160
SHELL_NO_RECURSE := $$(SHELL)
157161
# Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make

0 commit comments

Comments
 (0)