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

     1 #
     2 # Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
     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 #
    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.
    22 #  
    23 #
    25 # The common definitions for hotspot builds.
    27 # Optionally include SPEC file generated by configure.
    28 ifneq ($(SPEC),)
    29   include $(SPEC)
    30 endif
    32 # Default to verbose build logs (show all compile lines):
    33 MAKE_VERBOSE=y
    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
    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
    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
    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
    86 HS_MAKE_DIR=$(GAMMADIR)/make
    87 HS_BUILD_DIR=$(GAMMADIR)/build
    89 ifeq ($(USER),)
    90   USER=$(USERNAME)
    91 endif
    93 # hotspot version definitions
    94 include $(GAMMADIR)/make/hotspot_version
    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
   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
   125 ifndef HOTSPOT_RELEASE_VERSION
   126   HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
   127 endif
   129 ifdef HOTSPOT_BUILD_VERSION
   130 # specified in command line
   131 else
   132   ifdef COOKED_BUILD_NUMBER
   133 # JRE build
   134     HOTSPOT_BUILD_VERSION=
   135   else
   136     ifdef USER_RELEASE_SUFFIX
   137       HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX)
   138     else
   139       HOTSPOT_BUILD_VERSION=internal
   140     endif
   141   endif
   142 endif
   144 # Windows should have OS predefined
   145 ifeq ($(OS),)
   146   OS   := $(shell uname -s)
   147   ifneq ($(findstring BSD,$(OS)),)
   148     OS=bsd
   149   endif
   150   ifeq ($(OS), Darwin)
   151     OS=bsd
   152   endif
   153   HOST := $(shell uname -n)
   154 endif
   156 # If not SunOS, not Linux and not BSD, assume Windows
   157 ifneq ($(OS), Linux)
   158   ifneq ($(OS), SunOS)
   159     ifneq ($(OS), bsd)
   160       OSNAME=windows
   161     else
   162       OSNAME=bsd
   163     endif
   164   else
   165     OSNAME=solaris
   166   endif
   167 else
   168   OSNAME=linux
   169 endif
   171 # Determinations of default make arguments and platform specific settings
   172 MAKE_ARGS=
   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
   181 # Defaults set for product build
   182 EXPORT_SUBDIR=
   184 # Change default /java path if requested
   185 ifneq ($(ALT_SLASH_JAVA),)
   186   SLASH_JAVA=$(ALT_SLASH_JAVA)
   187 endif
   189 # Default OUTPUTDIR
   190 OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME)
   191 ifneq ($(ALT_OUTPUTDIR),)
   192   OUTPUTDIR=$(ALT_OUTPUTDIR)
   193 endif
   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
   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
   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
   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
   220 # Default jdk image if one is created for you with create_jdk
   221 JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM)
   222 ifneq ($(ALT_JDK_IMAGE_DIR),)
   223   JDK_IMAGE_DIR=$(ALT_JDK_IMAGE_DIR)
   224 endif
   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.
   228 include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make
   230 # We are trying to put platform specific defintions
   231 # files to make/$(OSNAME)/makefiles dictory. However
   232 # some definitions are common for both linux and solaris,
   233 # so we put them here.
   234 ifneq ($(OSNAME),windows)
   235   ABS_OUTPUTDIR     := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD))
   236   ABS_BOOTDIR       := $(shell $(CD) $(BOOTDIR); $(PWD))
   237   ABS_GAMMADIR      := $(shell $(CD) $(GAMMADIR); $(PWD))
   238   ABS_OS_MAKEFILE   := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile
   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
   247   # Use uname output for SRCARCH, but deal with platform differences. If ARCH
   248   # is not explicitly listed below, it is treated as x86. 
   249   SRCARCH     = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
   250   ARCH/       = x86
   251   ARCH/sparc  = sparc
   252   ARCH/sparc64= sparc
   253   ARCH/ia64   = ia64
   254   ARCH/amd64  = x86
   255   ARCH/x86_64 = x86
   256   ARCH/ppc64  = ppc
   257   ARCH/ppc    = ppc
   258   ARCH/arm    = arm
   259   ARCH/zero   = zero
   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
   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
   283   LIBARCH/ppc64   = ppc
   284   LIBARCH/ppc     = ppc
   285   LIBARCH/arm     = arm
   286   LIBARCH/zero    = $(ZERO_LIBARCH)
   288   LP64_ARCH = sparcv9 amd64 ia64 zero
   289 endif
   291 # Required make macro settings for all platforms
   292 MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR)
   293 MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR)
   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)
   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)
   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)
   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
   320 # Common export list of files
   321 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h
   322 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h
   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
   327 ifndef JAVASE_EMBEDDED
   328 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jfr.h
   329 endif

mercurial