make/CreateJmods.gmk
author erikj
Fri, 10 Mar 2017 09:48:34 +0100
changeset 44073 74a8eb45afb6
parent 42518 f7ec0bceb374
child 44309 b8d71b012f72
permissions -rw-r--r--
8176172: Imported FX modules have have residual_imported.marker file Reviewed-by: ihse, alanb, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
     1
39929
f6828731baa8 8160334: Building --with-parfait= fails with No rule to make target 'PARFAIT_NATIVEJMOD
erikj
parents: 38848
diff changeset
     2
# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
     4
#
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    10
#
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    15
# accompanied this code).
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    16
#
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    20
#
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    23
# questions.
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    24
#
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    25
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    26
default: all
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    27
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    28
include $(SPEC)
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    29
include MakeBase.gmk
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    30
include Modules.gmk
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    31
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    32
ifeq ($(MODULE), )
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    33
  $(error MODULE must be set when calling CreateJmods.gmk)
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    34
endif
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    35
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    36
################################################################################
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    37
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
    38
JMODS_DIR := $(IMAGES_OUTPUTDIR)/jmods
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
    39
JMODS_TEMPDIR := $(SUPPORT_OUTPUTDIR)/jmods
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
    40
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    41
LIBS_DIR := $(firstword $(wildcard $(addsuffix /$(MODULE), \
41260
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40782
diff changeset
    42
    $(SUPPORT_OUTPUTDIR)/modules_libs $(IMPORT_MODULES_LIBS))))
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    43
CMDS_DIR := $(firstword $(wildcard $(addsuffix /$(MODULE), \
41260
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40782
diff changeset
    44
    $(SUPPORT_OUTPUTDIR)/modules_cmds $(IMPORT_MODULES_CMDS))))
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    45
CONF_DIR := $(firstword $(wildcard $(addsuffix /$(MODULE), \
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    46
    $(SUPPORT_OUTPUTDIR)/modules_conf $(IMPORT_MODULES_CONF))))
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    47
CLASSES_DIR := $(wildcard $(JDK_OUTPUTDIR)/modules/$(MODULE))
41532
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    48
INCLUDE_HEADERS_DIR := $(firstword $(wildcard $(addsuffix /$(MODULE), \
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    49
    $(SUPPORT_OUTPUTDIR)/modules_include $(IMPORT_MODULES_INCLUDE_HEADERS))))
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    50
MAN_DIR := $(firstword $(wildcard $(addsuffix /$(MODULE), \
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    51
    $(SUPPORT_OUTPUTDIR)/modules_man $(IMPORT_MODULES_MAN))))
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    52
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    53
$(eval $(call FillCacheFind, \
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    54
    $(LIBS_DIR) $(CMDS_DIR) $(CONF_DIR) $(CLASSES_DIR) \
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    55
))
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    56
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    57
ifneq ($(LIBS_DIR), )
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    58
  JMOD_FLAGS += --libs $(LIBS_DIR)
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    59
  DEPS += $(call CacheFind, $(LIBS_DIR))
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    60
endif
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    61
ifneq ($(CMDS_DIR), )
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    62
  JMOD_FLAGS += --cmds $(CMDS_DIR)
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    63
  DEPS += $(call CacheFind, $(CMDS_DIR))
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    64
endif
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    65
ifneq ($(CONF_DIR), )
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    66
  JMOD_FLAGS += --config $(CONF_DIR)
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    67
  DEPS += $(call CacheFind, $(CONF_DIR))
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    68
endif
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    69
ifneq ($(CLASSES_DIR), )
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    70
  JMOD_FLAGS += --class-path $(CLASSES_DIR)
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    71
  DEPS += $(call CacheFind, $(CLASSES_DIR))
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    72
endif
41532
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    73
ifneq ($(INCLUDE_HEADERS_DIR), )
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    74
  JMOD_FLAGS += --header-files $(INCLUDE_HEADERS_DIR)
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    75
  DEPS += $(call CacheFind, $(INCLUDE_HEADERS_DIR))
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    76
endif
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    77
ifneq ($(MAN_DIR), )
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    78
  JMOD_FLAGS += --man-pages $(MAN_DIR)
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    79
  DEPS += $(call CacheFind, $(MAN_DIR))
76dffc133464 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41260
diff changeset
    80
endif
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
    81
42505
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    82
LEGAL_NOTICES := \
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    83
    $(SUPPORT_OUTPUTDIR)/modules_legal/java.base \
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    84
    $(call FindModuleLegalDirs, $(MODULE)) \
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    85
    #
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    86
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    87
LEGAL_NOTICES_PATH := $(call PathList, $(LEGAL_NOTICES))
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    88
DEPS += $(call CacheFind, $(LEGAL_NOTICES))
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    89
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    90
JMOD_FLAGS += --legal-notices $(LEGAL_NOTICES_PATH)
11439b0c0792 8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents: 41874
diff changeset
    91
42517
d3485deb09eb 8170859: Run time and tool support for ModuleResolution
alanb
parents: 41874
diff changeset
    92
ifeq ($(filter-out jdk.incubator.%, $(MODULE)), )
d3485deb09eb 8170859: Run time and tool support for ModuleResolution
alanb
parents: 41874
diff changeset
    93
  JMOD_FLAGS += --do-not-resolve-by-default
d3485deb09eb 8170859: Run time and tool support for ModuleResolution
alanb
parents: 41874
diff changeset
    94
  JMOD_FLAGS += --warn-if-resolved=incubating
d3485deb09eb 8170859: Run time and tool support for ModuleResolution
alanb
parents: 41874
diff changeset
    95
endif
d3485deb09eb 8170859: Run time and tool support for ModuleResolution
alanb
parents: 41874
diff changeset
    96
37764
63e0379dd186 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36506
diff changeset
    97
# Add dependencies on other jmod files. Only java.base needs access to other
63e0379dd186 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36506
diff changeset
    98
# jmods.
63e0379dd186 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36506
diff changeset
    99
ifeq ($(MODULE), java.base)
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
   100
  # When creating a BUILDJDK, we don't need to add hashes to java.base
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
   101
  ifneq ($(CREATING_BUILDJDK), true)
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   102
    # When creating interim versions of jmods, skip hashes
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   103
    ifneq ($(INTERIM_JMOD), true)
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   104
      ALL_UPGRADEABLE_MODULES := $(call FindAllUpgradeableModules)
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   105
      DEPS += $(patsubst %, $(JMODS_DIR)/%.jmod, \
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   106
          $(filter-out java.base $(ALL_UPGRADEABLE_MODULES), $(call FindAllModules)))
37764
63e0379dd186 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36506
diff changeset
   107
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   108
      EXCLUDE_PATTERN := $(strip $(subst $(SPACE),|,$(strip $(ALL_UPGRADEABLE_MODULES))))
37764
63e0379dd186 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36506
diff changeset
   109
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   110
      JMOD_FLAGS += --module-path $(JMODS_DIR) \
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   111
          --hash-modules '^(?!$(EXCLUDE_PATTERN))'
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   112
    endif
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
   113
  endif
37764
63e0379dd186 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36506
diff changeset
   114
endif
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   115
39929
f6828731baa8 8160334: Building --with-parfait= fails with No rule to make target 'PARFAIT_NATIVEJMOD
erikj
parents: 38848
diff changeset
   116
# Changes to the jmod tool itself should also trigger a rebuild of all jmods.
f6828731baa8 8160334: Building --with-parfait= fails with No rule to make target 'PARFAIT_NATIVEJMOD
erikj
parents: 38848
diff changeset
   117
# The variable JMOD_CMD could contain an environment variable assignment before
f6828731baa8 8160334: Building --with-parfait= fails with No rule to make target 'PARFAIT_NATIVEJMOD
erikj
parents: 38848
diff changeset
   118
# the actual command. Filter that out using wildcard before adding to DEPS.
f6828731baa8 8160334: Building --with-parfait= fails with No rule to make target 'PARFAIT_NATIVEJMOD
erikj
parents: 38848
diff changeset
   119
DEPS += $(wildcard $(JMOD_CMD))
38848
0bc7ed792590 8144911: Consider having modifications to jdk.jlink trigger recreation of all jmods
erikj
parents: 37975
diff changeset
   120
ifeq ($(EXTERNAL_BUILDJDK), false)
0bc7ed792590 8144911: Consider having modifications to jdk.jlink trigger recreation of all jmods
erikj
parents: 37975
diff changeset
   121
  DEPS += $(call CacheFind, $(JDK_OUTPUTDIR)/modules/jdk.jlink/jdk/tools/jmod)
0bc7ed792590 8144911: Consider having modifications to jdk.jlink trigger recreation of all jmods
erikj
parents: 37975
diff changeset
   122
endif
0bc7ed792590 8144911: Consider having modifications to jdk.jlink trigger recreation of all jmods
erikj
parents: 37975
diff changeset
   123
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   124
# If creating interim versions of jmods, certain files need to be filtered out
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   125
# to avoid false incremental rebuilds.
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   126
ifeq ($(INTERIM_JMOD), true)
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   127
  DEPS := $(filter-out $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/classlist, $(DEPS))
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   128
endif
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   129
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   130
# Create jmods in a temp dir and then move them into place to keep the
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   131
# module path in $(IMAGES_OUTPUTDIR)/jmods valid at all times.
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
   132
$(JMODS_DIR)/$(MODULE).jmod: $(DEPS)
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37765
diff changeset
   133
	$(call LogWarn, Creating $(patsubst $(OUTPUT_ROOT)/%, %, $@))
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   134
	$(call MakeDir, $(JMODS_DIR) $(JMODS_TEMPDIR))
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   135
	$(RM) $@ $(JMODS_TEMPDIR)/$(notdir $@)
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   136
	$(JMOD) create \
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   137
            --module-version $(VERSION_SHORT) \
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   138
            --os-name $(REQUIRED_OS_NAME) \
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   139
            --os-arch $(OPENJDK_TARGET_CPU_LEGACY) \
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   140
            --os-version $(REQUIRED_OS_VERSION) \
40241
59abac94e4f2 8136930: Simplify use of module-system options by custom launchers
mchung
parents: 39929
diff changeset
   141
            --module-path $(JMODS_DIR) \
44073
74a8eb45afb6 8176172: Imported FX modules have have residual_imported.marker file
erikj
parents: 42518
diff changeset
   142
	    --exclude '**{_the.*,_*.marker,*.diz,*.debuginfo,*.dSYM/**,*.dSYM,*.pdb,*.map}' \
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   143
	    $(JMOD_FLAGS) $(JMODS_TEMPDIR)/$(notdir $@)
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   144
	$(MV) $(JMODS_TEMPDIR)/$(notdir $@) $@
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   145
41874
07c3c4f1eb63 8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents: 41532
diff changeset
   146
TARGETS += $(JMODS_DIR)/$(MODULE).jmod
36506
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   147
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   148
################################################################################
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   149
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   150
all: $(TARGETS)
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   151
17612cee3530 8142968: Module System implementation
alanb
parents:
diff changeset
   152
################################################################################