Skip to content

Commit 0d54f19

Browse files
author
David Simms
committedNov 20, 2024
Merge jdk
Merge jdk-24+20
2 parents c743381 + 7a64fbb commit 0d54f19

File tree

535 files changed

+22786
-4241
lines changed

Some content is hidden

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

535 files changed

+22786
-4241
lines changed
 

‎make/autoconf/jvm-features.m4

+19
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,22 @@ AC_DEFUN([JVM_FEATURES_CALCULATE_ACTIVE],
479479
$JVM_FEATURES_ENABLED, $JVM_FEATURES_DISABLED)
480480
])
481481

482+
################################################################################
483+
# Filter the unsupported feature combinations.
484+
# This is called after JVM_FEATURES_ACTIVE are fully populated.
485+
#
486+
AC_DEFUN([JVM_FEATURES_FILTER_UNSUPPORTED],
487+
[
488+
# G1 late barrier expansion in C2 is not implemented for some platforms.
489+
# Choose not to support G1 in this configuration.
490+
if JVM_FEATURES_IS_ACTIVE(compiler2); then
491+
if test "x$OPENJDK_TARGET_CPU" = "xx86"; then
492+
AC_MSG_NOTICE([G1 cannot be used with C2 on this platform, disabling G1])
493+
UTIL_GET_NON_MATCHING_VALUES(JVM_FEATURES_ACTIVE, $JVM_FEATURES_ACTIVE, "g1gc")
494+
fi
495+
fi
496+
])
497+
482498
################################################################################
483499
# Helper function for JVM_FEATURES_VERIFY. Check if the specified JVM
484500
# feature is active. To be used in shell if constructs, like this:
@@ -554,6 +570,9 @@ AC_DEFUN_ONCE([JVM_FEATURES_SETUP],
554570
# The result is stored in JVM_FEATURES_ACTIVE.
555571
JVM_FEATURES_CALCULATE_ACTIVE($variant)
556572
573+
# Filter unsupported feature combinations from JVM_FEATURES_ACTIVE.
574+
JVM_FEATURES_FILTER_UNSUPPORTED
575+
557576
# Verify consistency for JVM_FEATURES_ACTIVE.
558577
JVM_FEATURES_VERIFY($variant)
559578

‎make/autoconf/toolchain.m4

+8-6
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ AC_DEFUN_ONCE([TOOLCHAIN_POST_DETECTION],
307307
[
308308
# Restore old path, except for the microsoft toolchain, which requires the
309309
# toolchain path to remain in place. Otherwise the compiler will not work in
310-
# some siutations in later configure checks.
310+
# some situations in later configure checks.
311311
if test "x$TOOLCHAIN_TYPE" != "xmicrosoft"; then
312312
PATH="$OLD_PATH"
313313
fi
@@ -316,10 +316,6 @@ AC_DEFUN_ONCE([TOOLCHAIN_POST_DETECTION],
316316
# This is necessary since AC_PROG_CC defaults CFLAGS to "-g -O2"
317317
CFLAGS="$ORG_CFLAGS"
318318
CXXFLAGS="$ORG_CXXFLAGS"
319-
320-
# filter out some unwanted additions autoconf may add to CXX; we saw this on macOS with autoconf 2.72
321-
UTIL_GET_NON_MATCHING_VALUES(cxx_filtered, $CXX, -std=c++11 -std=gnu++11)
322-
CXX="$cxx_filtered"
323319
])
324320

325321
# Check if a compiler is of the toolchain type we expect, and save the version
@@ -358,6 +354,11 @@ AC_DEFUN([TOOLCHAIN_EXTRACT_COMPILER_VERSION],
358354
# Copyright (C) 2013 Free Software Foundation, Inc.
359355
# This is free software; see the source for copying conditions. There is NO
360356
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
357+
# or look like
358+
# gcc (GCC) 10.2.1 20200825 (Alibaba 10.2.1-3.8 2.32)
359+
# Copyright (C) 2020 Free Software Foundation, Inc.
360+
# This is free software; see the source for copying conditions. There is NO
361+
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
361362
COMPILER_VERSION_OUTPUT=`$COMPILER --version 2>&1`
362363
# Check that this is likely to be GCC.
363364
$ECHO "$COMPILER_VERSION_OUTPUT" | $GREP "Free Software Foundation" > /dev/null
@@ -371,7 +372,8 @@ AC_DEFUN([TOOLCHAIN_EXTRACT_COMPILER_VERSION],
371372
COMPILER_VERSION_STRING=`$ECHO $COMPILER_VERSION_OUTPUT | \
372373
$SED -e 's/ *Copyright .*//'`
373374
COMPILER_VERSION_NUMBER=`$ECHO $COMPILER_VERSION_OUTPUT | \
374-
$SED -e 's/^.* \(@<:@1-9@:>@<:@0-9@:>@*\.@<:@0-9.@:>@*\)@<:@^0-9.@:>@.*$/\1/'`
375+
$AWK -F ')' '{print [$]2}' | \
376+
$AWK '{print [$]1}'`
375377
elif test "x$TOOLCHAIN_TYPE" = xclang; then
376378
# clang --version output typically looks like
377379
# Apple clang version 15.0.0 (clang-1500.3.9.4)

0 commit comments

Comments
 (0)
Please sign in to comment.