J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 1 | # |
James Melvin | 73785e6 | 2012-02-01 15:01:08 -0500 | [diff] [blame] | 2 | # Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved. |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 3 | # 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 Trimble | ba7c173 | 2010-05-27 19:08:38 -0700 | [diff] [blame] | 19 | # 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. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 22 | # |
| 23 | # |
| 24 | |
| 25 | # The common definitions for hotspot builds. |
| 26 | |
Erik Joelsson | 97612e5 | 2012-02-22 09:24:35 +0100 | [diff] [blame] | 27 | # Optionally include SPEC file generated by configure. |
| 28 | ifneq ($(SPEC),) |
| 29 | include $(SPEC) |
| 30 | endif |
| 31 | |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 32 | # Default to verbose build logs (show all compile lines): |
| 33 | MAKE_VERBOSE=y |
| 34 | |
| 35 | # Make macros for install files or preparing targets |
| 36 | CD=cd |
| 37 | CP=cp |
| 38 | ECHO=echo |
| 39 | GREP=grep |
| 40 | MKDIR=mkdir |
| 41 | MV=mv |
| 42 | PWD=pwd |
| 43 | RM=rm -f |
| 44 | SED=sed |
| 45 | TAR=tar |
| 46 | ZIPEXE=zip |
| 47 | |
| 48 | define install-file |
| 49 | @$(MKDIR) -p $(@D) |
| 50 | @$(RM) $@ |
| 51 | $(CP) $< $@ |
| 52 | endef |
| 53 | define prep-target |
| 54 | @$(MKDIR) -p $(@D) |
| 55 | @$(RM) $@ |
| 56 | endef |
| 57 | |
Erik Joelsson | cfc6c74 | 2012-03-19 10:09:24 +0100 | [diff] [blame] | 58 | # Default values for JVM_VARIANT* variables if configure hasn't set |
| 59 | # it already. |
| 60 | ifeq ($(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 |
| 77 | endif |
| 78 | |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 79 | # 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. |
| 84 | GAMMADIR := $(shell until ([ -d dev ]&&echo $${GAMMADIR:-/GAMMADIR/}) || ([ -d src/share/vm ]&&pwd); do cd ..; done) |
| 85 | HS_SRC_DIR=$(GAMMADIR)/src |
Keith McGuigan | c8e6b3d | 2008-04-09 14:22:48 -0400 | [diff] [blame] | 86 | HS_MAKE_DIR=$(GAMMADIR)/make |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 87 | HS_BUILD_DIR=$(GAMMADIR)/build |
| 88 | |
| 89 | ifeq ($(USER),) |
| 90 | USER=$(USERNAME) |
| 91 | endif |
| 92 | |
| 93 | # hotspot version definitions |
| 94 | include $(GAMMADIR)/make/hotspot_version |
| 95 | |
| 96 | # Java versions needed |
| 97 | ifeq ($(PREVIOUS_JDK_VERSION),) |
| 98 | PREVIOUS_JDK_VERSION=$(JDK_PREVIOUS_VERSION) |
| 99 | endif |
| 100 | ifeq ($(JDK_MAJOR_VERSION),) |
| 101 | JDK_MAJOR_VERSION=$(JDK_MAJOR_VER) |
| 102 | endif |
| 103 | ifeq ($(JDK_MINOR_VERSION),) |
| 104 | JDK_MINOR_VERSION=$(JDK_MINOR_VER) |
| 105 | endif |
| 106 | ifeq ($(JDK_MICRO_VERSION),) |
| 107 | JDK_MICRO_VERSION=$(JDK_MICRO_VER) |
| 108 | endif |
| 109 | ifeq ($(JDK_MKTG_VERSION),) |
| 110 | JDK_MKTG_VERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION) |
| 111 | endif |
| 112 | ifeq ($(JDK_VERSION),) |
| 113 | JDK_VERSION=$(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION) |
| 114 | endif |
| 115 | ifeq ($(FULL_VERSION),) |
| 116 | FULL_VERSION="$(JDK_VERSION)" |
| 117 | endif |
| 118 | |
| 119 | # FULL_VERSION is only used to define JRE_RELEASE_VERSION which is used |
| 120 | # as JRE version in VM -Xinternalversion output. |
| 121 | ifndef JRE_RELEASE_VERSION |
| 122 | JRE_RELEASE_VERSION=$(FULL_VERSION) |
| 123 | endif |
| 124 | |
| 125 | ifndef HOTSPOT_RELEASE_VERSION |
| 126 | HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER) |
| 127 | endif |
| 128 | |
| 129 | ifdef HOTSPOT_BUILD_VERSION |
Kelly O'Hair | dddeba1 | 2010-11-30 18:07:18 -0800 | [diff] [blame] | 130 | # specified in command line |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 131 | else |
Kelly O'Hair | dddeba1 | 2010-11-30 18:07:18 -0800 | [diff] [blame] | 132 | ifdef COOKED_BUILD_NUMBER |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 133 | # JRE build |
Kelly O'Hair | dddeba1 | 2010-11-30 18:07:18 -0800 | [diff] [blame] | 134 | HOTSPOT_BUILD_VERSION= |
| 135 | else |
| 136 | ifdef USER_RELEASE_SUFFIX |
| 137 | HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX) |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 138 | else |
| 139 | HOTSPOT_BUILD_VERSION=internal |
| 140 | endif |
| 141 | endif |
| 142 | endif |
| 143 | |
| 144 | # Windows should have OS predefined |
| 145 | ifeq ($(OS),) |
| 146 | OS := $(shell uname -s) |
Kurt Miller | 95c56a4 | 2011-09-25 16:03:29 -0700 | [diff] [blame] | 147 | ifneq ($(findstring BSD,$(OS)),) |
| 148 | OS=bsd |
| 149 | endif |
| 150 | ifeq ($(OS), Darwin) |
| 151 | OS=bsd |
| 152 | endif |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 153 | HOST := $(shell uname -n) |
| 154 | endif |
| 155 | |
Kurt Miller | 95c56a4 | 2011-09-25 16:03:29 -0700 | [diff] [blame] | 156 | # If not SunOS, not Linux and not BSD, assume Windows |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 157 | ifneq ($(OS), Linux) |
| 158 | ifneq ($(OS), SunOS) |
Kurt Miller | 95c56a4 | 2011-09-25 16:03:29 -0700 | [diff] [blame] | 159 | ifneq ($(OS), bsd) |
| 160 | OSNAME=windows |
| 161 | else |
| 162 | OSNAME=bsd |
| 163 | endif |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 164 | else |
| 165 | OSNAME=solaris |
| 166 | endif |
| 167 | else |
| 168 | OSNAME=linux |
| 169 | endif |
| 170 | |
| 171 | # Determinations of default make arguments and platform specific settings |
| 172 | MAKE_ARGS= |
| 173 | |
| 174 | # ARCH_DATA_MODEL==64 is equivalent to LP64=1 |
| 175 | ifeq ($(ARCH_DATA_MODEL), 64) |
| 176 | ifndef LP64 |
| 177 | LP64 := 1 |
| 178 | endif |
| 179 | endif |
| 180 | |
| 181 | # Defaults set for product build |
| 182 | EXPORT_SUBDIR= |
| 183 | |
| 184 | # Change default /java path if requested |
| 185 | ifneq ($(ALT_SLASH_JAVA),) |
| 186 | SLASH_JAVA=$(ALT_SLASH_JAVA) |
| 187 | endif |
| 188 | |
| 189 | # Default OUTPUTDIR |
| 190 | OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME) |
| 191 | ifneq ($(ALT_OUTPUTDIR),) |
| 192 | OUTPUTDIR=$(ALT_OUTPUTDIR) |
| 193 | endif |
| 194 | |
| 195 | # Find latest promoted JDK area |
| 196 | JDK_IMPORT_PATH=$(SLASH_JAVA)/re/j2se/$(JDK_VERSION)/promoted/latest/binaries/$(PLATFORM) |
| 197 | ifneq ($(ALT_JDK_IMPORT_PATH),) |
| 198 | JDK_IMPORT_PATH=$(ALT_JDK_IMPORT_PATH) |
| 199 | endif |
| 200 | |
David Holmes | 74c6319 | 2011-02-14 19:27:36 -0500 | [diff] [blame] | 201 | # 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 |
| 204 | ifneq ($(ALT_JDK_TARGET_IMPORT_PATH),) |
| 205 | JDK_IMPORT_PATH=$(ALT_JDK_TARGET_IMPORT_PATH) |
| 206 | endif |
| 207 | |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 208 | # Find JDK used for javac compiles |
| 209 | BOOTDIR=$(SLASH_JAVA)/re/j2se/$(PREVIOUS_JDK_VERSION)/latest/binaries/$(PLATFORM) |
| 210 | ifneq ($(ALT_BOOTDIR),) |
| 211 | BOOTDIR=$(ALT_BOOTDIR) |
| 212 | endif |
| 213 | |
James Melvin | 73785e6 | 2012-02-01 15:01:08 -0500 | [diff] [blame] | 214 | # Select name of the export directory and honor ALT overrides |
| 215 | EXPORT_PATH=$(OUTPUTDIR)/export-$(PLATFORM)$(EXPORT_SUBDIR) |
| 216 | ifneq ($(ALT_EXPORT_PATH),) |
| 217 | EXPORT_PATH=$(ALT_EXPORT_PATH) |
| 218 | endif |
| 219 | |
| 220 | # Default jdk image if one is created for you with create_jdk |
| 221 | JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM) |
Christian Thalinger | df753a2 | 2012-02-13 04:30:59 -0800 | [diff] [blame] | 222 | ifneq ($(ALT_JDK_IMAGE_DIR),) |
| 223 | JDK_IMAGE_DIR=$(ALT_JDK_IMAGE_DIR) |
| 224 | endif |
James Melvin | 73785e6 | 2012-02-01 15:01:08 -0500 | [diff] [blame] | 225 | |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 226 | # 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 McGuigan | c8e6b3d | 2008-04-09 14:22:48 -0400 | [diff] [blame] | 228 | include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 229 | |
| 230 | # We are trying to put platform specific defintions |
Keith McGuigan | c8e6b3d | 2008-04-09 14:22:48 -0400 | [diff] [blame] | 231 | # files to make/$(OSNAME)/makefiles dictory. However |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 232 | # some definitions are common for both linux and solaris, |
| 233 | # so we put them here. |
| 234 | ifneq ($(OSNAME),windows) |
Keith McGuigan | c8e6b3d | 2008-04-09 14:22:48 -0400 | [diff] [blame] | 235 | ABS_OUTPUTDIR := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD)) |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 236 | ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR); $(PWD)) |
| 237 | ABS_GAMMADIR := $(shell $(CD) $(GAMMADIR); $(PWD)) |
Keith McGuigan | c8e6b3d | 2008-04-09 14:22:48 -0400 | [diff] [blame] | 238 | ABS_OS_MAKEFILE := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 239 | |
| 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 Vandette | b95c7e9 | 2010-08-03 08:13:38 -0400 | [diff] [blame] | 249 | SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH))) |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 250 | ARCH/ = x86 |
| 251 | ARCH/sparc = sparc |
| 252 | ARCH/sparc64= sparc |
| 253 | ARCH/ia64 = ia64 |
| 254 | ARCH/amd64 = x86 |
| 255 | ARCH/x86_64 = x86 |
Bob Vandette | b95c7e9 | 2010-08-03 08:13:38 -0400 | [diff] [blame] | 256 | ARCH/ppc64 = ppc |
| 257 | ARCH/ppc = ppc |
| 258 | ARCH/arm = arm |
Gary Benson | 5473f39 | 2009-10-13 12:04:21 -0700 | [diff] [blame] | 259 | ARCH/zero = zero |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 260 | |
| 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 Vandette | b95c7e9 | 2010-08-03 08:13:38 -0400 | [diff] [blame] | 283 | LIBARCH/ppc64 = ppc |
| 284 | LIBARCH/ppc = ppc |
| 285 | LIBARCH/arm = arm |
Gary Benson | 5473f39 | 2009-10-13 12:04:21 -0700 | [diff] [blame] | 286 | LIBARCH/zero = $(ZERO_LIBARCH) |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 287 | |
Gary Benson | 5473f39 | 2009-10-13 12:04:21 -0700 | [diff] [blame] | 288 | LP64_ARCH = sparcv9 amd64 ia64 zero |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 289 | endif |
| 290 | |
| 291 | # Required make macro settings for all platforms |
| 292 | MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR) |
Xiaobin Lu | 1755a59 | 2008-06-24 16:52:31 -0700 | [diff] [blame] | 293 | MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR) |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 294 | MAKE_ARGS += GAMMADIR=$(ABS_GAMMADIR) |
| 295 | MAKE_ARGS += MAKE_VERBOSE=$(MAKE_VERBOSE) |
| 296 | MAKE_ARGS += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION) |
| 297 | MAKE_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. |
| 302 | MAKE_ARGS += HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION) |
| 303 | |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 304 | # Various export sub directories |
| 305 | EXPORT_INCLUDE_DIR = $(EXPORT_PATH)/include |
| 306 | EXPORT_DOCS_DIR = $(EXPORT_PATH)/docs |
| 307 | EXPORT_LIB_DIR = $(EXPORT_PATH)/lib |
| 308 | EXPORT_JRE_DIR = $(EXPORT_PATH)/jre |
| 309 | EXPORT_JRE_BIN_DIR = $(EXPORT_JRE_DIR)/bin |
| 310 | EXPORT_JRE_LIB_DIR = $(EXPORT_JRE_DIR)/lib |
| 311 | EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)/$(LIBARCH) |
| 312 | |
Christos Zoulas | 32708ba | 2011-10-13 09:35:42 -0700 | [diff] [blame] | 313 | # non-universal macosx builds need to appear universal |
| 314 | ifeq ($(OS_VENDOR), Darwin) |
| 315 | ifneq ($(MACOSX_UNIVERSAL), true) |
| 316 | EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR) |
| 317 | endif |
| 318 | endif |
| 319 | |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 320 | # Common export list of files |
| 321 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h |
Vasanth Venkatachalam | a5e58e8 | 2010-01-13 09:39:46 -0700 | [diff] [blame] | 322 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h |
J. Duke | 8153779 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 323 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jni.h |
| 324 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h |
| 325 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jmm.h |
Markus Gronlund | 007126d | 2012-01-11 17:34:02 -0500 | [diff] [blame] | 326 | |
| 327 | ifndef JAVASE_EMBEDDED |
| 328 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jfr.h |
| 329 | endif |