Skip to content

Commit bab9372

Browse files
committed
8352618: Remove old deprecated functionality in the build system
Reviewed-by: erikj, kbarrett, jwaters
1 parent 512b9b1 commit bab9372

10 files changed

+7
-64
lines changed

make/PreInit.gmk

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ ifneq ($(SKIP_SPEC), true)
7575

7676
# Basic checks on environment and command line.
7777
$(eval $(call CheckControlVariables))
78-
$(eval $(call CheckDeprecatedEnvironment))
7978
$(eval $(call CheckInvalidMakeFlags))
8079

8180
# Check that CONF_CHECK is valid.

make/PreInitSupport.gmk

-12
Original file line numberDiff line numberDiff line change
@@ -94,18 +94,6 @@ define CheckControlVariables
9494
endif
9595
endef
9696

97-
# Check for deprecated ALT_ variables
98-
define CheckDeprecatedEnvironment
99-
defined_alt_variables := $$(filter ALT_%, $$(.VARIABLES))
100-
ifneq ($$(defined_alt_variables), )
101-
$$(info Warning: You have the following ALT_ variables set:)
102-
$$(foreach var, $$(defined_alt_variables), $$(info * $$(var)=$$($$(var))))
103-
$$(info ALT_ variables are deprecated, and may result in a failed build.)
104-
$$(info Please clean your environment.)
105-
$$(info )
106-
endif
107-
endef
108-
10997
# Check for invalid make flags like -j
11098
define CheckInvalidMakeFlags
11199
# This is a trick to get this rule to execute before any other rules

make/RunTestsPrebuilt.gmk

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2017, 2025, 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
@@ -140,7 +140,6 @@ $(eval $(call SetupVariable,JIB_JAR,OPTIONAL))
140140
include $(TOPDIR)/make/PreInitSupport.gmk
141141
include $(TOPDIR)/make/common/LogUtils.gmk
142142

143-
$(eval $(call CheckDeprecatedEnvironment))
144143
$(eval $(call CheckInvalidMakeFlags))
145144
$(eval $(call ParseLogLevel))
146145

make/autoconf/basic.m4

-3
Original file line numberDiff line numberDiff line change
@@ -549,9 +549,6 @@ AC_DEFUN_ONCE([BASIC_TEST_USABILITY_ISSUES],
549549
550550
BASIC_CHECK_SRC_PERMS
551551
552-
# Check if the user has any old-style ALT_ variables set.
553-
FOUND_ALT_VARIABLES=`env | grep ^ALT_`
554-
555552
# Before generating output files, test if they exist. If they do, this is a reconfigure.
556553
# Since we can't properly handle the dependencies for this, warn the user about the situation
557554
if test -e $OUTPUTDIR/spec.gmk; then

make/autoconf/configure.ac

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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
@@ -174,9 +174,6 @@ SRCDIRS_SETUP_IMPORT_MODULES
174174
#
175175
################################################################################
176176

177-
# See if we are doing a complete static build or not
178-
JDKOPT_SETUP_STATIC_BUILD
179-
180177
# First determine the toolchain type (compiler family)
181178
TOOLCHAIN_DETERMINE_TOOLCHAIN_TYPE
182179

@@ -259,7 +256,6 @@ LIB_TESTS_ENABLE_DISABLE_JTREG_TEST_THREAD_FACTORY
259256

260257
JDKOPT_ENABLE_DISABLE_GENERATE_CLASSLIST
261258
JDKOPT_EXCLUDE_TRANSLATIONS
262-
JDKOPT_ENABLE_DISABLE_MANPAGES
263259
JDKOPT_ENABLE_DISABLE_CDS_ARCHIVE
264260
JDKOPT_ENABLE_DISABLE_CDS_ARCHIVE_COH
265261
JDKOPT_ENABLE_DISABLE_COMPATIBLE_CDS_ALIGNMENT

make/autoconf/help.m4

+1-9
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, 2025, 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
@@ -341,14 +341,6 @@ AC_DEFUN_ONCE([HELP_PRINT_SUMMARY_AND_WARNINGS],
341341
printf "\n"
342342
fi
343343
344-
if test "x$FOUND_ALT_VARIABLES" != "x"; then
345-
printf "WARNING: You have old-style ALT_ environment variables set.\n"
346-
printf "These are not respected, and will be ignored. It is recommended\n"
347-
printf "that you clean your environment. The following variables are set:\n"
348-
printf "$FOUND_ALT_VARIABLES\n"
349-
printf "\n"
350-
fi
351-
352344
if test "x$OUTPUT_DIR_IS_LOCAL" != "xyes"; then
353345
printf "WARNING: Your build output directory is not on a local disk.\n"
354346
printf "This will severely degrade build performance!\n"

make/autoconf/jdk-options.m4

-21
Original file line numberDiff line numberDiff line change
@@ -554,16 +554,6 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_UNDEFINED_BEHAVIOR_SANITIZER],
554554
AC_SUBST(UBSAN_ENABLED)
555555
])
556556

557-
################################################################################
558-
#
559-
# Static build support. When enabled will generate static
560-
# libraries instead of shared libraries for all JDK libs.
561-
#
562-
AC_DEFUN_ONCE([JDKOPT_SETUP_STATIC_BUILD],
563-
[
564-
UTIL_DEPRECATED_ARG_ENABLE(static-build)
565-
])
566-
567557
################################################################################
568558
#
569559
# jmod options.
@@ -671,15 +661,6 @@ AC_DEFUN([JDKOPT_EXCLUDE_TRANSLATIONS],
671661
AC_SUBST(EXCLUDE_TRANSLATIONS)
672662
])
673663

674-
################################################################################
675-
#
676-
# Optionally disable man pages (deprecated)
677-
#
678-
AC_DEFUN([JDKOPT_ENABLE_DISABLE_MANPAGES],
679-
[
680-
UTIL_DEPRECATED_ARG_ENABLE(manpages)
681-
])
682-
683664
################################################################################
684665
#
685666
# Disable the default CDS archive generation
@@ -866,8 +847,6 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_REPRODUCIBLE_BUILD],
866847
AC_SUBST(SOURCE_DATE)
867848
AC_SUBST(ISO_8601_FORMAT_STRING)
868849
AC_SUBST(SOURCE_DATE_ISO_8601)
869-
870-
UTIL_DEPRECATED_ARG_ENABLE(reproducible-build)
871850
])
872851

873852
################################################################################

make/autoconf/jvm-features.m4

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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
@@ -50,9 +50,8 @@ m4_define(jvm_features_valid, m4_normalize( \
5050
))
5151

5252
# Deprecated JVM features (these are ignored, but with a warning)
53-
m4_define(jvm_features_deprecated, m4_normalize(
54-
cmsgc trace \
55-
))
53+
# This list is empty at the moment.
54+
m4_define(jvm_features_deprecated, m4_normalize( ))
5655

5756
# Feature descriptions
5857
m4_define(jvm_feature_desc_cds, [enable class data sharing (CDS)])

make/autoconf/util.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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

make/common/LogUtils.gmk

-6
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,6 @@ define ParseLogValue
6464
endef
6565

6666
define ParseLogLevel
67-
# Catch old-style VERBOSE= command lines.
68-
ifneq ($$(origin VERBOSE), undefined)
69-
$$(info Error: VERBOSE is deprecated. Use LOG=<warn|info|debug|trace> instead.)
70-
$$(error Cannot continue)
71-
endif
72-
7367
# Setup logging according to LOG
7468

7569
# If "nofile" is present, do not log to a file

0 commit comments

Comments
 (0)