make/windows/makefiles/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 3623
22d276ade3e1
child 3726
74c359c4a9e5
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 windows builds.
    26 # Include the top level defs.make under make directory instead of this one.
    27 # This file is included into make/defs.make.
    28 # On windows it is only used to construct parameters for
    29 # make/windows/build.make when make/Makefile is used to build VM.
    31 SLASH_JAVA ?= J:
    32 PATH_SEP = ;
    34 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
    35 ifeq ($(ARCH_DATA_MODEL),32)
    36   ARCH_DATA_MODEL=32
    37   PLATFORM=windows-i586
    38   VM_PLATFORM=windows_i486
    39   HS_ARCH=x86
    40   MAKE_ARGS += ARCH=x86
    41   MAKE_ARGS += BUILDARCH=i486
    42   MAKE_ARGS += Platform_arch=x86
    43   MAKE_ARGS += Platform_arch_model=x86_32
    44 endif
    46 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) x86),)
    47   ARCH_DATA_MODEL=32
    48   PLATFORM=windows-i586
    49   VM_PLATFORM=windows_i486
    50   HS_ARCH=x86
    51   MAKE_ARGS += ARCH=x86
    52   MAKE_ARGS += BUILDARCH=i486
    53   MAKE_ARGS += Platform_arch=x86
    54   MAKE_ARGS += Platform_arch_model=x86_32
    55 endif
    57 ifneq ($(ARCH_DATA_MODEL),32)
    58   ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) ia64),)
    59     ARCH_DATA_MODEL=64
    60     PLATFORM=windows-ia64
    61     VM_PLATFORM=windows_ia64
    62     HS_ARCH=ia64
    63     MAKE_ARGS += LP64=1
    64     MAKE_ARGS += ARCH=ia64
    65     MAKE_ARGS += BUILDARCH=ia64
    66     MAKE_ARGS += Platform_arch=ia64
    67     MAKE_ARGS += Platform_arch_model=ia64
    68   endif
    70 # http://support.microsoft.com/kb/888731 : this can be either
    71 # AMD64 for AMD, or EM64T for Intel chips.
    72   ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) AMD64),)
    73     ARCH_DATA_MODEL=64
    74     PLATFORM=windows-amd64
    75     VM_PLATFORM=windows_amd64
    76     HS_ARCH=x86
    77     MAKE_ARGS += LP64=1
    78     MAKE_ARGS += ARCH=x86
    79     MAKE_ARGS += BUILDARCH=amd64
    80     MAKE_ARGS += Platform_arch=x86
    81     MAKE_ARGS += Platform_arch_model=x86_64
    82   endif
    84 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) EM64T),)
    85     ARCH_DATA_MODEL=64
    86     PLATFORM=windows-amd64
    87     VM_PLATFORM=windows_amd64
    88     HS_ARCH=x86
    89     MAKE_ARGS += LP64=1
    90     MAKE_ARGS += ARCH=x86
    91     MAKE_ARGS += BUILDARCH=amd64
    92     MAKE_ARGS += Platform_arch=x86
    93     MAKE_ARGS += Platform_arch_model=x86_64
    94   endif
    96 # NB later OS versions than 2003 may report "Intel64"
    97   ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) Intel64),)
    98     ARCH_DATA_MODEL=64
    99     PLATFORM=windows-amd64
   100     VM_PLATFORM=windows_amd64
   101     HS_ARCH=x86
   102     MAKE_ARGS += LP64=1
   103     MAKE_ARGS += ARCH=x86
   104     MAKE_ARGS += BUILDARCH=amd64
   105     MAKE_ARGS += Platform_arch=x86
   106     MAKE_ARGS += Platform_arch_model=x86_64
   107   endif
   108 endif
   110 # On 32 bit windows we build server, client and kernel, on 64 bit just server.
   111 ifeq ($(JVM_VARIANTS),)
   112   ifeq ($(ARCH_DATA_MODEL), 32)
   113     JVM_VARIANTS:=client,server,kernel
   114     JVM_VARIANT_CLIENT:=true
   115     JVM_VARIANT_SERVER:=true
   116     JVM_VARIANT_KERNEL:=true
   117   else
   118     JVM_VARIANTS:=server
   119     JVM_VARIANT_SERVER:=true
   120   endif
   121 endif
   123 JDK_INCLUDE_SUBDIR=win32
   125 # Library suffix
   126 LIBRARY_SUFFIX=dll
   128 # HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined
   129 # and added to MAKE_ARGS list in $(GAMMADIR)/make/defs.make.
   131 # next parameters are defined in $(GAMMADIR)/make/defs.make.
   132 MAKE_ARGS += JDK_MKTG_VERSION=$(JDK_MKTG_VERSION)
   133 MAKE_ARGS += JDK_MAJOR_VER=$(JDK_MAJOR_VERSION)
   134 MAKE_ARGS += JDK_MINOR_VER=$(JDK_MINOR_VERSION)
   135 MAKE_ARGS += JDK_MICRO_VER=$(JDK_MICRO_VERSION)
   137 ifdef COOKED_JDK_UPDATE_VERSION
   138   MAKE_ARGS += JDK_UPDATE_VER=$(COOKED_JDK_UPDATE_VERSION)
   139 endif
   141 # COOKED_BUILD_NUMBER should only be set if we have a numeric
   142 # build number.  It must not be zero padded.
   143 ifdef COOKED_BUILD_NUMBER
   144   MAKE_ARGS += JDK_BUILD_NUMBER=$(COOKED_BUILD_NUMBER)
   145 endif
   147 NMAKE= MAKEFLAGS= MFLAGS= nmake /NOLOGO
   149 # Check for CYGWIN
   150 ifneq (,$(findstring CYGWIN,$(shell uname)))
   151   USING_CYGWIN=true
   152 else
   153   USING_CYGWIN=false
   154 endif
   155 # FIXUP: The subdirectory for a debug build is NOT the same on all platforms
   156 VM_DEBUG=debug
   158 # Windows wants particular paths due to nmake (must be after macros defined)
   159 #   It is important that gnumake invokes nmake with C:\\...\\  formated
   160 #   strings so that nmake gets C:\...\ style strings.
   161 # Check for CYGWIN
   162 ifeq ($(USING_CYGWIN), true)
   163   ABS_OUTPUTDIR   := $(subst /,\\,$(shell /bin/cygpath -m -a "$(OUTPUTDIR)"))
   164   ABS_BOOTDIR     := $(subst /,\\,$(shell /bin/cygpath -m -a "$(BOOTDIR)"))
   165   ABS_GAMMADIR    := $(subst /,\\,$(shell /bin/cygpath -m -a "$(GAMMADIR)"))
   166   ABS_OS_MAKEFILE := $(shell /bin/cygpath -m -a "$(HS_MAKE_DIR)/$(OSNAME)")/build.make
   167 else
   168   ABS_OUTPUTDIR   := $(subst /,\\,$(shell $(CD) $(OUTPUTDIR);$(PWD)))
   169   ABS_BOOTDIR     := $(subst /,\\,$(shell $(CD) $(BOOTDIR);$(PWD)))
   170   ABS_GAMMADIR    := $(subst /,\\,$(shell $(CD) $(GAMMADIR);$(PWD)))
   171   ABS_OS_MAKEFILE := $(subst /,\\,$(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME);$(PWD))/build.make)
   172 endif
   174 # Disable building SA on windows until we are sure
   175 # we want to release it.  If we build it here,
   176 # the SDK makefiles will copy it over and put it into
   177 # the created image.
   178 BUILD_WIN_SA = 1
   179 ifneq ($(ALT_BUILD_WIN_SA),)
   180   BUILD_WIN_SA = $(ALT_BUILD_WIN_SA)
   181 endif
   183 ifeq ($(BUILD_WIN_SA), 1)
   184   ifeq ($(ARCH),ia64)
   185     BUILD_WIN_SA = 0
   186   endif
   187 endif
   189 EXPORT_SERVER_DIR = $(EXPORT_JRE_BIN_DIR)/server
   190 EXPORT_CLIENT_DIR = $(EXPORT_JRE_BIN_DIR)/client
   191 EXPORT_KERNEL_DIR = $(EXPORT_JRE_BIN_DIR)/kernel
   193 ifeq ($(JVM_VARIANT_SERVER),true)
   194   EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
   195   EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.$(LIBRARY_SUFFIX)
   196   EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.pdb
   197   EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.map
   198   EXPORT_LIST += $(EXPORT_LIB_DIR)/jvm.lib
   199 endif
   200 ifeq ($(JVM_VARIANT_CLIENT),true)
   201   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
   202   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.$(LIBRARY_SUFFIX)
   203   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.pdb
   204   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.map
   205 endif
   206 ifeq ($(JVM_VARIANT_KERNEL),true)
   207   EXPORT_LIST += $(EXPORT_KERNEL_DIR)/Xusage.txt
   208   EXPORT_LIST += $(EXPORT_KERNEL_DIR)/jvm.$(LIBRARY_SUFFIX)
   209   EXPORT_LIST += $(EXPORT_KERNEL_DIR)/jvm.pdb
   210   EXPORT_LIST += $(EXPORT_KERNEL_DIR)/jvm.map
   211 endif
   213 EXPORT_LIST += $(EXPORT_JRE_LIB_DIR)/wb.jar
   215 ifeq ($(BUILD_WIN_SA), 1)
   216   EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.$(LIBRARY_SUFFIX)
   217   EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.pdb
   218   EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.map
   219   EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar
   220   # Must pass this down to nmake.
   221   MAKE_ARGS += BUILD_WIN_SA=1
   222 endif
   224 # Propagate compiler and tools paths from configure to nmake. 
   225 # Need to make sure they contain \\ and not /.
   226 ifneq ($(SPEC),)
   227   ifeq ($(USING_CYGWIN), true)
   228     MAKE_ARGS += CXX="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(CXX)))"
   229     MAKE_ARGS += LD="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(LD)))"
   230     MAKE_ARGS += RC="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(RC)))"
   231     MAKE_ARGS += MT="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(MT)))"
   232   else
   233     MAKE_ARGS += CXX="$(subst /,\\,$(CXX))"
   234     MAKE_ARGS += LD="$(subst /,\\,$(LD))"
   235     MAKE_ARGS += RC="$(subst /,\\,$(RC))"
   236     MAKE_ARGS += MT="$(subst /,\\,$(MT))"
   237   endif
   238 endif

mercurial