Images.gmk 12.1 KB
Newer Older
C
chegar 已提交
1
#
2
# Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
C
chegar 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.  Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#

default: all

include $(SPEC)
include MakeBase.gmk
30
include Modules.gmk
C
chegar 已提交
31 32

TOOL_TARGETS :=
33
JDK_TARGETS :=
C
chegar 已提交
34 35 36
JRE_TARGETS :=

# Hook to include the corresponding custom file, if present.
I
ihse 已提交
37
$(eval $(call IncludeCustomExtension, Images-pre.gmk))
C
chegar 已提交
38 39 40

############################################################################

41 42 43 44
# All modules for the current target platform.
ALL_MODULES := $(call FindAllModules)

$(eval $(call ReadImportMetaData))
A
alanb 已提交
45

46 47 48
JRE_MODULES += $(filter $(ALL_MODULES), $(BOOT_MODULES) \
    $(PLATFORM_MODULES) $(JRE_TOOL_MODULES))
JDK_MODULES += $(ALL_MODULES)
A
alanb 已提交
49

50 51
JRE_MODULES_LIST := $(call CommaList, $(JRE_MODULES))
JDK_MODULES_LIST := $(call CommaList, $(JDK_MODULES))
A
alanb 已提交
52 53 54 55 56 57

################################################################################

BASE_RELEASE_FILE := $(JDK_OUTPUTDIR)/release

JMODS := $(wildcard $(IMAGES_OUTPUTDIR)/jmods/*.jmod)
C
chegar 已提交
58 59 60 61

# Use this file inside the image as target for make rule
JIMAGE_TARGET_FILE := bin/java$(EXE_SUFFIX)

62
JLINK_ORDER_RESOURCES := **module-info.class
63
JLINK_JLI_CLASSES :=
64
ifeq ($(ENABLE_GENERATE_CLASSLIST), true)
65
  JLINK_ORDER_RESOURCES += @$(SUPPORT_OUTPUTDIR)/link_opt/classlist
66
  JLINK_JLI_CLASSES := --generate-jli-classes=@$(SUPPORT_OUTPUTDIR)/link_opt/default_jli_trace.txt
67 68
endif
JLINK_ORDER_RESOURCES += \
69 70 71 72 73
    /java.base/java/** \
    /java.base/jdk/** \
    /java.base/sun/** \
    /java.base/com/** \
    /jdk.localedata/** \
74 75
    #

76 77
JLINK_TOOL := $(JLINK) -J-Djlink.debug=true \
    --module-path $(IMAGES_OUTPUTDIR)/jmods \
78
    --endian $(OPENJDK_TARGET_CPU_ENDIAN) \
79 80
    --release-info $(BASE_RELEASE_FILE) \
    --order-resources=$(call CommaList, $(JLINK_ORDER_RESOURCES)) \
81
    --dedup-legal-notices=error-if-not-same-content \
82
    $(JLINK_JLI_CLASSES) \
83
    #
A
alanb 已提交
84

85
JLINK_JRE_EXTRA_OPTS := --no-man-pages --no-header-files --strip-debug
86

A
alanb 已提交
87
ifeq ($(JLINK_KEEP_PACKAGED_MODULES), true)
88
  JLINK_JDK_EXTRA_OPTS := --keep-packaged-modules $(JDK_IMAGE_DIR)/jmods
A
alanb 已提交
89 90 91 92
endif

$(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \
    $(call DependOnVariable, JDK_MODULES_LIST) $(BASE_RELEASE_FILE)
E
erikj 已提交
93
	$(ECHO) Creating jdk image
A
alanb 已提交
94
	$(RM) -r $(JDK_IMAGE_DIR)
95 96 97 98 99
	$(call ExecuteWithLog, $(SUPPORT_OUTPUTDIR)/images/jdk, \
	    $(JLINK_TOOL) --add-modules $(JDK_MODULES_LIST) \
	        $(JLINK_JDK_EXTRA_OPTS) \
	        --output $(JDK_IMAGE_DIR) \
	)
C
chegar 已提交
100 101
	$(TOUCH) $@

A
alanb 已提交
102 103
$(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \
    $(call DependOnVariable, JRE_MODULES_LIST) $(BASE_RELEASE_FILE)
E
erikj 已提交
104
	$(ECHO) Creating legacy jre image
A
alanb 已提交
105
	$(RM) -r $(JRE_IMAGE_DIR)
106 107 108 109 110
	$(call ExecuteWithLog, $(SUPPORT_OUTPUTDIR)/images/jre, \
	    $(JLINK_TOOL) --add-modules $(JRE_MODULES_LIST) \
	        $(JLINK_JRE_EXTRA_OPTS) \
	        --output $(JRE_IMAGE_DIR) \
	)
C
chegar 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123
	$(TOUCH) $@

TOOL_JRE_TARGETS := $(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE)
TOOL_JDK_TARGETS := $(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE)

################################################################################
# /man dir
#
# All variables in this section are assigned with simple =, without :, to enable
# more selective overriding from the custom version of this file.
#
# Avoid evaluating this whole section on windows for speed and stability
ifneq ($(OPENJDK_TARGET_OS), windows)
E
erikj 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
  ifeq ($(BUILD_MANPAGES), true)
    JRE_MAN_PAGES += \
        java.1 \
        jjs.1 \
        keytool.1 \
        orbd.1 \
        pack200.1 \
        rmid.1 \
        rmiregistry.1 \
        servertool.1 \
        unpack200.1

    JDK_MAN_PAGES += \
        $(JRE_MAN_PAGES) \
        idlj.1 \
        jar.1 \
        jarsigner.1 \
        javac.1 \
        javadoc.1 \
        javap.1 \
        jconsole.1 \
        jcmd.1 \
        jdb.1 \
        jdeps.1 \
        jinfo.1 \
        jmap.1 \
        jps.1 \
        jrunscript.1 \
        jstack.1 \
        jstat.1 \
        jstatd.1 \
        rmic.1 \
        serialver.1

    # This variable is potentially overridden in the closed makefile.
    MAN_SRC_BASEDIR ?= $(TOPDIR)/src

    ifeq ($(OPENJDK_TARGET_OS), linux)
      MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/linux/doc
      MAN1_SUBDIR = man
    endif
    ifeq ($(OPENJDK_TARGET_OS), solaris)
      MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/solaris/doc
      MAN1_SUBDIR = sun/man/man1
    endif
    ifeq ($(OPENJDK_TARGET_OS), macosx)
      MAN_SRC_DIR = $(MAN_SRC_BASEDIR)/bsd/doc
      MAN1_SUBDIR = man
    endif

    $(JRE_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/%
175
	$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@))
C
chegar 已提交
176 177
	$(install-file)

E
erikj 已提交
178
    $(JDK_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/%
179
	$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@))
C
chegar 已提交
180 181
	$(install-file)

E
erikj 已提交
182
    $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
183
	$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@))
184
	$(install-file)
C
chegar 已提交
185

E
erikj 已提交
186
    $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
187
	$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@))
188
	$(install-file)
C
chegar 已提交
189

E
erikj 已提交
190 191
    ifeq ($(OPENJDK_TARGET_OS), solaris)
      $(JRE_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
192
	$(call LogInfo, Converting $(patsubst $(OUTPUTDIR)/%,%,$@))
C
chegar 已提交
193 194
	$(install-file)

E
erikj 已提交
195
      $(JDK_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
196
	$(call LogInfo, Converting $(patsubst $(OUTPUTDIR)/%,%,$@))
C
chegar 已提交
197
	$(install-file)
E
erikj 已提交
198
    endif
C
chegar 已提交
199

E
erikj 已提交
200 201
    ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), )
      $(JRE_IMAGE_DIR)/man/ja:
202
	$(call LogInfo, Creating $(patsubst $(OUTPUTDIR)/%,%,$@))
C
chegar 已提交
203 204
	$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja

E
erikj 已提交
205
      $(JDK_IMAGE_DIR)/man/ja:
206
	$(call LogInfo, Creating $(patsubst $(OUTPUTDIR)/%,%,$@))
C
chegar 已提交
207
	$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja
E
erikj 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
    endif

    ifeq ($(OPENJDK_TARGET_OS), solaris)
      JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \
          $(addprefix $(JRE_IMAGE_DIR)/man/ja/man1/, $(JRE_MAN_PAGES)) \
          $(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \
          $(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JRE_MAN_PAGES))

      JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \
          $(addprefix $(JDK_IMAGE_DIR)/man/ja/man1/, $(JDK_MAN_PAGES)) \
          $(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \
          $(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JDK_MAN_PAGES))
    endif

    ifneq ($(findstring $(OPENJDK_TARGET_OS), linux macosx), )
      JRE_MAN_PAGE_LIST = $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \
          $(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \
          $(JRE_IMAGE_DIR)/man/ja

      JDK_MAN_PAGE_LIST = $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \
          $(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \
          $(JDK_IMAGE_DIR)/man/ja
    endif

    JRE_TARGETS += $(JRE_MAN_PAGE_LIST)
    JDK_TARGETS += $(JDK_MAN_PAGE_LIST)
  endif # BUILD_MANPAGES
C
chegar 已提交
235 236 237 238 239
endif # Windows

################################################################################
# src.zip

M
mchung 已提交
240
$(JDK_IMAGE_DIR)/lib/src.zip: $(SUPPORT_OUTPUTDIR)/src.zip
241
	$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%,%,$@))
C
chegar 已提交
242 243
	$(install-file)

M
mchung 已提交
244
JDK_TARGETS += $(JDK_IMAGE_DIR)/lib/src.zip
C
chegar 已提交
245

246
################################################################################
C
chegar 已提交
247
# /demo dir
248 249 250 251 252 253
# Avoid doing the expensive find unless called with "jdk" as target.
ifneq ($(filter jdk, $(MAKECMDGOALS)), )

  DEMO_FILES := \
      $(if $(wildcard $(SUPPORT_OUTPUTDIR)/demos/image), \
        $(shell $(FIND) $(SUPPORT_OUTPUTDIR)/demos/image \
254
            -type f -a ! \( -name "_the*" -o -name "javac_state" \) ) \
255 256 257 258 259 260 261 262 263 264
      )

  ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true)
    ifeq ($(OPENJDK_TARGET_OS), macosx)
      DEMO_FILES := $(call not-containing, .dSYM, $(DEMO_FILES))
    else
      DEMO_FILES := $(filter-out %.debuginfo %.pdb %.map, $(DEMO_FILES))
    endif
  endif

E
erikj 已提交
265 266 267
  $(eval $(call SetupCopyFiles, JDK_COPY_DEMOS, \
      SRC := $(SUPPORT_OUTPUTDIR)/demos/image, \
      DEST := $(JDK_IMAGE_DIR)/demo, \
268
      FILES := $(DEMO_FILES), \
E
erikj 已提交
269 270 271
  ))

  JDK_TARGETS += $(JDK_COPY_DEMOS)
C
chegar 已提交
272 273
endif

274 275 276 277 278 279 280
################################################################################
# Code coverage data files

ifeq ($(GCOV_ENABLED), true)

  GCOV_FIND_EXPR := -type f -name "*.gcno"

281
  $(eval $(call SetupCopyFiles,COPY_HOTSPOT_GCOV_GCNO, \
282
      SRC := $(OUTPUTDIR), \
283 284
      DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \
      FILES := $(shell $(FIND) $(HOTSPOT_OUTPUTDIR) $(GCOV_FIND_EXPR))))
285

286
  SYMBOLS_TARGETS += $(COPY_HOTSPOT_GCOV_GCNO)
287 288

  $(eval $(call SetupCopyFiles,COPY_JDK_GCOV_GCNO, \
289
      SRC := $(OUTPUTDIR), \
290
      DEST := $(SYMBOLS_IMAGE_DIR)/gcov, \
291 292 293 294 295 296
      FILES := $(shell $(FIND) $(SUPPORT_OUTPUTDIR)/native $(GCOV_FIND_EXPR))))

  SYMBOLS_TARGETS += $(COPY_JDK_GCOV_GCNO)

endif

297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
################################################################################
# Debug symbols
# Since debug symbols are not included in the jmod files, they need to be copied
# in manually after generating the images.

ALL_JDK_MODULES := $(JDK_MODULES)
ALL_JRE_MODULES := $(sort $(JRE_MODULES), $(foreach m, $(JRE_MODULES), \
    $(call FindTransitiveDepsForModule, $m)))

ifeq ($(OPENJDK_TARGET_OS), windows)
  LIBS_TARGET_SUBDIR := bin
else
  LIBS_TARGET_SUBDIR := lib
endif

# Param 1 - dir to find debuginfo files in
FindDebuginfoFiles = \
    $(wildcard $(addprefix $1/*, $(DEBUGINFO_SUFFIXES)) \
        $(addprefix $1/*/*, $(DEBUGINFO_SUFFIXES)) \
        $(addprefix $1/*/*/*, $(DEBUGINFO_SUFFIXES)))

318 319 320 321 322 323 324 325 326 327 328 329 330
# Pick the correct debug info files to copy, either zipped or not.
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true)
  DEBUGINFO_SUFFIXES += .diz
else
  DEBUGINFO_SUFFIXES := .debuginfo .pdb .map
  # On Macosx, if debug symbols have not been zipped, find all files inside *.dSYM
  # dirs.
  ifeq ($(OPENJDK_TARGET_OS), macosx)
    $(eval $(call FillCacheFind, \
        $(SUPPORT_OUTPUTDIR)/modules_cmds $(SUPPORT_OUTPUTDIR)/modules_libs))
    FindDebuginfoFiles = \
        $(if $(wildcard $1), $(call containing, .dSYM/, $(call CacheFind, $1)))
  endif
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
endif

# Param 1 - either JDK or JRE
SetupCopyDebuginfo = \
    $(foreach m, $(ALL_$1_MODULES), \
      $(eval $(call SetupCopyFiles, COPY_$1_LIBS_DEBUGINFO_$m, \
          SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/$m, \
          DEST := $($1_IMAGE_DIR)/$(LIBS_TARGET_SUBDIR), \
          FILES := $(call FindDebuginfoFiles, \
              $(SUPPORT_OUTPUTDIR)/modules_libs/$m), \
      )) \
      $(eval $1_TARGETS += $$(COPY_$1_LIBS_DEBUGINFO_$m)) \
    )

# No space before argument to avoid having to put $(strip ) everywhere in
# implementation above.
$(call SetupCopyDebuginfo,JDK)
$(call SetupCopyDebuginfo,JRE)

C
chegar 已提交
350 351 352 353
################################################################################

# Include custom post hook here to make it possible to augment the target lists
# before actual target prerequisites are declared.
I
ihse 已提交
354
$(eval $(call IncludeCustomExtension, Images-post.gmk))
C
chegar 已提交
355 356 357 358 359 360

################################################################################

$(JRE_TARGETS): $(TOOL_JRE_TARGETS)
$(JDK_TARGETS): $(TOOL_JDK_TARGETS)

361 362
jdk: $(TOOL_JDK_TARGETS) $(JDK_TARGETS)
jre: $(TOOL_JRE_TARGETS) $(JRE_TARGETS)
363 364 365
symbols: $(SYMBOLS_TARGETS)

all: jdk jre symbols
C
chegar 已提交
366

367
.PHONY: default all jdk jre symbols