make/defs.make

Wed, 22 Feb 2012 09:24:35 +0100

author
erikj
date
Wed, 22 Feb 2012 09:24:35 +0100
changeset 3600
7292cff45988
parent 3567
f09ae3853e3b
child 3649
3d7ea1dbe0de
permissions
-rw-r--r--

7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
Reviewed-by: dholmes, ohrstrom, ohair, jcoomes

     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 # Directory paths and user name
    59 # Unless GAMMADIR is set on the command line, search upward from
    60 # the current directory for a parent directory containing "src/share/vm".
    61 # If that fails, look for $GAMMADIR in the environment.
    62 # When the tree of subdirs is built, this setting is stored in each flags.make.
    63 GAMMADIR := $(shell until ([ -d dev ]&&echo $${GAMMADIR:-/GAMMADIR/}) || ([ -d src/share/vm ]&&pwd); do cd ..; done)
    64 HS_SRC_DIR=$(GAMMADIR)/src
    65 HS_MAKE_DIR=$(GAMMADIR)/make
    66 HS_BUILD_DIR=$(GAMMADIR)/build
    68 ifeq ($(USER),)
    69   USER=$(USERNAME)
    70 endif
    72 # hotspot version definitions
    73 include $(GAMMADIR)/make/hotspot_version
    75 # Java versions needed
    76 ifeq ($(PREVIOUS_JDK_VERSION),)
    77   PREVIOUS_JDK_VERSION=$(JDK_PREVIOUS_VERSION)
    78 endif
    79 ifeq ($(JDK_MAJOR_VERSION),)
    80   JDK_MAJOR_VERSION=$(JDK_MAJOR_VER)
    81 endif
    82 ifeq ($(JDK_MINOR_VERSION),)
    83   JDK_MINOR_VERSION=$(JDK_MINOR_VER)
    84 endif
    85 ifeq ($(JDK_MICRO_VERSION),)
    86   JDK_MICRO_VERSION=$(JDK_MICRO_VER)
    87 endif
    88 ifeq ($(JDK_MKTG_VERSION),)
    89   JDK_MKTG_VERSION=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
    90 endif
    91 ifeq ($(JDK_VERSION),)
    92   JDK_VERSION=$(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
    93 endif
    94 ifeq ($(FULL_VERSION),)
    95   FULL_VERSION="$(JDK_VERSION)"
    96 endif
    98 # FULL_VERSION is only used to define JRE_RELEASE_VERSION which is used
    99 # as JRE version in VM -Xinternalversion output.
   100 ifndef JRE_RELEASE_VERSION
   101   JRE_RELEASE_VERSION=$(FULL_VERSION)
   102 endif
   104 ifndef HOTSPOT_RELEASE_VERSION
   105   HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
   106 endif
   108 ifdef HOTSPOT_BUILD_VERSION
   109 # specified in command line
   110 else
   111   ifdef COOKED_BUILD_NUMBER
   112 # JRE build
   113     HOTSPOT_BUILD_VERSION=
   114   else
   115     ifdef USER_RELEASE_SUFFIX
   116       HOTSPOT_BUILD_VERSION=internal-$(USER_RELEASE_SUFFIX)
   117     else
   118       HOTSPOT_BUILD_VERSION=internal
   119     endif
   120   endif
   121 endif
   123 # Windows should have OS predefined
   124 ifeq ($(OS),)
   125   OS   := $(shell uname -s)
   126   ifneq ($(findstring BSD,$(OS)),)
   127     OS=bsd
   128   endif
   129   ifeq ($(OS), Darwin)
   130     OS=bsd
   131   endif
   132   HOST := $(shell uname -n)
   133 endif
   135 # If not SunOS, not Linux and not BSD, assume Windows
   136 ifneq ($(OS), Linux)
   137   ifneq ($(OS), SunOS)
   138     ifneq ($(OS), bsd)
   139       OSNAME=windows
   140     else
   141       OSNAME=bsd
   142     endif
   143   else
   144     OSNAME=solaris
   145   endif
   146 else
   147   OSNAME=linux
   148 endif
   150 # Determinations of default make arguments and platform specific settings
   151 MAKE_ARGS=
   153 # ARCH_DATA_MODEL==64 is equivalent to LP64=1
   154 ifeq ($(ARCH_DATA_MODEL), 64)
   155   ifndef LP64
   156     LP64 := 1
   157   endif
   158 endif
   160 # Defaults set for product build
   161 EXPORT_SUBDIR=
   163 # Change default /java path if requested
   164 ifneq ($(ALT_SLASH_JAVA),)
   165   SLASH_JAVA=$(ALT_SLASH_JAVA)
   166 endif
   168 # Default OUTPUTDIR
   169 OUTPUTDIR=$(HS_BUILD_DIR)/$(OSNAME)
   170 ifneq ($(ALT_OUTPUTDIR),)
   171   OUTPUTDIR=$(ALT_OUTPUTDIR)
   172 endif
   174 # Find latest promoted JDK area
   175 JDK_IMPORT_PATH=$(SLASH_JAVA)/re/j2se/$(JDK_VERSION)/promoted/latest/binaries/$(PLATFORM)
   176 ifneq ($(ALT_JDK_IMPORT_PATH),)
   177   JDK_IMPORT_PATH=$(ALT_JDK_IMPORT_PATH)
   178 endif
   180 # Other parts of JDK build may require an import JDK that can be executed
   181 # on the build host. For cross-compile builds we also need an import JDK
   182 # that matches the target arch, so for that we set ALT_JDK_TARGET_IMPORT_PATH
   183 ifneq ($(ALT_JDK_TARGET_IMPORT_PATH),)
   184   JDK_IMPORT_PATH=$(ALT_JDK_TARGET_IMPORT_PATH)
   185 endif
   187 # Find JDK used for javac compiles
   188 BOOTDIR=$(SLASH_JAVA)/re/j2se/$(PREVIOUS_JDK_VERSION)/latest/binaries/$(PLATFORM)
   189 ifneq ($(ALT_BOOTDIR),)
   190   BOOTDIR=$(ALT_BOOTDIR)
   191 endif
   193 # Select name of the export directory and honor ALT overrides
   194 EXPORT_PATH=$(OUTPUTDIR)/export-$(PLATFORM)$(EXPORT_SUBDIR)
   195 ifneq ($(ALT_EXPORT_PATH),)
   196   EXPORT_PATH=$(ALT_EXPORT_PATH)
   197 endif
   199 # Default jdk image if one is created for you with create_jdk
   200 JDK_IMAGE_DIR=$(OUTPUTDIR)/jdk-$(PLATFORM)
   201 ifneq ($(ALT_JDK_IMAGE_DIR),)
   202   JDK_IMAGE_DIR=$(ALT_JDK_IMAGE_DIR)
   203 endif
   205 # The platform dependent defs.make defines platform specific variable such 
   206 # as ARCH, EXPORT_LIST etc. We must place the include here after BOOTDIR is defined.
   207 include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make
   209 # We are trying to put platform specific defintions
   210 # files to make/$(OSNAME)/makefiles dictory. However
   211 # some definitions are common for both linux and solaris,
   212 # so we put them here.
   213 ifneq ($(OSNAME),windows)
   214   ABS_OUTPUTDIR     := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD))
   215   ABS_BOOTDIR       := $(shell $(CD) $(BOOTDIR); $(PWD))
   216   ABS_GAMMADIR      := $(shell $(CD) $(GAMMADIR); $(PWD))
   217   ABS_OS_MAKEFILE   := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME); $(PWD))/Makefile
   219   # uname, HotSpot source directory, build directory and JDK use different names
   220   # for CPU architectures.
   221   #   ARCH      - uname output
   222   #   SRCARCH   - where to find HotSpot cpu and os_cpu source files
   223   #   BUILDARCH - build directory
   224   #   LIBARCH   - directory name in JDK/JRE
   226   # Use uname output for SRCARCH, but deal with platform differences. If ARCH
   227   # is not explicitly listed below, it is treated as x86. 
   228   SRCARCH     = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 arm ppc zero,$(ARCH)))
   229   ARCH/       = x86
   230   ARCH/sparc  = sparc
   231   ARCH/sparc64= sparc
   232   ARCH/ia64   = ia64
   233   ARCH/amd64  = x86
   234   ARCH/x86_64 = x86
   235   ARCH/ppc64  = ppc
   236   ARCH/ppc    = ppc
   237   ARCH/arm    = arm
   238   ARCH/zero   = zero
   240   # BUILDARCH is usually the same as SRCARCH, except for sparcv9
   241   BUILDARCH = $(SRCARCH)
   242   ifeq ($(BUILDARCH), x86)
   243     ifdef LP64
   244       BUILDARCH = amd64
   245     else
   246       BUILDARCH = i486
   247     endif
   248   endif
   249   ifeq ($(BUILDARCH), sparc)
   250     ifdef LP64
   251       BUILDARCH = sparcv9
   252     endif
   253   endif
   255   # LIBARCH is 1:1 mapping from BUILDARCH
   256   LIBARCH         = $(LIBARCH/$(BUILDARCH))
   257   LIBARCH/i486    = i386
   258   LIBARCH/amd64   = amd64
   259   LIBARCH/sparc   = sparc
   260   LIBARCH/sparcv9 = sparcv9
   261   LIBARCH/ia64    = ia64
   262   LIBARCH/ppc64   = ppc
   263   LIBARCH/ppc     = ppc
   264   LIBARCH/arm     = arm
   265   LIBARCH/zero    = $(ZERO_LIBARCH)
   267   LP64_ARCH = sparcv9 amd64 ia64 zero
   268 endif
   270 # Required make macro settings for all platforms
   271 MAKE_ARGS += JAVA_HOME=$(ABS_BOOTDIR)
   272 MAKE_ARGS += OUTPUTDIR=$(ABS_OUTPUTDIR)
   273 MAKE_ARGS += GAMMADIR=$(ABS_GAMMADIR)
   274 MAKE_ARGS += MAKE_VERBOSE=$(MAKE_VERBOSE)
   275 MAKE_ARGS += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION)
   276 MAKE_ARGS += JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION)
   278 # Pass HOTSPOT_BUILD_VERSION as argument to OS specific Makefile
   279 # to overwrite the default definition since OS specific Makefile also
   280 # includes this make/defs.make file.
   281 MAKE_ARGS += HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION)
   283 # Various export sub directories
   284 EXPORT_INCLUDE_DIR = $(EXPORT_PATH)/include
   285 EXPORT_DOCS_DIR = $(EXPORT_PATH)/docs
   286 EXPORT_LIB_DIR = $(EXPORT_PATH)/lib
   287 EXPORT_JRE_DIR = $(EXPORT_PATH)/jre
   288 EXPORT_JRE_BIN_DIR = $(EXPORT_JRE_DIR)/bin
   289 EXPORT_JRE_LIB_DIR = $(EXPORT_JRE_DIR)/lib
   290 EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)/$(LIBARCH)
   292 # non-universal macosx builds need to appear universal
   293 ifeq ($(OS_VENDOR), Darwin)
   294   ifneq ($(MACOSX_UNIVERSAL), true)
   295     EXPORT_JRE_LIB_ARCH_DIR = $(EXPORT_JRE_LIB_DIR)
   296   endif
   297 endif
   299 # Common export list of files
   300 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmti.h
   301 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jvmticmlr.h
   302 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jni.h
   303 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h
   304 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jmm.h
   306 ifndef JAVASE_EMBEDDED
   307 EXPORT_LIST += $(EXPORT_INCLUDE_DIR)/jfr.h
   308 endif

mercurial