Skip to content

Commit 9d28ca0

Browse files
author
David Simms
committedOct 17, 2024
Merge jdk
Merge jdk-24+13
2 parents a995dd3 + ff59532 commit 9d28ca0

File tree

333 files changed

+7419
-1654
lines changed

Some content is hidden

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

333 files changed

+7419
-1654
lines changed
 

‎make/Main.gmk

+12
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,18 @@ $(eval $(call SetupTarget, eclipse-mixed-env, \
278278
ARGS := --always-make, \
279279
))
280280

281+
$(eval $(call SetupTarget, hotspot-xcode-project, \
282+
MAKEFILE := ide/xcode/hotspot/CreateXcodeProject, \
283+
TARGET := build, \
284+
DEPS := hotspot compile-commands-hotspot jdk-image, \
285+
))
286+
287+
$(eval $(call SetupTarget, open-hotspot-xcode-project, \
288+
MAKEFILE := ide/xcode/hotspot/CreateXcodeProject, \
289+
TARGET := open, \
290+
DEPS := hotspot-xcode-project, \
291+
))
292+
281293
ALL_TARGETS += $(HOTSPOT_VARIANT_TARGETS) $(HOTSPOT_VARIANT_GENSRC_TARGETS) \
282294
$(HOTSPOT_VARIANT_LIBS_TARGETS) $(HOTSPOT_VARIANT_STATIC_LIBS_TARGETS)
283295

‎make/common/FileUtils.gmk

+5
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,11 @@ else
189189
endef
190190
endif
191191

192+
define copy-and-chmod-executable
193+
$(install-file)
194+
$(CHMOD) a+rx $@
195+
endef
196+
192197
################################################################################
193198

194199
# Recursive wildcard function. Walks down directories recursively and matches

0 commit comments

Comments
 (0)
Please sign in to comment.