make/defs.make

Mon, 19 Mar 2012 10:09:24 +0100

author
erikj
date
Mon, 19 Mar 2012 10:09:24 +0100
changeset 3649
3d7ea1dbe0de
parent 3600
7292cff45988
child 4028
a9fed06c01d2
permissions
-rw-r--r--

7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
Reviewed-by: dholmes, ohair

duke@435 1 #
phh@3492 2 # Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
trims@1907 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 # or visit www.oracle.com if you need additional information or have any
trims@1907 21 # questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # The common definitions for hotspot builds.
duke@435 26
erikj@3600 27 # Optionally include SPEC file generated by configure.
erikj@3600 28 ifneq ($(SPEC),)
erikj@3600 29 include $(SPEC)
erikj@3600 30 endif
erikj@3600 31
duke@435 32 # Default to verbose build logs (show all compile lines):
duke@435 33 MAKE_VERBOSE=y
duke@435 34
duke@435 35 # Make macros for install files or preparing targets
duke@435 36 CD=cd
duke@435 37 CP=cp
duke@435 38 ECHO=echo
duke@435 39 GREP=grep
duke@435 40 MKDIR=mkdir
duke@435 41 MV=mv
duke@435 42 PWD=pwd
duke@435 43 RM=rm -f
duke@435 44 SED=sed
duke@435 45 TAR=tar
duke@435 46 ZIPEXE=zip
duke@435 47
duke@435 48 define install-file
duke@435 49 @$(MKDIR) -p $(@D)
duke@435 50 @$(RM) $@
duke@435 51 $(CP) $< $@
duke@435 52 endef
duke@435 53 define prep-target
duke@435 54 @$(MKDIR) -p $(@D)
duke@435 55 @$(RM) $@
duke@435 56 endef
duke@435 57
erikj@3649 58 # Default values for JVM_VARIANT* variables if configure hasn't set
erikj@3649 59 # it already.
erikj@3649 60 ifeq ($(JVM_VARIANTS),)
erikj@3649 61 ifeq ($(ZERO_BUILD), true)
erikj@3649 62 ifeq ($(SHARK_BUILD), true)
erikj@3649 63 JVM_VARIANTS:=zeroshark
erikj@3649 64 JVM_VARIANT_ZEROSHARK:=true
erikj@3649 65 else
erikj@3649 66 JVM_VARIANTS:=zero
erikj@3649 67 JVM_VARIANT_ZERO:=true
erikj@3649 68 endif
erikj@3649 69 else
erikj@3649 70 # A default is needed
erikj@3649 71 ifeq ($(BUILD_CLIENT_ONLY), true)
erikj@3649 72 JVM_VARIANTS:=client
erikj@3649 73 JVM_VARIANT_CLIENT:=true
erikj@3649 74 endif
erikj@3649 75 # Further defaults are platform and arch specific
erikj@3649 76 endif
erikj@3649 77 endif
erikj@3649 78
duke@435 79 # Directory paths and user name
duke@435 80 # Unless GAMMADIR is set on the command line, search upward from
duke@435 81 # the current directory for a parent directory containing "src/share/vm".
duke@435 82 # If that fails, look for $GAMMADIR in the environment.
duke@435 83 # When the tree of subdirs is built, this setting is stored in each flags.make.
duke@435 84 GAMMADIR := $(shell until ([ -d dev ]&&echo $${GAMMADIR:-/GAMMADIR/}) || ([ -d src/share/vm ]&&pwd); do cd ..; done)
duke@435 85 HS_SRC_DIR=$(GAMMADIR)/src
kamg@526 86 HS_MAKE_DIR=$(GAMMADIR)/make
duke@435 87 HS_BUILD_DIR=$(GAMMADIR)/build
duke@435 88
duke@435 89 ifeq ($(USER),)
duke@435 90 USER=$(USERNAME)
duke@435 91 endif
duke@435 92
duke@435 93 # hotspot version definitions
duke@435 94 include $(GAMMADIR)/make/hotspot_version
duke@435 95
duke@435 96 # Java versions needed
duke@435 97 ifeq ($(PREVIOUS_JDK_VERSION),)
duke@435 98 PREVIOUS_JDK_VERSION=$(JDK_PREVIOUS_VERSION)
duke@435 99 endif
duke@435 100 ifeq ($(JDK_MAJOR_VERSION),)
duke@435 101 JDK_MAJOR_VERSION=$(JDK_MAJOR_VER)
duke@435 102 endif
duke@435 103 ifeq ($(JDK_MINOR_VERSION),)
duke@435 104 JDK_MINOR_VERSION=$(JDK_MINOR_VER)
duke@435 105 endif
duke@435 106 ifeq ($(JDK_MICRO_VERSION),)
duke@435 107 JDK_MICRO_VERSION=$(JDK_MICRO_VER)
duke@435 108 endif
duke@435 109 ifeq ($(JDK_MKTG_VERSION),)
duke@435 110 JDK_MKTG_VERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
duke@435 111 endif
duke@435 112 ifeq ($(JDK_VERSION),)
duke@435 113 JDK_VERSION=$(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
duke@435 114 endif
duke@435 115 ifeq ($(FULL_VERSION),)
duke@435 116 FULL_VERSION="$(JDK_VERSION)"
duke@435 117 endif
duke@435 118
duke@435 119 # FULL_VERSION is only used to define JRE_RELEASE_VERSION which is used
duke@435 120 # as JRE version in VM -Xinternalversion output.
duke@435 121 ifndef JRE_RELEASE_VERSION
duke@435 122 JRE_RELEASE_VERSION=$(FULL_VERSION)
duke@435 123 endif
duke@435 124
duke@435 125 ifndef HOTSPOT_RELEASE_VERSION
duke@435 126 HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
duke@435 127 endif
duke@435 128
duke@435 129 ifdef HOTSPOT_BUILD_VERSION
ohair@2319 130 # specified in command line
duke@435 131 else
ohair@2319 132 ifdef COOKED_BUILD_NUMBER
ohair@2319 133 # JRE build
ohair@2319 134 HOTSPOT_BUILD_VERSION=
duke@435 135 else
ohair@2319 136 ifdef USER_RELEASE_SUFFIX
ohair@2319 137 HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX)
duke@435 138 else
duke@435 139 HOTSPOT_BUILD_VERSION=internal
duke@435 140 endif
duke@435 141 endif
duke@435 142 endif
duke@435 143
duke@435 144 # Windows should have OS predefined
duke@435 145 ifeq ($(OS),)
duke@435 146 OS := $(shell uname -s)
never@3156 147 ifneq ($(findstring BSD,$(OS)),)
never@3156 148 OS=bsd
never@3156 149 endif
never@3156 150 ifeq ($(OS), Darwin)
never@3156 151 OS=bsd
never@3156 152 endif
duke@435 153 HOST := $(shell uname -n)
duke@435 154 endif
duke@435 155
never@3156 156 # If not SunOS, not Linux and not BSD, assume Windows
duke@435 157 ifneq ($(OS), Linux)
duke@435 158 ifneq ($(OS), SunOS)
never@3156 159 ifneq ($(OS), bsd)
never@3156 160 OSNAME=windows
never@3156 161 else
never@3156 162 OSNAME=bsd
never@3156 163 endif
duke@435 164 else
duke@435 165 OSNAME=solaris
duke@435 166 endif
duke@435 167 else
duke@435 168 OSNAME=linux
duke@435 169 endif
duke@435 170
duke@435 171 # Determinations of default make arguments and platform specific settings
duke@435 172 MAKE_ARGS=
duke@435 173
duke@435 174 # ARCH_DATA_MODEL==64 is equivalent to LP64=1
duke@435 175 ifeq ($(ARCH_DATA_MODEL), 64)
duke@435 176 ifndef LP64
duke@435 177 LP64 := 1
duke@435 178 endif
duke@435 179 endif
duke@435 180
duke@435 181 # Defaults set for product build
duke@435 182 EXPORT_SUBDIR=
duke@435 183
duke@435 184 # Change default /java path if requested
duke@435 185 ifneq ($(ALT_SLASH_JAVA),)
duke@435 186 SLASH_JAVA=$(ALT_SLASH_JAVA)
duke@435 187 endif
duke@435 188
duke@435 189 # Default OUTPUTDIR
duke@435 190 OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME)
duke@435 191 ifneq ($(ALT_OUTPUTDIR),)
duke@435 192 OUTPUTDIR=$(ALT_OUTPUTDIR)
duke@435 193 endif
duke@435 194
duke@435 195 # Find latest promoted JDK area
duke@435 196 JDK_IMPORT_PATH=$(SLASH_JAVA)/re/j2se/$(JDK_VERSION)/promoted/latest/binaries/$(PLATFORM)
duke@435 197 ifneq ($(ALT_JDK_IMPORT_PATH),)
duke@435 198 JDK_IMPORT_PATH=$(ALT_JDK_IMPORT_PATH)
duke@435 199 endif
duke@435 200
dholmes@2544 201 # Other parts of JDK build may require an import JDK that can be executed
dholmes@2544 202 # on the build host. For cross-compile builds we also need an import JDK
dholmes@2544 203 # that matches the target arch, so for that we set ALT_JDK_TARGET_IMPORT_PATH
dholmes@2544 204 ifneq ($(ALT_JDK_TARGET_IMPORT_PATH),)
dholmes@2544 205 JDK_IMPORT_PATH=$(ALT_JDK_TARGET_IMPORT_PATH)
dholmes@2544 206 endif
dholmes@2544 207
duke@435 208 # Find JDK used for javac compiles
duke@435 209 BOOTDIR=$(SLASH_JAVA)/re/j2se/$(PREVIOUS_JDK_VERSION)/latest/binaries/$(PLATFORM)
duke@435 210 ifneq ($(ALT_BOOTDIR),)
duke@435 211 BOOTDIR=$(ALT_BOOTDIR)
duke@435 212 endif
duke@435 213
phh@3492 214 # Select name of the export directory and honor ALT overrides
phh@3492 215 EXPORT_PATH=$(OUTPUTDIR)/export-$(PLATFORM)$(EXPORT_SUBDIR)
phh@3492 216 ifneq ($(ALT_EXPORT_PATH),)
phh@3492 217 EXPORT_PATH=$(ALT_EXPORT_PATH)
phh@3492 218 endif
phh@3492 219
phh@3492 220 # Default jdk image if one is created for you with create_jdk
phh@3492 221 JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM)
twisti@3567 222 ifneq ($(ALT_JDK_IMAGE_DIR),)
twisti@3567 223 JDK_IMAGE_DIR=$(ALT_JDK_IMAGE_DIR)
twisti@3567 224 endif
phh@3492 225
duke@435 226 # The platform dependent defs.make defines platform specific variable such
duke@435 227 # as ARCH, EXPORT_LIST etc. We must place the include here after BOOTDIR is defined.
kamg@526 228 include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make
duke@435 229
duke@435 230 # We are trying to put platform specific defintions
kamg@526 231 # files to make/$(OSNAME)/makefiles dictory. However
duke@435 232 # some definitions are common for both linux and solaris,
duke@435 233 # so we put them here.
duke@435 234 ifneq ($(OSNAME),windows)
kamg@526 235 ABS_OUTPUTDIR := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD))
duke@435 236 ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR); $(PWD))
duke@435 237 ABS_GAMMADIR := $(shell $(CD) $(GAMMADIR); $(PWD))
kamg@526 238 ABS_OS_MAKEFILE := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile
duke@435 239
duke@435 240 # uname, HotSpot source directory, build directory and JDK use different names
duke@435 241 # for CPU architectures.
duke@435 242 # ARCH - uname output
duke@435 243 # SRCARCH - where to find HotSpot cpu and os_cpu source files
duke@435 244 # BUILDARCH - build directory
duke@435 245 # LIBARCH - directory name in JDK/JRE
duke@435 246
duke@435 247 # Use uname output for SRCARCH, but deal with platform differences. If ARCH
duke@435 248 # is not explicitly listed below, it is treated as x86.
bobv@2036 249 SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
duke@435 250 ARCH/ = x86
duke@435 251 ARCH/sparc = sparc
duke@435 252 ARCH/sparc64= sparc
duke@435 253 ARCH/ia64 = ia64
duke@435 254 ARCH/amd64 = x86
duke@435 255 ARCH/x86_64 = x86
bobv@2036 256 ARCH/ppc64 = ppc
bobv@2036 257 ARCH/ppc = ppc
bobv@2036 258 ARCH/arm = arm
never@1445 259 ARCH/zero = zero
duke@435 260
duke@435 261 # BUILDARCH is usually the same as SRCARCH, except for sparcv9
duke@435 262 BUILDARCH = $(SRCARCH)
duke@435 263 ifeq ($(BUILDARCH), x86)
duke@435 264 ifdef LP64
duke@435 265 BUILDARCH = amd64
duke@435 266 else
duke@435 267 BUILDARCH = i486
duke@435 268 endif
duke@435 269 endif
duke@435 270 ifeq ($(BUILDARCH), sparc)
duke@435 271 ifdef LP64
duke@435 272 BUILDARCH = sparcv9
duke@435 273 endif
duke@435 274 endif
duke@435 275
duke@435 276 # LIBARCH is 1:1 mapping from BUILDARCH
duke@435 277 LIBARCH = $(LIBARCH/$(BUILDARCH))
duke@435 278 LIBARCH/i486 = i386
duke@435 279 LIBARCH/amd64 = amd64
duke@435 280 LIBARCH/sparc = sparc
duke@435 281 LIBARCH/sparcv9 = sparcv9
duke@435 282 LIBARCH/ia64 = ia64
bobv@2036 283 LIBARCH/ppc64 = ppc
bobv@2036 284 LIBARCH/ppc = ppc
bobv@2036 285 LIBARCH/arm = arm
never@1445 286 LIBARCH/zero = $(ZERO_LIBARCH)
duke@435 287
never@1445 288 LP64_ARCH = sparcv9 amd64 ia64 zero
duke@435 289 endif
duke@435 290
duke@435 291 # Required make macro settings for all platforms
duke@435 292 MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR)
xlu@663 293 MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR)
duke@435 294 MAKE_ARGS += GAMMADIR=$(ABS_GAMMADIR)
duke@435 295 MAKE_ARGS += MAKE_VERBOSE=$(MAKE_VERBOSE)
duke@435 296 MAKE_ARGS += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION)
duke@435 297 MAKE_ARGS += JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION)
duke@435 298
duke@435 299 # Pass HOTSPOT_BUILD_VERSION as argument to OS specific Makefile
duke@435 300 # to overwrite the default definition since OS specific Makefile also
duke@435 301 # includes this make/defs.make file.
duke@435 302 MAKE_ARGS += HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION)
duke@435 303
duke@435 304 # Various export sub directories
duke@435 305 EXPORT_INCLUDE_DIR = $(EXPORT_PATH)/include
duke@435 306 EXPORT_DOCS_DIR = $(EXPORT_PATH)/docs
duke@435 307 EXPORT_LIB_DIR = $(EXPORT_PATH)/lib
duke@435 308 EXPORT_JRE_DIR = $(EXPORT_PATH)/jre
duke@435 309 EXPORT_JRE_BIN_DIR = $(EXPORT_JRE_DIR)/bin
duke@435 310 EXPORT_JRE_LIB_DIR = $(EXPORT_JRE_DIR)/lib
duke@435 311 EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)/$(LIBARCH)
duke@435 312
dcubed@3202 313 # non-universal macosx builds need to appear universal
dcubed@3202 314 ifeq ($(OS_VENDOR), Darwin)
dcubed@3202 315 ifneq ($(MACOSX_UNIVERSAL), true)
dcubed@3202 316 EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)
dcubed@3202 317 endif
dcubed@3202 318 endif
dcubed@3202 319
duke@435 320 # Common export list of files
duke@435 321 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h
dcubed@1619 322 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h
duke@435 323 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jni.h
duke@435 324 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h
duke@435 325 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jmm.h
phh@3427 326
phh@3427 327 ifndef JAVASE_EMBEDDED
phh@3427 328 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jfr.h
phh@3427 329 endif

mercurial