[2] | 1 | #
|
---|
[278] | 2 | # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
|
---|
[2] | 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 | #
|
---|
[278] | 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.
|
---|
[2] | 22 | #
|
---|
[40] | 23 | #
|
---|
[2] | 24 |
|
---|
| 25 | # The common definitions for hotspot builds.
|
---|
| 26 |
|
---|
| 27 | # Default to verbose build logs (show all compile lines):
|
---|
| 28 | MAKE_VERBOSE=y
|
---|
| 29 |
|
---|
| 30 | # Make macros for install files or preparing targets
|
---|
| 31 | CD=cd
|
---|
| 32 | CP=cp
|
---|
| 33 | ECHO=echo
|
---|
| 34 | GREP=grep
|
---|
| 35 | MKDIR=mkdir
|
---|
| 36 | MV=mv
|
---|
| 37 | PWD=pwd
|
---|
| 38 | RM=rm -f
|
---|
| 39 | SED=sed
|
---|
| 40 | TAR=tar
|
---|
| 41 | ZIPEXE=zip
|
---|
| 42 |
|
---|
| 43 | define install-file
|
---|
| 44 | @$(MKDIR) -p $(@D)
|
---|
| 45 | @$(RM) $@
|
---|
| 46 | $(CP) $< $@
|
---|
| 47 | endef
|
---|
| 48 | define prep-target
|
---|
| 49 | @$(MKDIR) -p $(@D)
|
---|
| 50 | @$(RM) $@
|
---|
| 51 | endef
|
---|
| 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.
|
---|
| 58 | GAMMADIR := $(shell until ([ -d dev ]&&echo $${GAMMADIR:-/GAMMADIR/}) || ([ -d src/share/vm ]&&pwd); do cd ..; done)
|
---|
| 59 | HS_SRC_DIR=$(GAMMADIR)/src
|
---|
| 60 | HS_MAKE_DIR=$(GAMMADIR)/make
|
---|
| 61 | HS_BUILD_DIR=$(GAMMADIR)/build
|
---|
| 62 |
|
---|
| 63 | ifeq ($(USER),)
|
---|
| 64 | USER=$(USERNAME)
|
---|
| 65 | endif
|
---|
| 66 |
|
---|
| 67 | # hotspot version definitions
|
---|
| 68 | include $(GAMMADIR)/make/hotspot_version
|
---|
| 69 |
|
---|
| 70 | # Java versions needed
|
---|
| 71 | ifeq ($(PREVIOUS_JDK_VERSION),)
|
---|
| 72 | PREVIOUS_JDK_VERSION=$(JDK_PREVIOUS_VERSION)
|
---|
| 73 | endif
|
---|
| 74 | ifeq ($(JDK_MAJOR_VERSION),)
|
---|
| 75 | JDK_MAJOR_VERSION=$(JDK_MAJOR_VER)
|
---|
| 76 | endif
|
---|
| 77 | ifeq ($(JDK_MINOR_VERSION),)
|
---|
| 78 | JDK_MINOR_VERSION=$(JDK_MINOR_VER)
|
---|
| 79 | endif
|
---|
| 80 | ifeq ($(JDK_MICRO_VERSION),)
|
---|
| 81 | JDK_MICRO_VERSION=$(JDK_MICRO_VER)
|
---|
| 82 | endif
|
---|
| 83 | ifeq ($(JDK_MKTG_VERSION),)
|
---|
| 84 | JDK_MKTG_VERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
|
---|
| 85 | endif
|
---|
| 86 | ifeq ($(JDK_VERSION),)
|
---|
| 87 | JDK_VERSION=$(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
|
---|
| 88 | endif
|
---|
| 89 | ifeq ($(FULL_VERSION),)
|
---|
| 90 | FULL_VERSION="$(JDK_VERSION)"
|
---|
| 91 | endif
|
---|
| 92 |
|
---|
| 93 | # FULL_VERSION is only used to define JRE_RELEASE_VERSION which is used
|
---|
| 94 | # as JRE version in VM -Xinternalversion output.
|
---|
| 95 | ifndef JRE_RELEASE_VERSION
|
---|
| 96 | JRE_RELEASE_VERSION=$(FULL_VERSION)
|
---|
| 97 | endif
|
---|
| 98 |
|
---|
| 99 | ifndef HOTSPOT_RELEASE_VERSION
|
---|
| 100 | HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
|
---|
| 101 | endif
|
---|
| 102 |
|
---|
| 103 | ifdef HOTSPOT_BUILD_VERSION
|
---|
[309] | 104 | # specified in command line
|
---|
[2] | 105 | else
|
---|
[309] | 106 | ifdef COOKED_BUILD_NUMBER
|
---|
| 107 | # JRE build
|
---|
| 108 | HOTSPOT_BUILD_VERSION=
|
---|
[2] | 109 | else
|
---|
[309] | 110 | ifdef USER_RELEASE_SUFFIX
|
---|
| 111 | HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX)
|
---|
[2] | 112 | else
|
---|
| 113 | HOTSPOT_BUILD_VERSION=internal
|
---|
| 114 | endif
|
---|
| 115 | endif
|
---|
| 116 | endif
|
---|
| 117 |
|
---|
[40] | 118 | # On eComStation, OS is "ecs", ignore it to let uname be used
|
---|
| 119 | ifeq ($(OS),ecs)
|
---|
| 120 | OS :=
|
---|
| 121 | endif
|
---|
| 122 |
|
---|
[2] | 123 | # Windows should have OS predefined
|
---|
| 124 | ifeq ($(OS),)
|
---|
| 125 | OS := $(shell uname -s)
|
---|
| 126 | HOST := $(shell uname -n)
|
---|
| 127 | endif
|
---|
| 128 |
|
---|
[40] | 129 | # If not SunOS and not Linux and not OS/2, assume Windows
|
---|
[2] | 130 | ifneq ($(OS), Linux)
|
---|
| 131 | ifneq ($(OS), SunOS)
|
---|
[40] | 132 | ifneq ($(OS), OS/2)
|
---|
| 133 | OSNAME=windows
|
---|
| 134 | else
|
---|
| 135 | OSNAME=os2
|
---|
| 136 | endif
|
---|
[2] | 137 | else
|
---|
| 138 | OSNAME=solaris
|
---|
| 139 | endif
|
---|
| 140 | else
|
---|
| 141 | OSNAME=linux
|
---|
| 142 | endif
|
---|
| 143 |
|
---|
| 144 | # Determinations of default make arguments and platform specific settings
|
---|
| 145 | MAKE_ARGS=
|
---|
| 146 |
|
---|
| 147 | # ARCH_DATA_MODEL==64 is equivalent to LP64=1
|
---|
| 148 | ifeq ($(ARCH_DATA_MODEL), 64)
|
---|
| 149 | ifndef LP64
|
---|
| 150 | LP64 := 1
|
---|
| 151 | endif
|
---|
| 152 | endif
|
---|
| 153 |
|
---|
| 154 | # Defaults set for product build
|
---|
| 155 | EXPORT_SUBDIR=
|
---|
| 156 |
|
---|
| 157 | # Change default /java path if requested
|
---|
| 158 | ifneq ($(ALT_SLASH_JAVA),)
|
---|
| 159 | SLASH_JAVA=$(ALT_SLASH_JAVA)
|
---|
| 160 | endif
|
---|
| 161 |
|
---|
| 162 | # Default OUTPUTDIR
|
---|
| 163 | OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME)
|
---|
| 164 | ifneq ($(ALT_OUTPUTDIR),)
|
---|
| 165 | OUTPUTDIR=$(ALT_OUTPUTDIR)
|
---|
| 166 | endif
|
---|
| 167 |
|
---|
| 168 | # Find latest promoted JDK area
|
---|
| 169 | JDK_IMPORT_PATH=$(SLASH_JAVA)/re/j2se/$(JDK_VERSION)/promoted/latest/binaries/$(PLATFORM)
|
---|
| 170 | ifneq ($(ALT_JDK_IMPORT_PATH),)
|
---|
| 171 | JDK_IMPORT_PATH=$(ALT_JDK_IMPORT_PATH)
|
---|
| 172 | endif
|
---|
| 173 |
|
---|
| 174 | # Find JDK used for javac compiles
|
---|
| 175 | BOOTDIR=$(SLASH_JAVA)/re/j2se/$(PREVIOUS_JDK_VERSION)/latest/binaries/$(PLATFORM)
|
---|
| 176 | ifneq ($(ALT_BOOTDIR),)
|
---|
| 177 | BOOTDIR=$(ALT_BOOTDIR)
|
---|
| 178 | endif
|
---|
| 179 |
|
---|
[40] | 180 | # The platform dependent defs.make defines platform specific variable such
|
---|
[2] | 181 | # as ARCH, EXPORT_LIST etc. We must place the include here after BOOTDIR is defined.
|
---|
| 182 | include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make
|
---|
| 183 |
|
---|
| 184 | # We are trying to put platform specific defintions
|
---|
| 185 | # files to make/$(OSNAME)/makefiles dictory. However
|
---|
| 186 | # some definitions are common for both linux and solaris,
|
---|
| 187 | # so we put them here.
|
---|
[40] | 188 | ifneq ($(filter-out windows os2,$(OSNAME)),)
|
---|
[2] | 189 | ABS_OUTPUTDIR := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD))
|
---|
| 190 | ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR); $(PWD))
|
---|
| 191 | ABS_GAMMADIR := $(shell $(CD) $(GAMMADIR); $(PWD))
|
---|
| 192 | ABS_OS_MAKEFILE := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile
|
---|
| 193 |
|
---|
| 194 | # uname, HotSpot source directory, build directory and JDK use different names
|
---|
| 195 | # for CPU architectures.
|
---|
| 196 | # ARCH - uname output
|
---|
| 197 | # SRCARCH - where to find HotSpot cpu and os_cpu source files
|
---|
| 198 | # BUILDARCH - build directory
|
---|
| 199 | # LIBARCH - directory name in JDK/JRE
|
---|
| 200 |
|
---|
| 201 | # Use uname output for SRCARCH, but deal with platform differences. If ARCH
|
---|
[40] | 202 | # is not explicitly listed below, it is treated as x86.
|
---|
[278] | 203 | SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
|
---|
[2] | 204 | ARCH/ = x86
|
---|
| 205 | ARCH/sparc = sparc
|
---|
| 206 | ARCH/sparc64= sparc
|
---|
| 207 | ARCH/ia64 = ia64
|
---|
| 208 | ARCH/amd64 = x86
|
---|
| 209 | ARCH/x86_64 = x86
|
---|
[278] | 210 | ARCH/ppc64 = ppc
|
---|
| 211 | ARCH/ppc = ppc
|
---|
| 212 | ARCH/arm = arm
|
---|
[2] | 213 | ARCH/zero = zero
|
---|
| 214 |
|
---|
| 215 | # BUILDARCH is usually the same as SRCARCH, except for sparcv9
|
---|
| 216 | BUILDARCH = $(SRCARCH)
|
---|
| 217 | ifeq ($(BUILDARCH), x86)
|
---|
| 218 | ifdef LP64
|
---|
| 219 | BUILDARCH = amd64
|
---|
| 220 | else
|
---|
| 221 | BUILDARCH = i486
|
---|
| 222 | endif
|
---|
| 223 | endif
|
---|
| 224 | ifeq ($(BUILDARCH), sparc)
|
---|
| 225 | ifdef LP64
|
---|
| 226 | BUILDARCH = sparcv9
|
---|
| 227 | endif
|
---|
| 228 | endif
|
---|
| 229 |
|
---|
| 230 | # LIBARCH is 1:1 mapping from BUILDARCH
|
---|
| 231 | LIBARCH = $(LIBARCH/$(BUILDARCH))
|
---|
| 232 | LIBARCH/i486 = i386
|
---|
| 233 | LIBARCH/amd64 = amd64
|
---|
| 234 | LIBARCH/sparc = sparc
|
---|
| 235 | LIBARCH/sparcv9 = sparcv9
|
---|
| 236 | LIBARCH/ia64 = ia64
|
---|
[278] | 237 | LIBARCH/ppc64 = ppc
|
---|
| 238 | LIBARCH/ppc = ppc
|
---|
| 239 | LIBARCH/arm = arm
|
---|
[2] | 240 | LIBARCH/zero = $(ZERO_LIBARCH)
|
---|
| 241 |
|
---|
| 242 | LP64_ARCH = sparcv9 amd64 ia64 zero
|
---|
| 243 | endif
|
---|
| 244 |
|
---|
| 245 | # Required make macro settings for all platforms
|
---|
| 246 | MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR)
|
---|
| 247 | MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR)
|
---|
| 248 | MAKE_ARGS += GAMMADIR=$(ABS_GAMMADIR)
|
---|
| 249 | MAKE_ARGS += MAKE_VERBOSE=$(MAKE_VERBOSE)
|
---|
| 250 | MAKE_ARGS += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION)
|
---|
| 251 | MAKE_ARGS += JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION)
|
---|
| 252 |
|
---|
| 253 | # Pass HOTSPOT_BUILD_VERSION as argument to OS specific Makefile
|
---|
| 254 | # to overwrite the default definition since OS specific Makefile also
|
---|
| 255 | # includes this make/defs.make file.
|
---|
| 256 | MAKE_ARGS += HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION)
|
---|
| 257 |
|
---|
| 258 | # Select name of export directory
|
---|
| 259 | EXPORT_PATH=$(OUTPUTDIR)/export-$(PLATFORM)$(EXPORT_SUBDIR)
|
---|
| 260 | ifneq ($(ALT_EXPORT_PATH),)
|
---|
| 261 | EXPORT_PATH=$(ALT_EXPORT_PATH)
|
---|
| 262 | endif
|
---|
| 263 |
|
---|
| 264 | # Default jdk image if one is created for you with create_jdk
|
---|
| 265 | JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM)
|
---|
| 266 |
|
---|
| 267 | # Various export sub directories
|
---|
| 268 | EXPORT_INCLUDE_DIR = $(EXPORT_PATH)/include
|
---|
| 269 | EXPORT_DOCS_DIR = $(EXPORT_PATH)/docs
|
---|
| 270 | EXPORT_LIB_DIR = $(EXPORT_PATH)/lib
|
---|
| 271 | EXPORT_JRE_DIR = $(EXPORT_PATH)/jre
|
---|
| 272 | EXPORT_JRE_BIN_DIR = $(EXPORT_JRE_DIR)/bin
|
---|
| 273 | EXPORT_JRE_LIB_DIR = $(EXPORT_JRE_DIR)/lib
|
---|
| 274 | EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)/$(LIBARCH)
|
---|
| 275 |
|
---|
| 276 | # Common export list of files
|
---|
| 277 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h
|
---|
| 278 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h
|
---|
| 279 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jni.h
|
---|
| 280 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h
|
---|
| 281 | EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jmm.h
|
---|