blob: b632ded2e000597ee5119f7ae440f2e5c377b9e4 [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
Erik Joelssoncfc6c742012-03-19 10:09:24 +010058# Default values for JVM_VARIANT* variables if configure hasn't set
59# it already.
60ifeq ($(JVM_VARIANTS),)
61 ifeq ($(ZERO_BUILD), true)
62 ifeq ($(SHARK_BUILD), true)
63 JVM_VARIANTS:=zeroshark
64 JVM_VARIANT_ZEROSHARK:=true
65 else
66 JVM_VARIANTS:=zero
67 JVM_VARIANT_ZERO:=true
68 endif
69 else
70 # A default is needed
71 ifeq ($(BUILD_CLIENT_ONLY), true)
72 JVM_VARIANTS:=client
73 JVM_VARIANT_CLIENT:=true
74 endif
75 # Further defaults are platform and arch specific
76 endif
77endif
78
J. Duke81537792007-12-01 00:00:00 +000079# Directory paths and user name
80# Unless GAMMADIR is set on the command line, search upward from
81# the current directory for a parent directory containing "src/share/vm".
82# If that fails, look for $GAMMADIR in the environment.
83# When the tree of subdirs is built, this setting is stored in each flags.make.
84GAMMADIR := $(shell until ([ -d dev ]&&echo $${GAMMADIR:-/GAMMADIR/}) || ([ -d src/share/vm ]&&pwd); do cd ..; done)
85HS_SRC_DIR=$(GAMMADIR)/src
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -040086HS_MAKE_DIR=$(GAMMADIR)/make
J. Duke81537792007-12-01 00:00:00 +000087HS_BUILD_DIR=$(GAMMADIR)/build
88
89ifeq ($(USER),)
90 USER=$(USERNAME)
91endif
92
93# hotspot version definitions
94include $(GAMMADIR)/make/hotspot_version
95
96# Java versions needed
97ifeq ($(PREVIOUS_JDK_VERSION),)
98 PREVIOUS_JDK_VERSION=$(JDK_PREVIOUS_VERSION)
99endif
100ifeq ($(JDK_MAJOR_VERSION),)
101 JDK_MAJOR_VERSION=$(JDK_MAJOR_VER)
102endif
103ifeq ($(JDK_MINOR_VERSION),)
104 JDK_MINOR_VERSION=$(JDK_MINOR_VER)
105endif
106ifeq ($(JDK_MICRO_VERSION),)
107 JDK_MICRO_VERSION=$(JDK_MICRO_VER)
108endif
109ifeq ($(JDK_MKTG_VERSION),)
110 JDK_MKTG_VERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
111endif
112ifeq ($(JDK_VERSION),)
113 JDK_VERSION=$(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
114endif
115ifeq ($(FULL_VERSION),)
116 FULL_VERSION="$(JDK_VERSION)"
117endif
118
119# FULL_VERSION is only used to define JRE_RELEASE_VERSION which is used
120# as JRE version in VM -Xinternalversion output.
121ifndef JRE_RELEASE_VERSION
122 JRE_RELEASE_VERSION=$(FULL_VERSION)
123endif
124
125ifndef HOTSPOT_RELEASE_VERSION
126 HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
127endif
128
129ifdef HOTSPOT_BUILD_VERSION
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800130# specified in command line
J. Duke81537792007-12-01 00:00:00 +0000131else
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800132 ifdef COOKED_BUILD_NUMBER
J. Duke81537792007-12-01 00:00:00 +0000133# JRE build
Kelly O'Hairdddeba12010-11-30 18:07:18 -0800134 HOTSPOT_BUILD_VERSION=
135 else
136 ifdef USER_RELEASE_SUFFIX
137 HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX)
J. Duke81537792007-12-01 00:00:00 +0000138 else
139 HOTSPOT_BUILD_VERSION=internal
140 endif
141 endif
142endif
143
144# Windows should have OS predefined
145ifeq ($(OS),)
146 OS := $(shell uname -s)
Kurt Miller95c56a42011-09-25 16:03:29 -0700147 ifneq ($(findstring BSD,$(OS)),)
148 OS=bsd
149 endif
150 ifeq ($(OS), Darwin)
151 OS=bsd
152 endif
J. Duke81537792007-12-01 00:00:00 +0000153 HOST := $(shell uname -n)
154endif
155
Kurt Miller95c56a42011-09-25 16:03:29 -0700156# If not SunOS, not Linux and not BSD, assume Windows
J. Duke81537792007-12-01 00:00:00 +0000157ifneq ($(OS), Linux)
158 ifneq ($(OS), SunOS)
Kurt Miller95c56a42011-09-25 16:03:29 -0700159 ifneq ($(OS), bsd)
160 OSNAME=windows
161 else
162 OSNAME=bsd
163 endif
J. Duke81537792007-12-01 00:00:00 +0000164 else
165 OSNAME=solaris
166 endif
167else
168 OSNAME=linux
169endif
170
171# Determinations of default make arguments and platform specific settings
172MAKE_ARGS=
173
174# ARCH_DATA_MODEL==64 is equivalent to LP64=1
175ifeq ($(ARCH_DATA_MODEL), 64)
176 ifndef LP64
177 LP64 := 1
178 endif
179endif
180
181# Defaults set for product build
182EXPORT_SUBDIR=
183
184# Change default /java path if requested
185ifneq ($(ALT_SLASH_JAVA),)
186 SLASH_JAVA=$(ALT_SLASH_JAVA)
187endif
188
189# Default OUTPUTDIR
190OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME)
191ifneq ($(ALT_OUTPUTDIR),)
192 OUTPUTDIR=$(ALT_OUTPUTDIR)
193endif
194
195# Find latest promoted JDK area
196JDK_IMPORT_PATH=$(SLASH_JAVA)/re/j2se/$(JDK_VERSION)/promoted/latest/binaries/$(PLATFORM)
197ifneq ($(ALT_JDK_IMPORT_PATH),)
198 JDK_IMPORT_PATH=$(ALT_JDK_IMPORT_PATH)
199endif
200
David Holmes74c63192011-02-14 19:27:36 -0500201# Other parts of JDK build may require an import JDK that can be executed
202# on the build host. For cross-compile builds we also need an import JDK
203# that matches the target arch, so for that we set ALT_JDK_TARGET_IMPORT_PATH
204ifneq ($(ALT_JDK_TARGET_IMPORT_PATH),)
205 JDK_IMPORT_PATH=$(ALT_JDK_TARGET_IMPORT_PATH)
206endif
207
J. Duke81537792007-12-01 00:00:00 +0000208# Find JDK used for javac compiles
209BOOTDIR=$(SLASH_JAVA)/re/j2se/$(PREVIOUS_JDK_VERSION)/latest/binaries/$(PLATFORM)
210ifneq ($(ALT_BOOTDIR),)
211 BOOTDIR=$(ALT_BOOTDIR)
212endif
213
James Melvin73785e62012-02-01 15:01:08 -0500214# Select name of the export directory and honor ALT overrides
215EXPORT_PATH=$(OUTPUTDIR)/export-$(PLATFORM)$(EXPORT_SUBDIR)
216ifneq ($(ALT_EXPORT_PATH),)
217 EXPORT_PATH=$(ALT_EXPORT_PATH)
218endif
219
220# Default jdk image if one is created for you with create_jdk
221JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM)
Christian Thalingerdf753a22012-02-13 04:30:59 -0800222ifneq ($(ALT_JDK_IMAGE_DIR),)
223 JDK_IMAGE_DIR=$(ALT_JDK_IMAGE_DIR)
224endif
James Melvin73785e62012-02-01 15:01:08 -0500225
J. Duke81537792007-12-01 00:00:00 +0000226# The platform dependent defs.make defines platform specific variable such
227# as ARCH, EXPORT_LIST etc. We must place the include here after BOOTDIR is defined.
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400228include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make
J. Duke81537792007-12-01 00:00:00 +0000229
230# We are trying to put platform specific defintions
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400231# files to make/$(OSNAME)/makefiles dictory. However
J. Duke81537792007-12-01 00:00:00 +0000232# some definitions are common for both linux and solaris,
233# so we put them here.
234ifneq ($(OSNAME),windows)
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400235 ABS_OUTPUTDIR := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD))
J. Duke81537792007-12-01 00:00:00 +0000236 ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR); $(PWD))
237 ABS_GAMMADIR := $(shell $(CD) $(GAMMADIR); $(PWD))
Keith McGuiganc8e6b3d2008-04-09 14:22:48 -0400238 ABS_OS_MAKEFILE := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile
J. Duke81537792007-12-01 00:00:00 +0000239
240 # uname, HotSpot source directory, build directory and JDK use different names
241 # for CPU architectures.
242 # ARCH - uname output
243 # SRCARCH - where to find HotSpot cpu and os_cpu source files
244 # BUILDARCH - build directory
245 # LIBARCH - directory name in JDK/JRE
246
247 # Use uname output for SRCARCH, but deal with platform differences. If ARCH
248 # is not explicitly listed below, it is treated as x86.
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400249 SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
J. Duke81537792007-12-01 00:00:00 +0000250 ARCH/ = x86
251 ARCH/sparc = sparc
252 ARCH/sparc64= sparc
253 ARCH/ia64 = ia64
254 ARCH/amd64 = x86
255 ARCH/x86_64 = x86
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400256 ARCH/ppc64 = ppc
257 ARCH/ppc = ppc
258 ARCH/arm = arm
Gary Benson5473f392009-10-13 12:04:21 -0700259 ARCH/zero = zero
J. Duke81537792007-12-01 00:00:00 +0000260
261 # BUILDARCH is usually the same as SRCARCH, except for sparcv9
262 BUILDARCH = $(SRCARCH)
263 ifeq ($(BUILDARCH), x86)
264 ifdef LP64
265 BUILDARCH = amd64
266 else
267 BUILDARCH = i486
268 endif
269 endif
270 ifeq ($(BUILDARCH), sparc)
271 ifdef LP64
272 BUILDARCH = sparcv9
273 endif
274 endif
275
276 # LIBARCH is 1:1 mapping from BUILDARCH
277 LIBARCH = $(LIBARCH/$(BUILDARCH))
278 LIBARCH/i486 = i386
279 LIBARCH/amd64 = amd64
280 LIBARCH/sparc = sparc
281 LIBARCH/sparcv9 = sparcv9
282 LIBARCH/ia64 = ia64
Bob Vandetteb95c7e92010-08-03 08:13:38 -0400283 LIBARCH/ppc64 = ppc
284 LIBARCH/ppc = ppc
285 LIBARCH/arm = arm
Gary Benson5473f392009-10-13 12:04:21 -0700286 LIBARCH/zero = $(ZERO_LIBARCH)
J. Duke81537792007-12-01 00:00:00 +0000287
Gary Benson5473f392009-10-13 12:04:21 -0700288 LP64_ARCH = sparcv9 amd64 ia64 zero
J. Duke81537792007-12-01 00:00:00 +0000289endif
290
291# Required make macro settings for all platforms
292MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR)
Xiaobin Lu1755a592008-06-24 16:52:31 -0700293MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR)
J. Duke81537792007-12-01 00:00:00 +0000294MAKE_ARGS += GAMMADIR=$(ABS_GAMMADIR)
295MAKE_ARGS += MAKE_VERBOSE=$(MAKE_VERBOSE)
296MAKE_ARGS += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION)
297MAKE_ARGS += JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION)
298
299# Pass HOTSPOT_BUILD_VERSION as argument to OS specific Makefile
300# to overwrite the default definition since OS specific Makefile also
301# includes this make/defs.make file.
302MAKE_ARGS += HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION)
303
J. Duke81537792007-12-01 00:00:00 +0000304# Various export sub directories
305EXPORT_INCLUDE_DIR = $(EXPORT_PATH)/include
306EXPORT_DOCS_DIR = $(EXPORT_PATH)/docs
307EXPORT_LIB_DIR = $(EXPORT_PATH)/lib
308EXPORT_JRE_DIR = $(EXPORT_PATH)/jre
309EXPORT_JRE_BIN_DIR = $(EXPORT_JRE_DIR)/bin
310EXPORT_JRE_LIB_DIR = $(EXPORT_JRE_DIR)/lib
311EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)/$(LIBARCH)
312
Christos Zoulas32708ba2011-10-13 09:35:42 -0700313# non-universal macosx builds need to appear universal
314ifeq ($(OS_VENDOR), Darwin)
315 ifneq ($(MACOSX_UNIVERSAL), true)
316 EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)
317 endif
318endif
319
J. Duke81537792007-12-01 00:00:00 +0000320# Common export list of files
321EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h
Vasanth Venkatachalama5e58e82010-01-13 09:39:46 -0700322EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h
J. Duke81537792007-12-01 00:00:00 +0000323EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jni.h
324EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h
325EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jmm.h
Markus Gronlund007126d2012-01-11 17:34:02 -0500326
327ifndef JAVASE_EMBEDDED
328EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jfr.h
329endif