hotspot/make/Makefile
author bobv
Tue, 03 Aug 2010 08:13:38 -0400
changeset 6176 4d9030fe341f
parent 5547 f4b087cbb361
child 6187 4fa7845f7c14
permissions -rw-r--r--
6953477: Increase portability and flexibility of building Hotspot Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4733
diff changeset
     2
# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4733
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4733
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4733
diff changeset
    21
# questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# Top level gnumake file for hotspot builds
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
# Default is to build the both product images and construct an export dir.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#  The default export directory name is `pwd`/export-$(PLATFORM).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#   Use: 'gnumake help' for more information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
# This makefile uses the default settings for where to find compilers and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
#    tools, and obeys the ALT_* variable settings used by the other JDK
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#    workspaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
# Expected/optional make variables defined on make command line:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#  LP64=1 or ARCH_DATA_MODEL=64 for 64bit build
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
# Expected/optional make variables or environment variables:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#  ALT_SLASH_JAVA             Location of /java or J:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#  ALT_BOOTDIR                Previous JDK home directory for javac compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#  ALT_OUTPUTDIR              Output directory to use for hotspot build
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#  ALT_EXPORT_PATH            Directory to export hotspot build to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#  ALT_JDK_IMPORT_PATH        Current JDK build (only for create_jdk rules)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#  ALT_BUILD_WIN_SA           Building SA on Windows is disabled by default.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#                             Set ALT_BUILD_WIN_SA=1 to enable building SA on
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#                             Windows.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
# Version strings and numbers:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#  JDK_VERSION                Current JDK version (e.g. 1.6.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
#  PREVIOUS_JDK_VERSION       Previous (bootdir) JDK version (e.g. 1.5.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
#  FULL_VERSION               Full version string to use (e.g. "1.6.0-ea-b42")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
# Version strings and numbers especially needed on Windows:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#  COOKED_JDK_UPDATE_VERSION  Just the update release number (e.g. 02)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#  COOKED_BUILD_NUMBER        Just the build number (e.g. 42)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
#  JDK_MKTG_VERSION           Marketing JDK version (e.g. 6.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
#  JDK_MAJOR_VERSION          Major number for version (e.g. 1) always 1?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
#  JDK_MINOR_VERSION          Minor number for version (e.g. 6)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#  JDK_MICRO_VERSION          Micro number for version (e.g. 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
# Default is build both product fastdebug and create export area
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
# Allow to build HotSpot in local directory from sources specified by GAMMADIR.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
# After make/defs.make GAMMADIR is defined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
ifdef GAMMADIR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  ifndef ALT_OUTPUTDIR
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    ALT_OUTPUTDIR := $(shell pwd)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  include $(GAMMADIR)/make/defs.make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  include defs.make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
ifneq ($(ALT_OUTPUTDIR),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  ALT_OUT=
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
# Typical C1/C2 targets made available with this Makefile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
C1_VM_TARGETS=product1 fastdebug1 optimized1 jvmg1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
C2_VM_TARGETS=product  fastdebug  optimized  jvmg
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
KERNEL_VM_TARGETS=productkernel fastdebugkernel optimizedkernel jvmgkernel
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    87
ZERO_VM_TARGETS=productzero fastdebugzero optimizedzero jvmgzero
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    89
# JDK directory list
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    90
JDK_DIRS=bin include jre lib demo
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    91
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
all:           all_product all_fastdebug
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    93
ifndef BUILD_CLIENT_ONLY
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
all_product:   product product1 productkernel docs export_product
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
all_fastdebug: fastdebug fastdebug1 fastdebugkernel docs export_fastdebug
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
all_debug:     jvmg jvmg1 jvmgkernel docs export_debug
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    97
else
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    98
all_product:   product1 docs export_product
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    99
all_fastdebug: fastdebug1 docs export_fastdebug
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   100
all_debug:     jvmg1 docs export_debug
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   101
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
all_optimized: optimized optimized1 optimizedkernel docs export_optimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   104
allzero:           all_productzero all_fastdebugzero
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   105
all_productzero:   productzero docs export_product
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   106
all_fastdebugzero: fastdebugzero docs export_fastdebug
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   107
all_debugzero:     jvmgzero docs export_debug
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   108
all_optimizedzero: optimizedzero docs export_optimized
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   109
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
# Do everything
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
world:         all create_jdk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
# Build or export docs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
docs:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
ifeq ($(OSNAME),windows)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
	@$(ECHO) "No docs ($(VM_TARGET)) for windows"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
	$(CD) $(OUTPUTDIR); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
		      $(MAKE_ARGS) docs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
# Build variation of hotspot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
$(C1_VM_TARGETS):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
	$(CD) $(GAMMADIR)/make; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
	$(MAKE) VM_TARGET=$@ generic_build1 $(ALT_OUT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
$(C2_VM_TARGETS):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
	$(CD) $(GAMMADIR)/make; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
	$(MAKE) VM_TARGET=$@ generic_build2 $(ALT_OUT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
$(KERNEL_VM_TARGETS):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
	$(CD) $(GAMMADIR)/make; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
	$(MAKE) VM_TARGET=$@ generic_buildkernel $(ALT_OUT)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   136
$(ZERO_VM_TARGETS):
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   137
	$(CD) $(GAMMADIR)/make; \
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   138
	$(MAKE) VM_TARGET=$@ generic_buildzero $(ALT_OUT)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   139
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
# Build compiler1 (client) rule, different for platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
generic_build1:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
	$(MKDIR) -p $(OUTPUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
ifeq ($(OSNAME),windows)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  ifeq ($(ARCH_DATA_MODEL), 32)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
	$(CD) $(OUTPUTDIR); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
		      Variant=compiler1 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
                      WorkSpace=$(ABS_GAMMADIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
		      BootStrapDir=$(ABS_BOOTDIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                      BuildUser=$(USERNAME) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
		      $(MAKE_ARGS) $(VM_TARGET:%1=%)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
	@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  ifeq ($(ARCH_DATA_MODEL), 32)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
	$(CD) $(OUTPUTDIR); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
		      $(MAKE_ARGS) $(VM_TARGET)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
	@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
# Build compiler2 (server) rule, different for platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
generic_build2:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
	$(MKDIR) -p $(OUTPUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
ifeq ($(OSNAME),windows)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
	$(CD) $(OUTPUTDIR); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
		      Variant=compiler2 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
                      WorkSpace=$(ABS_GAMMADIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
		      BootStrapDir=$(ABS_BOOTDIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
                      BuildUser=$(USERNAME) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
		      $(MAKE_ARGS) $(VM_TARGET)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
	$(CD) $(OUTPUTDIR); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
	    $(MAKE) -f $(ABS_OS_MAKEFILE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
		      $(MAKE_ARGS) $(VM_TARGET)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
generic_buildkernel:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
	$(MKDIR) -p $(OUTPUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
ifeq ($(OSNAME),windows)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  ifeq ($(ARCH_DATA_MODEL), 32)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
	$(CD) $(OUTPUTDIR); \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
	    $(NMAKE) -f $(ABS_OS_MAKEFILE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
		      Variant=kernel \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
                      WorkSpace=$(ABS_GAMMADIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
		      BootStrapDir=$(ABS_BOOTDIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                      BuildUser=$(USERNAME) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
		      $(MAKE_ARGS) $(VM_TARGET:%kernel=%)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
	@$(ECHO) "No kernel ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
	@$(ECHO) "No kernel ($(VM_TARGET)) for OS_NAME=$(OSNAME)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   200
generic_buildzero:
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   201
	$(MKDIR) -p $(OUTPUTDIR)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   202
	$(CD) $(OUTPUTDIR); \
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   203
		$(MAKE) -f $(ABS_OS_MAKEFILE) \
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   204
			$(MAKE_ARGS) $(VM_TARGET)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   205
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
# Export file rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
generic_export: $(EXPORT_LIST)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
export_product:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
	$(MAKE) VM_SUBDIR=product                            generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
export_fastdebug:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
	$(MAKE) VM_SUBDIR=fastdebug EXPORT_SUBDIR=/fastdebug generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
export_debug:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
	$(MAKE) VM_SUBDIR=${VM_DEBUG} EXPORT_SUBDIR=/debug   generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
export_optimized:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
	$(MAKE) VM_SUBDIR=optimized EXPORT_SUBDIR=/optimized generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
export_product_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
		VM_SUBDIR=product                            generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
export_optimized_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
		VM_SUBDIR=optimized                          generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
export_fastdebug_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/fastdebug \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
		VM_SUBDIR=fastdebug                          generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
export_debug_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
	$(MAKE) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/debug \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
		VM_SUBDIR=${VM_DEBUG}                        generic_export
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
# Export file copy rules
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
XUSAGE=$(HS_SRC_DIR)/share/vm/Xusage.txt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
DOCS_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_docs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
C1_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
C2_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
KERNEL_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_kernel
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   236
ZERO_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_zero
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
C1_DIR=$(C1_BASE_DIR)/$(VM_SUBDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
C2_DIR=$(C2_BASE_DIR)/$(VM_SUBDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
KERNEL_DIR=$(KERNEL_BASE_DIR)/$(VM_SUBDIR)
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   240
ZERO_DIR=$(ZERO_BASE_DIR)/$(VM_SUBDIR)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
# Misc files and generated files need to come from C1 or C2 area
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   243
ifeq ($(ZERO_BUILD), true)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   244
  MISC_DIR=$(ZERO_DIR)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   245
  GEN_DIR=$(ZERO_BASE_DIR)/generated
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   246
else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
ifeq ($(ARCH_DATA_MODEL), 32)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  MISC_DIR=$(C1_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  GEN_DIR=$(C1_BASE_DIR)/generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  MISC_DIR=$(C2_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  GEN_DIR=$(C2_BASE_DIR)/generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
endif
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   254
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
# Bin files (windows)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
ifeq ($(OSNAME),windows)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
# Get jvm.lib 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
$(EXPORT_LIB_DIR)/%.lib:  $(MISC_DIR)/%.lib
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
# Other libraries (like SA)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
$(EXPORT_JRE_BIN_DIR)/%.dll: $(MISC_DIR)/%.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(MISC_DIR)/%.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
$(EXPORT_JRE_BIN_DIR)/%.map: $(MISC_DIR)/%.map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
# Client files always come from C1 area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
$(EXPORT_CLIENT_DIR)/%.dll:  $(C1_DIR)/%.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
$(EXPORT_CLIENT_DIR)/%.pdb:  $(C1_DIR)/%.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
$(EXPORT_CLIENT_DIR)/%.map:  $(C1_DIR)/%.map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
# Server files always come from C2 area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
$(EXPORT_SERVER_DIR)/%.dll:  $(C2_DIR)/%.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
$(EXPORT_SERVER_DIR)/%.pdb:  $(C2_DIR)/%.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
$(EXPORT_SERVER_DIR)/%.map:  $(C2_DIR)/%.map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
# Kernel files always come from kernel area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
$(EXPORT_KERNEL_DIR)/%.dll:  $(KERNEL_DIR)/%.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
$(EXPORT_KERNEL_DIR)/%.pdb:  $(KERNEL_DIR)/%.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
$(EXPORT_KERNEL_DIR)/%.map:  $(KERNEL_DIR)/%.map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
# Shared Library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
ifneq ($(OSNAME),windows)
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   298
  ifeq ($(ZERO_BUILD), true)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   299
$(EXPORT_JRE_LIB_ARCH_DIR)/%.so: $(ZERO_DIR)/%.so
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   300
	$(install-file)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   301
$(EXPORT_SERVER_DIR)/%.so:       $(ZERO_DIR)/%.so
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   302
	$(install-file)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   303
  else
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   304
$(EXPORT_JRE_LIB_ARCH_DIR)/%.so: $(C1_DIR)/%.so
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   305
	$(install-file)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
$(EXPORT_JRE_LIB_ARCH_DIR)/%.so: $(C2_DIR)/%.so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
$(EXPORT_CLIENT_DIR)/%.so:       $(C1_DIR)/%.so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
$(EXPORT_CLIENT_DIR)/64/%.so:    $(C1_DIR)/%.so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
$(EXPORT_SERVER_DIR)/%.so:       $(C2_DIR)/%.so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
$(EXPORT_SERVER_DIR)/64/%.so:    $(C2_DIR)/%.so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
	$(install-file)
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   316
  endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
# Jar file (sa-jdi.jar)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
$(EXPORT_LIB_DIR)/%.jar: $(GEN_DIR)/%.jar
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 670
diff changeset
   323
# Include files (jvmti.h, jvmticmlr.h, jni.h, $(JDK_INCLUDE_SUBDIR)/jni_md.h, jmm.h)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
$(EXPORT_INCLUDE_DIR)/%: $(GEN_DIR)/jvmtifiles/%
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 670
diff changeset
   327
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/code/%
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 670
diff changeset
   328
	$(install-file)
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 670
diff changeset
   329
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/prims/%
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
$(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h:  $(HS_SRC_DIR)/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/services/%
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
# Doc files (jvmti.html)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
$(EXPORT_DOCS_DIR)/platform/jvmti/%: $(DOCS_DIR)/%
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
	$(install-file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
# Xusage file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
$(EXPORT_SERVER_DIR)/Xusage.txt $(EXPORT_CLIENT_DIR)/Xusage.txt $(EXPORT_KERNEL_DIR)/Xusage.txt: $(XUSAGE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
	$(prep-target)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
	$(RM) $@.temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
	$(SED) 's/\(separated by \)[;:]/\1$(PATH_SEP)/g' $< > $@.temp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
	$(MV) $@.temp $@
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
# Clean rules
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
clobber clean: clean_build clean_export clean_jdk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
clean_build:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
	$(RM) -r $(C1_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
	$(RM) -r $(C2_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
	$(RM) -r $(KERNEL_DIR)
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   358
	$(RM) -r $(ZERO_DIR)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
clean_export:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
	$(RM) -r $(EXPORT_PATH)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
clean_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
	$(RM) -r $(JDK_IMAGE_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
# Create JDK and place this build into it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
create_jdk: copy_jdk update_jdk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
update_jdk: export_product_jdk export_fastdebug_jdk test_jdk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
copy_jdk: $(JDK_IMAGE_DIR)/jre/lib/rt.jar
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
$(JDK_IMAGE_DIR)/jre/lib/rt.jar:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
	$(RM) -r $(JDK_IMAGE_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
	$(MKDIR) -p $(JDK_IMAGE_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
	($(CD) $(JDK_IMPORT_PATH) && \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
	 $(TAR) -cf - *) | \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
	 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
test_jdk:
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   381
  ifneq ($(ZERO_BUILD), true)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   382
    ifeq ($(ARCH_DATA_MODEL), 32)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
	$(JDK_IMAGE_DIR)/bin/java -client -version
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   384
    endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
	$(JDK_IMAGE_DIR)/bin/java -server -version
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
copy_product_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
	$(RM) -r $(JDK_IMAGE_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
	$(MKDIR) -p $(JDK_IMAGE_DIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
	($(CD) $(JDK_IMPORT_PATH) && \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   392
	 $(TAR) -cf - $(JDK_DIRS)) | \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
	 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
copy_fastdebug_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
	$(RM) -r $(JDK_IMAGE_DIR)/fastdebug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
	$(MKDIR) -p $(JDK_IMAGE_DIR)/fastdebug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
	if [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
	  ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   400
	   $(TAR) -cf - $(JDK_DIRS)) | \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
	   ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
	else \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
	  ($(CD) $(JDK_IMPORT_PATH) && \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   404
	   $(TAR) -cf - $(JDK_DIRS)) | \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
	   ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
	fi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
copy_debug_jdk:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
	$(RM) -r $(JDK_IMAGE_DIR)/debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
	$(MKDIR) -p $(JDK_IMAGE_DIR)/debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
	if [ -d $(JDK_IMPORT_PATH)/debug ] ; then \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
	  ($(CD) $(JDK_IMPORT_PATH)/debug && \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   413
	   $(TAR) -cf - $(JDK_DIRS)) | \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
	elif [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
	  ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   417
	   $(TAR) -cf - $(JDK_DIRS)) | \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
	else \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
	  ($(CD) $(JDK_IMPORT_PATH) && \
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   421
	   $(TAR) -cf - $(JDK_DIRS)) | \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
	   ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
	fi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
# Check target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
check: variable_check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
# Help target
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
help: intro_help target_help variable_help notes_help examples_help
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
# Intro help message
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
intro_help:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
"Makefile for the Hotspot workspace." 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
"Default behavior is to build and create an export area for the j2se builds."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
# Target help
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
target_help:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
	@$(ECHO) "help:             This help message"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
	@$(ECHO) "all:              Same as: all_product all_fastdebug"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
	@$(ECHO) "world:            Same as: all create_jdk"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
	@$(ECHO) "all_product:      Same as: product product1 export_product"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
	@$(ECHO) "all_fastdebug:    Same as: fastdebug fastdebug1 export_fastdebug"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
	@$(ECHO) "all_debug:        Same as: jvmg jvmg1 export_debug"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
	@$(ECHO) "all_optimized:    Same as: optimized optimized1 export_optimized"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
	@$(ECHO) "clean:            Clean all areas"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
	@$(ECHO) "export_product:   Export product files to EXPORT_PATH"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
	@$(ECHO) "export_fastdebug: Export fastdebug files to EXPORT_PATH"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
	@$(ECHO) "export_debug:     Export debug files to EXPORT_PATH"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
	@$(ECHO) "export_optimized: Export optimized files to EXPORT_PATH"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
	@$(ECHO) "create_jdk:       Create JDK image, export all files into it"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
	@$(ECHO) "update_jdk:       Update JDK image with fresh exported files"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
	@$(ECHO) " "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
	@$(ECHO) "Others targets are:"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
	@$(ECHO) "   $(C1_VM_TARGETS)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
	@$(ECHO) "   $(C2_VM_TARGETS)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
	@$(ECHO) "   $(KERNEL_VM_TARGETS)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
# Variable help (only common ones used by this workspace)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
variable_help: variable_help_intro variable_list variable_help_end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
variable_help_intro:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
	@$(ECHO) "--- Common Variables ---"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
variable_help_end:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
	@$(ECHO) " "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
	@$(ECHO) "--- Make Arguments ---"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
	@$(ECHO) "MAKE_ARGS=$(MAKE_ARGS)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
# One line descriptions for the variables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
SLASH_JAVA.desc            = Root of all build tools, e.g. /java or J:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
OUTPUTDIR.desc             = Output directory, default is build/<osname>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
BOOTDIR.desc               = JDK used to compile agent java source and test with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
JDK_IMPORT_PATH.desc       = Promoted JDK to copy for 'create_jdk'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
EXPORT_PATH.desc           = Directory to place files to export for JDK build
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
# Make variables to print out (description and value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
VARIABLE_PRINTVAL_LIST +=       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    SLASH_JAVA                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    OUTPUTDIR                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    BOOTDIR                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    JDK_IMPORT_PATH             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    EXPORT_PATH
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
# Make variables that should refer to directories that exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
VARIABLE_CHECKDIR_LIST +=       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    SLASH_JAVA                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    BOOTDIR                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    JDK_IMPORT_PATH
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
# For pattern rules below, so all are treated the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
# Complete variable check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
variable_check: $(DO_CHECKDIR_LIST)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
variable_list: $(DO_PRINTVAL_LIST) variable_check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
# Pattern rule for printing out a variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
%.printval:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
	@$(ECHO) "  ALT_$* - $($*.desc)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
	@$(ECHO) "        $*=$($*)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
# Pattern rule for checking to see if a variable with a directory exists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
%.checkdir:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
	@if [ ! -d $($*) ] ; then \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
	fi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
# Pattern rule for checking to see if a variable with a file exists
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
%.checkfil:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
	@if [ ! -f $($*) ] ; then \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
	    $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
	fi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
# Misc notes on help
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
notes_help:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
"--- Notes --- "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
"- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
"        builds or previous release JDK builds will work."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
"- The fastest builds have been when the workspace and the BOOTDIR are on"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
"        local disk."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
examples_help:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
"--- Examples --- "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
"  $(MAKE) all"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
"  $(MAKE) world"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
"  $(MAKE) ALT_BOOTDIR=/opt/java/jdk$(PREVIOUS_JDK_VERSION)" 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
	@$(ECHO) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
"  $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk$(JDK_VERSION)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
# JPRT rule to build this workspace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
include $(GAMMADIR)/make/jprt.gmk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
.PHONY: all world clobber clean help $(C1_VM_TARGETS) $(C2_VM_TARGETS) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
        $(KERNEL_VM_TARGETS) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
	generic_build1 generic_build2 generic_buildkernel generic_export \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
	export_product export_fastdebug export_debug export_optimized \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
	export_jdk_product export_jdk_fastdebug export_jdk_debug \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
	create_jdk copy_jdk update_jdk test_jdk \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
	copy_product_jdk copy_fastdebug_jdk copy_debug_jdk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554