Skip to content

Commit ba43d56

Browse files
committedFeb 26, 2025
Merge branch 'master' into fibers
2 parents 32aa570 + 037e471 commit ba43d56

File tree

551 files changed

+12929
-8747
lines changed

Some content is hidden

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

551 files changed

+12929
-8747
lines changed
 

‎make/Docs.gmk

+1-1
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ ifeq ($(ENABLE_PANDOC), true)
673673

674674
$(foreach m, $(ALL_MODULES), \
675675
$(eval MAN_$m := $(call ApplySpecFilter, $(filter %.md, $(call FindFiles, \
676-
$(call FindModuleManDirs, $m))))) \
676+
$(call FindModuleManDirsForDocs, $m))))) \
677677
$(if $(MAN_$m), \
678678
$(eval $(call SetupProcessMarkdown, MAN_TO_HTML_$m, \
679679
FILES := $(MAN_$m), \

‎make/Main.gmk

+13-1
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,17 @@ $(eval $(call SetupTarget, test-image-lib, \
753753
DEPS := build-test-lib, \
754754
))
755755

756+
$(eval $(call SetupTarget, build-test-setup-aot, \
757+
MAKEFILE := test/BuildTestSetupAOT, \
758+
DEPS := interim-langtools exploded-image, \
759+
))
760+
761+
$(eval $(call SetupTarget, test-image-setup-aot, \
762+
MAKEFILE := test/BuildTestSetupAOT, \
763+
TARGET := images, \
764+
DEPS := build-test-setup-aot, \
765+
))
766+
756767
ifeq ($(BUILD_FAILURE_HANDLER), true)
757768
# Builds the failure handler jtreg extension
758769
$(eval $(call SetupTarget, build-test-failure-handler, \
@@ -1281,7 +1292,8 @@ all-docs-bundles: docs-jdk-bundles docs-javase-bundles docs-reference-bundles
12811292
# This target builds the test image
12821293
test-image: prepare-test-image test-image-jdk-jtreg-native \
12831294
test-image-demos-jdk test-image-libtest-jtreg-native \
1284-
test-image-lib test-image-lib-native
1295+
test-image-lib test-image-lib-native \
1296+
test-image-setup-aot
12851297

12861298
ifneq ($(JVM_TEST_IMAGE_TARGETS), )
12871299
# If JVM_TEST_IMAGE_TARGETS is externally defined, use it instead of the

0 commit comments

Comments
 (0)
Please sign in to comment.