blob: 44f873d4e342eb089f81eec3a675c6eaf7296988 [file] [log] [blame]
J. Duke81537792007-12-01 00:00:00 +00001#
David Holmes74c63192011-02-14 19:27:36 -05002# Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
J. Duke81537792007-12-01 00:00:00 +00003# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.
8#
9# This code is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12# version 2 for more details (a copy is included in the LICENSE file that
13# accompanied this code).
14#
15# You should have received a copy of the GNU General Public License version
16# 2 along with this work; if not, write to the Free Software Foundation,
17# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18#
Erik Trimbleba7c1732010-05-27 19:08:38 -070019# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# questions.
J. Duke81537792007-12-01 00:00:00 +000022#
23#
24
25# The common definitions for hotspot builds.
26
27# Default to verbose build logs (show all compile lines):
28MAKE_VERBOSE=y
29
30# Make macros for install files or preparing targets
31CD=cd
32CP=cp
33ECHO=echo
34GREP=grep
35MKDIR=mkdir
36MV=mv
37PWD=pwd
38RM=rm -f
39SED=sed
40TAR=tar
41ZIPEXE=zip
42
43define install-file
44@$(MKDIR) -p $(@D)
45@$(RM) $@
46$(CP) $< $@
47endef
48define prep-target
49@$(MKDIR) -p $(@D)
50@$(RM) $@
51endef
52
53# Directory paths and user name
54# Unless GAMMADIR is set on the command line, search upward from
55# the current directory for a parent directory containing "src/share/vm".
56# If that fails, look for $GAMMADIR in the environment.
57# When the tree of subdirs is built, this setting is stored in each flags.make.
58GAMMADIR := $(shell until ([ -d dev ]&&echo $${GAMMADIR:-/GAMMADIR/}) || ([ -d src/share/vm ]&&pwd); do cd ..; done)
59HS_SRC_DIR=$(GAMMADIR)/src
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -040060HS_MAKE_DIR=$(GAMMADIR)/make
J. Duke81537792007-12-01 00:00:00 +000061HS_BUILD_DIR=$(GAMMADIR)/build
62
63ifeq ($(USER),)
64 USER=$(USERNAME)
65endif
66
67# hotspot version definitions
68include $(GAMMADIR)/make/hotspot_version
69
70# Java versions needed
71ifeq ($(PREVIOUS_JDK_VERSION),)
72 PREVIOUS_JDK_VERSION=$(JDK_PREVIOUS_VERSION)
73endif
74ifeq ($(JDK_MAJOR_VERSION),)
75 JDK_MAJOR_VERSION=$(JDK_MAJOR_VER)
76endif
77ifeq ($(JDK_MINOR_VERSION),)
78 JDK_MINOR_VERSION=$(JDK_MINOR_VER)
79endif
80ifeq ($(JDK_MICRO_VERSION),)
81 JDK_MICRO_VERSION=$(JDK_MICRO_VER)
82endif
83ifeq ($(JDK_MKTG_VERSION),)
84 JDK_MKTG_VERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
85endif
86ifeq ($(JDK_VERSION),)
87 JDK_VERSION=$(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
88endif
89ifeq ($(FULL_VERSION),)
90 FULL_VERSION="$(JDK_VERSION)"
91endif
92
93# FULL_VERSION is only used to define JRE_RELEASE_VERSION which is used
94# as JRE version in VM -Xinternalversion output.
95ifndef JRE_RELEASE_VERSION
96 JRE_RELEASE_VERSION=$(FULL_VERSION)
97endif
98
99ifndef HOTSPOT_RELEASE_VERSION
100 HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
101endif
102
103ifdef HOTSPOT_BUILD_VERSION
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800104# specified in command line
J. Duke81537792007-12-01 00:00:00 +0000105else
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800106 ifdef COOKED_BUILD_NUMBER
J. Duke81537792007-12-01 00:00:00 +0000107# JRE build
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800108 HOTSPOT_BUILD_VERSION=
109 else
110 ifdef USER_RELEASE_SUFFIX
111 HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX)
J. Duke81537792007-12-01 00:00:00 +0000112 else
113 HOTSPOT_BUILD_VERSION=internal
114 endif
115 endif
116endif
117
118# Windows should have OS predefined
119ifeq ($(OS),)
120 OS := $(shell uname -s)
Kurt Miller95c56a42011-09-25 16:03:29 -0700121 ifneq ($(findstring BSD,$(OS)),)
122 OS=bsd
123 endif
124 ifeq ($(OS), Darwin)
125 OS=bsd
126 endif
J. Duke81537792007-12-01 00:00:00 +0000127 HOST := $(shell uname -n)
128endif
129
Kurt Miller95c56a42011-09-25 16:03:29 -0700130# If not SunOS, not Linux and not BSD, assume Windows
J. Duke81537792007-12-01 00:00:00 +0000131ifneq ($(OS), Linux)
132 ifneq ($(OS), SunOS)
Kurt Miller95c56a42011-09-25 16:03:29 -0700133 ifneq ($(OS), bsd)
134 OSNAME=windows
135 else
136 OSNAME=bsd
137 endif
J. Duke81537792007-12-01 00:00:00 +0000138 else
139 OSNAME=solaris
140 endif
141else
142 OSNAME=linux
143endif
144
145# Determinations of default make arguments and platform specific settings
146MAKE_ARGS=
147
148# ARCH_DATA_MODEL==64 is equivalent to LP64=1
149ifeq ($(ARCH_DATA_MODEL), 64)
150 ifndef LP64
151 LP64 := 1
152 endif
153endif
154
155# Defaults set for product build
156EXPORT_SUBDIR=
157
158# Change default /java path if requested
159ifneq ($(ALT_SLASH_JAVA),)
160 SLASH_JAVA=$(ALT_SLASH_JAVA)
161endif
162
163# Default OUTPUTDIR
164OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME)
165ifneq ($(ALT_OUTPUTDIR),)
166 OUTPUTDIR=$(ALT_OUTPUTDIR)
167endif
168
169# Find latest promoted JDK area
170JDK_IMPORT_PATH=$(SLASH_JAVA)/re/j2se/$(JDK_VERSION)/promoted/latest/binaries/$(PLATFORM)
171ifneq ($(ALT_JDK_IMPORT_PATH),)
172 JDK_IMPORT_PATH=$(ALT_JDK_IMPORT_PATH)
173endif
174
David Holmes74c63192011-02-14 19:27:36 -0500175# Other parts of JDK build may require an import JDK that can be executed
176# on the build host. For cross-compile builds we also need an import JDK
177# that matches the target arch, so for that we set ALT_JDK_TARGET_IMPORT_PATH
178ifneq ($(ALT_JDK_TARGET_IMPORT_PATH),)
179 JDK_IMPORT_PATH=$(ALT_JDK_TARGET_IMPORT_PATH)
180endif
181
J. Duke81537792007-12-01 00:00:00 +0000182# Find JDK used for javac compiles
183BOOTDIR=$(SLASH_JAVA)/re/j2se/$(PREVIOUS_JDK_VERSION)/latest/binaries/$(PLATFORM)
184ifneq ($(ALT_BOOTDIR),)
185 BOOTDIR=$(ALT_BOOTDIR)
186endif
187
188# The platform dependent defs.make defines platform specific variable such
189# as ARCH, EXPORT_LIST etc. We must place the include here after BOOTDIR is defined.
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400190include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make
J. Duke81537792007-12-01 00:00:00 +0000191
192# We are trying to put platform specific defintions
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400193# files to make/$(OSNAME)/makefiles dictory. However
J. Duke81537792007-12-01 00:00:00 +0000194# some definitions are common for both linux and solaris,
195# so we put them here.
196ifneq ($(OSNAME),windows)
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400197 ABS_OUTPUTDIR := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD))
J. Duke81537792007-12-01 00:00:00 +0000198 ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR); $(PWD))
199 ABS_GAMMADIR := $(shell $(CD) $(GAMMADIR); $(PWD))
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400200 ABS_OS_MAKEFILE := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile
J. Duke81537792007-12-01 00:00:00 +0000201
202 # uname, HotSpot source directory, build directory and JDK use different names
203 # for CPU architectures.
204 # ARCH - uname output
205 # SRCARCH - where to find HotSpot cpu and os_cpu source files
206 # BUILDARCH - build directory
207 # LIBARCH - directory name in JDK/JRE
208
209 # Use uname output for SRCARCH, but deal with platform differences. If ARCH
210 # is not explicitly listed below, it is treated as x86.
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400211 SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
J. Duke81537792007-12-01 00:00:00 +0000212 ARCH/ = x86
213 ARCH/sparc = sparc
214 ARCH/sparc64= sparc
215 ARCH/ia64 = ia64
216 ARCH/amd64 = x86
217 ARCH/x86_64 = x86
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400218 ARCH/ppc64 = ppc
219 ARCH/ppc = ppc
220 ARCH/arm = arm
Gary Benson5473f392009-10-13 12:04:21 -0700221 ARCH/zero = zero
J. Duke81537792007-12-01 00:00:00 +0000222
223 # BUILDARCH is usually the same as SRCARCH, except for sparcv9
224 BUILDARCH = $(SRCARCH)
225 ifeq ($(BUILDARCH), x86)
226 ifdef LP64
227 BUILDARCH = amd64
228 else
229 BUILDARCH = i486
230 endif
231 endif
232 ifeq ($(BUILDARCH), sparc)
233 ifdef LP64
234 BUILDARCH = sparcv9
235 endif
236 endif
237
238 # LIBARCH is 1:1 mapping from BUILDARCH
239 LIBARCH = $(LIBARCH/$(BUILDARCH))
240 LIBARCH/i486 = i386
241 LIBARCH/amd64 = amd64
242 LIBARCH/sparc = sparc
243 LIBARCH/sparcv9 = sparcv9
244 LIBARCH/ia64 = ia64
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400245 LIBARCH/ppc64 = ppc
246 LIBARCH/ppc = ppc
247 LIBARCH/arm = arm
Gary Benson5473f392009-10-13 12:04:21 -0700248 LIBARCH/zero = $(ZERO_LIBARCH)
J. Duke81537792007-12-01 00:00:00 +0000249
Gary Benson5473f392009-10-13 12:04:21 -0700250 LP64_ARCH = sparcv9 amd64 ia64 zero
J. Duke81537792007-12-01 00:00:00 +0000251endif
252
253# Required make macro settings for all platforms
254MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR)
Xiaobin Lu1755a592008-06-24 16:52:31 -0700255MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR)
J. Duke81537792007-12-01 00:00:00 +0000256MAKE_ARGS += GAMMADIR=$(ABS_GAMMADIR)
257MAKE_ARGS += MAKE_VERBOSE=$(MAKE_VERBOSE)
258MAKE_ARGS += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION)
259MAKE_ARGS += JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION)
260
261# Pass HOTSPOT_BUILD_VERSION as argument to OS specific Makefile
262# to overwrite the default definition since OS specific Makefile also
263# includes this make/defs.make file.
264MAKE_ARGS += HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION)
265
266# Select name of export directory
267EXPORT_PATH=$(OUTPUTDIR)/export-$(PLATFORM)$(EXPORT_SUBDIR)
268ifneq ($(ALT_EXPORT_PATH),)
269 EXPORT_PATH=$(ALT_EXPORT_PATH)
270endif
271
272# Default jdk image if one is created for you with create_jdk
273JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM)
274
275# Various export sub directories
276EXPORT_INCLUDE_DIR = $(EXPORT_PATH)/include
277EXPORT_DOCS_DIR = $(EXPORT_PATH)/docs
278EXPORT_LIB_DIR = $(EXPORT_PATH)/lib
279EXPORT_JRE_DIR = $(EXPORT_PATH)/jre
280EXPORT_JRE_BIN_DIR = $(EXPORT_JRE_DIR)/bin
281EXPORT_JRE_LIB_DIR = $(EXPORT_JRE_DIR)/lib
282EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)/$(LIBARCH)
283
284# Common export list of files
285EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h
Vasanth Venkatachalama5e58e82010-01-13 09:39:46 -0700286EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h
J. Duke81537792007-12-01 00:00:00 +0000287EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jni.h
288EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h
289EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jmm.h