blob: ac7268a96c5ef670247242f22a42b419de1f8217 [file] [log] [blame]
J. Duke81537792007-12-01 00:00:00 +00001#
James Melvin73785e62012-02-01 15:01:08 -05002# Copyright (c) 2006, 2012, 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
Erik Joelsson97612e52012-02-22 09:24:35 +010027# Optionally include SPEC file generated by configure.
28ifneq ($(SPEC),)
29 include $(SPEC)
30endif
31
J. Duke81537792007-12-01 00:00:00 +000032# Default to verbose build logs (show all compile lines):
33MAKE_VERBOSE=y
34
35# Make macros for install files or preparing targets
36CD=cd
37CP=cp
38ECHO=echo
39GREP=grep
40MKDIR=mkdir
41MV=mv
42PWD=pwd
43RM=rm -f
44SED=sed
45TAR=tar
46ZIPEXE=zip
47
48define install-file
49@$(MKDIR) -p $(@D)
50@$(RM) $@
51$(CP) $< $@
52endef
53define prep-target
54@$(MKDIR) -p $(@D)
55@$(RM) $@
56endef
57
58# Directory paths and user name
59# Unless GAMMADIR is set on the command line, search upward from
60# the current directory for a parent directory containing "src/share/vm".
61# If that fails, look for $GAMMADIR in the environment.
62# When the tree of subdirs is built, this setting is stored in each flags.make.
63GAMMADIR := $(shell until ([ -d dev ]&&echo $${GAMMADIR:-/GAMMADIR/}) || ([ -d src/share/vm ]&&pwd); do cd ..; done)
64HS_SRC_DIR=$(GAMMADIR)/src
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -040065HS_MAKE_DIR=$(GAMMADIR)/make
J. Duke81537792007-12-01 00:00:00 +000066HS_BUILD_DIR=$(GAMMADIR)/build
67
68ifeq ($(USER),)
69 USER=$(USERNAME)
70endif
71
72# hotspot version definitions
73include $(GAMMADIR)/make/hotspot_version
74
75# Java versions needed
76ifeq ($(PREVIOUS_JDK_VERSION),)
77 PREVIOUS_JDK_VERSION=$(JDK_PREVIOUS_VERSION)
78endif
79ifeq ($(JDK_MAJOR_VERSION),)
80 JDK_MAJOR_VERSION=$(JDK_MAJOR_VER)
81endif
82ifeq ($(JDK_MINOR_VERSION),)
83 JDK_MINOR_VERSION=$(JDK_MINOR_VER)
84endif
85ifeq ($(JDK_MICRO_VERSION),)
86 JDK_MICRO_VERSION=$(JDK_MICRO_VER)
87endif
88ifeq ($(JDK_MKTG_VERSION),)
89 JDK_MKTG_VERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
90endif
91ifeq ($(JDK_VERSION),)
92 JDK_VERSION=$(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
93endif
94ifeq ($(FULL_VERSION),)
95 FULL_VERSION="$(JDK_VERSION)"
96endif
97
98# FULL_VERSION is only used to define JRE_RELEASE_VERSION which is used
99# as JRE version in VM -Xinternalversion output.
100ifndef JRE_RELEASE_VERSION
101 JRE_RELEASE_VERSION=$(FULL_VERSION)
102endif
103
104ifndef HOTSPOT_RELEASE_VERSION
105 HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
106endif
107
108ifdef HOTSPOT_BUILD_VERSION
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800109# specified in command line
J. Duke81537792007-12-01 00:00:00 +0000110else
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800111 ifdef COOKED_BUILD_NUMBER
J. Duke81537792007-12-01 00:00:00 +0000112# JRE build
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800113 HOTSPOT_BUILD_VERSION=
114 else
115 ifdef USER_RELEASE_SUFFIX
116 HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX)
J. Duke81537792007-12-01 00:00:00 +0000117 else
118 HOTSPOT_BUILD_VERSION=internal
119 endif
120 endif
121endif
122
123# Windows should have OS predefined
124ifeq ($(OS),)
125 OS := $(shell uname -s)
Kurt Miller95c56a42011-09-25 16:03:29 -0700126 ifneq ($(findstring BSD,$(OS)),)
127 OS=bsd
128 endif
129 ifeq ($(OS), Darwin)
130 OS=bsd
131 endif
J. Duke81537792007-12-01 00:00:00 +0000132 HOST := $(shell uname -n)
133endif
134
Kurt Miller95c56a42011-09-25 16:03:29 -0700135# If not SunOS, not Linux and not BSD, assume Windows
J. Duke81537792007-12-01 00:00:00 +0000136ifneq ($(OS), Linux)
137 ifneq ($(OS), SunOS)
Kurt Miller95c56a42011-09-25 16:03:29 -0700138 ifneq ($(OS), bsd)
139 OSNAME=windows
140 else
141 OSNAME=bsd
142 endif
J. Duke81537792007-12-01 00:00:00 +0000143 else
144 OSNAME=solaris
145 endif
146else
147 OSNAME=linux
148endif
149
150# Determinations of default make arguments and platform specific settings
151MAKE_ARGS=
152
153# ARCH_DATA_MODEL==64 is equivalent to LP64=1
154ifeq ($(ARCH_DATA_MODEL), 64)
155 ifndef LP64
156 LP64 := 1
157 endif
158endif
159
160# Defaults set for product build
161EXPORT_SUBDIR=
162
163# Change default /java path if requested
164ifneq ($(ALT_SLASH_JAVA),)
165 SLASH_JAVA=$(ALT_SLASH_JAVA)
166endif
167
168# Default OUTPUTDIR
169OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME)
170ifneq ($(ALT_OUTPUTDIR),)
171 OUTPUTDIR=$(ALT_OUTPUTDIR)
172endif
173
174# Find latest promoted JDK area
175JDK_IMPORT_PATH=$(SLASH_JAVA)/re/j2se/$(JDK_VERSION)/promoted/latest/binaries/$(PLATFORM)
176ifneq ($(ALT_JDK_IMPORT_PATH),)
177 JDK_IMPORT_PATH=$(ALT_JDK_IMPORT_PATH)
178endif
179
David Holmes74c63192011-02-14 19:27:36 -0500180# Other parts of JDK build may require an import JDK that can be executed
181# on the build host. For cross-compile builds we also need an import JDK
182# that matches the target arch, so for that we set ALT_JDK_TARGET_IMPORT_PATH
183ifneq ($(ALT_JDK_TARGET_IMPORT_PATH),)
184 JDK_IMPORT_PATH=$(ALT_JDK_TARGET_IMPORT_PATH)
185endif
186
J. Duke81537792007-12-01 00:00:00 +0000187# Find JDK used for javac compiles
188BOOTDIR=$(SLASH_JAVA)/re/j2se/$(PREVIOUS_JDK_VERSION)/latest/binaries/$(PLATFORM)
189ifneq ($(ALT_BOOTDIR),)
190 BOOTDIR=$(ALT_BOOTDIR)
191endif
192
James Melvin73785e62012-02-01 15:01:08 -0500193# Select name of the export directory and honor ALT overrides
194EXPORT_PATH=$(OUTPUTDIR)/export-$(PLATFORM)$(EXPORT_SUBDIR)
195ifneq ($(ALT_EXPORT_PATH),)
196 EXPORT_PATH=$(ALT_EXPORT_PATH)
197endif
198
199# Default jdk image if one is created for you with create_jdk
200JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM)
Christian Thalingerdf753a22012-02-13 04:30:59 -0800201ifneq ($(ALT_JDK_IMAGE_DIR),)
202 JDK_IMAGE_DIR=$(ALT_JDK_IMAGE_DIR)
203endif
James Melvin73785e62012-02-01 15:01:08 -0500204
J. Duke81537792007-12-01 00:00:00 +0000205# The platform dependent defs.make defines platform specific variable such
206# as ARCH, EXPORT_LIST etc. We must place the include here after BOOTDIR is defined.
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400207include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make
J. Duke81537792007-12-01 00:00:00 +0000208
209# We are trying to put platform specific defintions
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400210# files to make/$(OSNAME)/makefiles dictory. However
J. Duke81537792007-12-01 00:00:00 +0000211# some definitions are common for both linux and solaris,
212# so we put them here.
213ifneq ($(OSNAME),windows)
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400214 ABS_OUTPUTDIR := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD))
J. Duke81537792007-12-01 00:00:00 +0000215 ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR); $(PWD))
216 ABS_GAMMADIR := $(shell $(CD) $(GAMMADIR); $(PWD))
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400217 ABS_OS_MAKEFILE := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile
J. Duke81537792007-12-01 00:00:00 +0000218
219 # uname, HotSpot source directory, build directory and JDK use different names
220 # for CPU architectures.
221 # ARCH - uname output
222 # SRCARCH - where to find HotSpot cpu and os_cpu source files
223 # BUILDARCH - build directory
224 # LIBARCH - directory name in JDK/JRE
225
226 # Use uname output for SRCARCH, but deal with platform differences. If ARCH
227 # is not explicitly listed below, it is treated as x86.
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400228 SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
J. Duke81537792007-12-01 00:00:00 +0000229 ARCH/ = x86
230 ARCH/sparc = sparc
231 ARCH/sparc64= sparc
232 ARCH/ia64 = ia64
233 ARCH/amd64 = x86
234 ARCH/x86_64 = x86
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400235 ARCH/ppc64 = ppc
236 ARCH/ppc = ppc
237 ARCH/arm = arm
Gary Benson5473f392009-10-13 12:04:21 -0700238 ARCH/zero = zero
J. Duke81537792007-12-01 00:00:00 +0000239
240 # BUILDARCH is usually the same as SRCARCH, except for sparcv9
241 BUILDARCH = $(SRCARCH)
242 ifeq ($(BUILDARCH), x86)
243 ifdef LP64
244 BUILDARCH = amd64
245 else
246 BUILDARCH = i486
247 endif
248 endif
249 ifeq ($(BUILDARCH), sparc)
250 ifdef LP64
251 BUILDARCH = sparcv9
252 endif
253 endif
254
255 # LIBARCH is 1:1 mapping from BUILDARCH
256 LIBARCH = $(LIBARCH/$(BUILDARCH))
257 LIBARCH/i486 = i386
258 LIBARCH/amd64 = amd64
259 LIBARCH/sparc = sparc
260 LIBARCH/sparcv9 = sparcv9
261 LIBARCH/ia64 = ia64
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400262 LIBARCH/ppc64 = ppc
263 LIBARCH/ppc = ppc
264 LIBARCH/arm = arm
Gary Benson5473f392009-10-13 12:04:21 -0700265 LIBARCH/zero = $(ZERO_LIBARCH)
J. Duke81537792007-12-01 00:00:00 +0000266
Gary Benson5473f392009-10-13 12:04:21 -0700267 LP64_ARCH = sparcv9 amd64 ia64 zero
J. Duke81537792007-12-01 00:00:00 +0000268endif
269
270# Required make macro settings for all platforms
271MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR)
Xiaobin Lu1755a592008-06-24 16:52:31 -0700272MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR)
J. Duke81537792007-12-01 00:00:00 +0000273MAKE_ARGS += GAMMADIR=$(ABS_GAMMADIR)
274MAKE_ARGS += MAKE_VERBOSE=$(MAKE_VERBOSE)
275MAKE_ARGS += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION)
276MAKE_ARGS += JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION)
277
278# Pass HOTSPOT_BUILD_VERSION as argument to OS specific Makefile
279# to overwrite the default definition since OS specific Makefile also
280# includes this make/defs.make file.
281MAKE_ARGS += HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION)
282
J. Duke81537792007-12-01 00:00:00 +0000283# Various export sub directories
284EXPORT_INCLUDE_DIR = $(EXPORT_PATH)/include
285EXPORT_DOCS_DIR = $(EXPORT_PATH)/docs
286EXPORT_LIB_DIR = $(EXPORT_PATH)/lib
287EXPORT_JRE_DIR = $(EXPORT_PATH)/jre
288EXPORT_JRE_BIN_DIR = $(EXPORT_JRE_DIR)/bin
289EXPORT_JRE_LIB_DIR = $(EXPORT_JRE_DIR)/lib
290EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)/$(LIBARCH)
291
Christos Zoulas32708ba2011-10-13 09:35:42 -0700292# non-universal macosx builds need to appear universal
293ifeq ($(OS_VENDOR), Darwin)
294 ifneq ($(MACOSX_UNIVERSAL), true)
295 EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)
296 endif
297endif
298
J. Duke81537792007-12-01 00:00:00 +0000299# Common export list of files
300EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h
Vasanth Venkatachalama5e58e82010-01-13 09:39:46 -0700301EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h
J. Duke81537792007-12-01 00:00:00 +0000302EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jni.h
303EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h
304EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jmm.h
Markus Gronlund007126d2012-01-11 17:34:02 -0500305
306ifndef JAVASE_EMBEDDED
307EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jfr.h
308endif