hotspot/make/windows/makefiles/defs.make
author prr
Wed, 16 Jun 2010 09:42:20 -0700
changeset 5663 50e6ba3de490
parent 5547 f4b087cbb361
child 5747 bc463c283871
permissions -rw-r--r--
6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers Reviewed-by: ohair, jcoomes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5377
diff changeset
     2
# Copyright (c) 2006, 2008, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5377
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5377
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5377
diff changeset
    21
# questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# The common definitions for hotspot windows builds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# Include the top level defs.make under make directory instead of this one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
# This file is included into make/defs.make.
1546
a02228c60567 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 979
diff changeset
    28
# On windows it is only used to construct parameters for
338
5cf9f61d76f4 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 1
diff changeset
    29
# make/windows/build.make when make/Makefile is used to build VM.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
SLASH_JAVA ?= J:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
PATH_SEP = ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) x86),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  ARCH_DATA_MODEL=32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  PLATFORM=windows-i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  VM_PLATFORM=windows_i486
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  HS_ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  MAKE_ARGS += ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  MAKE_ARGS += BUILDARCH=i486
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  MAKE_ARGS += Platform_arch=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  MAKE_ARGS += Platform_arch_model=x86_32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) ia64),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  ARCH_DATA_MODEL=64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  PLATFORM=windows-ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  VM_PLATFORM=windows_ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  HS_ARCH=ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  MAKE_ARGS += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  MAKE_ARGS += ARCH=ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  MAKE_ARGS += BUILDARCH=ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  MAKE_ARGS += Platform_arch=ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  MAKE_ARGS += Platform_arch_model=ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
5377
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    58
# http://support.microsoft.com/kb/888731 : this can be either
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    59
# AMD64 for AMD, or EM64T for Intel chips.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) AMD64),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  ARCH_DATA_MODEL=64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  PLATFORM=windows-amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  VM_PLATFORM=windows_amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  HS_ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  MAKE_ARGS += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  MAKE_ARGS += ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  MAKE_ARGS += BUILDARCH=amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  MAKE_ARGS += Platform_arch=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  MAKE_ARGS += Platform_arch_model=x86_64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
5663
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    72
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) EM64T),)
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    73
  ARCH_DATA_MODEL=64
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    74
  PLATFORM=windows-amd64
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    75
  VM_PLATFORM=windows_amd64
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    76
  HS_ARCH=x86
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    77
  MAKE_ARGS += LP64=1
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    78
  MAKE_ARGS += ARCH=x86
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    79
  MAKE_ARGS += BUILDARCH=amd64
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    80
  MAKE_ARGS += Platform_arch=x86
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    81
  MAKE_ARGS += Platform_arch_model=x86_64
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    82
endif
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    83
5377
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    84
# NB later OS versions than 2003 may report "Intel64"
5663
50e6ba3de490 6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents: 5547
diff changeset
    85
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) Intel64),)
5377
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    86
  ARCH_DATA_MODEL=64
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    87
  PLATFORM=windows-amd64
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    88
  VM_PLATFORM=windows_amd64
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    89
  HS_ARCH=x86
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    90
  MAKE_ARGS += LP64=1
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    91
  MAKE_ARGS += ARCH=x86
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    92
  MAKE_ARGS += BUILDARCH=amd64
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    93
  MAKE_ARGS += Platform_arch=x86
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    94
  MAKE_ARGS += Platform_arch_model=x86_64
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    95
endif
bcf55c5acf4e 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 1609
diff changeset
    96
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
JDK_INCLUDE_SUBDIR=win32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
1546
a02228c60567 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 979
diff changeset
    99
# HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
# and added to MAKE_ARGS list in $(GAMMADIR)/make/defs.make.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
# next parameters are defined in $(GAMMADIR)/make/defs.make.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
MAKE_ARGS += JDK_MKTG_VERSION=$(JDK_MKTG_VERSION)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
MAKE_ARGS += JDK_MAJOR_VER=$(JDK_MAJOR_VERSION)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
MAKE_ARGS += JDK_MINOR_VER=$(JDK_MINOR_VERSION)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
MAKE_ARGS += JDK_MICRO_VER=$(JDK_MICRO_VERSION)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
ifdef COOKED_JDK_UPDATE_VERSION
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  MAKE_ARGS += JDK_UPDATE_VER=$(COOKED_JDK_UPDATE_VERSION)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
# COOKED_BUILD_NUMBER should only be set if we have a numeric
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
# build number.  It must not be zero padded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
ifdef COOKED_BUILD_NUMBER
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  MAKE_ARGS += JDK_BUILD_NUMBER=$(COOKED_BUILD_NUMBER)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
NMAKE= MAKEFLAGS= MFLAGS= nmake /NOLOGO
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
# Check for CYGWIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
ifneq (,$(findstring CYGWIN,$(shell uname)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  USING_CYGWIN=true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  USING_CYGWIN=false
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
# FIXUP: The subdirectory for a debug build is NOT the same on all platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
VM_DEBUG=debug
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
# Windows wants particular paths due to nmake (must be after macros defined)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
#   It is important that gnumake invokes nmake with C:\\...\\  formated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#   strings so that nmake gets C:\...\ style strings.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
# Check for CYGWIN
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
ifeq ($(USING_CYGWIN), true)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  ABS_OUTPUTDIR   := $(subst /,\\,$(shell /bin/cygpath -m -a "$(OUTPUTDIR)"))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  ABS_BOOTDIR     := $(subst /,\\,$(shell /bin/cygpath -m -a "$(BOOTDIR)"))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ABS_GAMMADIR    := $(subst /,\\,$(shell /bin/cygpath -m -a "$(GAMMADIR)"))
979
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 670
diff changeset
   137
  ABS_OS_MAKEFILE := $(shell /bin/cygpath -m -a "$(HS_MAKE_DIR)/$(OSNAME)")/build.make
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  ABS_OUTPUTDIR   := $(subst /,\\,$(shell $(CD) $(OUTPUTDIR);$(PWD)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  ABS_BOOTDIR     := $(subst /,\\,$(shell $(CD) $(BOOTDIR);$(PWD)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  ABS_GAMMADIR    := $(subst /,\\,$(shell $(CD) $(GAMMADIR);$(PWD)))
338
5cf9f61d76f4 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 1
diff changeset
   142
  ABS_OS_MAKEFILE := $(subst /,\\,$(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME);$(PWD))/build.make)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
# Disable building SA on windows until we are sure
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
# we want to release it.  If we build it here,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
# the SDK makefiles will copy it over and put it into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
# the created image.
1609
5eacab926e22 6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents: 1546
diff changeset
   149
BUILD_WIN_SA = 1
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
ifneq ($(ALT_BUILD_WIN_SA),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  BUILD_WIN_SA = $(ALT_BUILD_WIN_SA)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
ifeq ($(BUILD_WIN_SA), 1)
1546
a02228c60567 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 979
diff changeset
   155
  ifeq ($(ARCH),ia64)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    BUILD_WIN_SA = 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
EXPORT_SERVER_DIR = $(EXPORT_JRE_BIN_DIR)/server
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
EXPORT_LIST += $(EXPORT_LIB_DIR)/jvm.lib
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
ifeq ($(ARCH_DATA_MODEL), 32)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  EXPORT_CLIENT_DIR = $(EXPORT_JRE_BIN_DIR)/client
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  # kernel vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  EXPORT_KERNEL_DIR = $(EXPORT_JRE_BIN_DIR)/kernel
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  EXPORT_LIST += $(EXPORT_KERNEL_DIR)/Xusage.txt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  EXPORT_LIST += $(EXPORT_KERNEL_DIR)/jvm.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  EXPORT_LIST += $(EXPORT_KERNEL_DIR)/jvm.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  EXPORT_LIST += $(EXPORT_KERNEL_DIR)/jvm.map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
ifeq ($(BUILD_WIN_SA), 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.dll
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.pdb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.map
1546
a02228c60567 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 979
diff changeset
   184
  EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  # Must pass this down to nmake.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  MAKE_ARGS += BUILD_WIN_SA=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
endif