author | attila |
Wed, 24 Jul 2013 11:13:24 +0200 | |
changeset 19093 | 49bb7e75b326 |
parent 17295 | ebf76b993941 |
child 23521 | d6b7406c492e |
permissions | -rw-r--r-- |
1 | 1 |
# |
15432 | 2 |
# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
# |
|
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. |
17006 | 22 |
# |
1 | 23 |
# |
24 |
||
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. |
|
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 | 30 |
|
31 |
SLASH_JAVA ?= J: |
|
32 |
PATH_SEP = ; |
|
33 |
||
34 |
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name |
|
5747
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
35 |
ifeq ($(ARCH_DATA_MODEL),32) |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
36 |
ARCH_DATA_MODEL=32 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
37 |
PLATFORM=windows-i586 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
38 |
VM_PLATFORM=windows_i486 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
39 |
HS_ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
40 |
MAKE_ARGS += ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
41 |
MAKE_ARGS += BUILDARCH=i486 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
42 |
MAKE_ARGS += Platform_arch=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
43 |
MAKE_ARGS += Platform_arch_model=x86_32 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
44 |
endif |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
45 |
|
1 | 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 |
|
56 |
||
5747
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
57 |
ifneq ($(ARCH_DATA_MODEL),32) |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
58 |
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) ia64),) |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
59 |
ARCH_DATA_MODEL=64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
60 |
PLATFORM=windows-ia64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
61 |
VM_PLATFORM=windows_ia64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
62 |
HS_ARCH=ia64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
63 |
MAKE_ARGS += LP64=1 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
64 |
MAKE_ARGS += ARCH=ia64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
65 |
MAKE_ARGS += BUILDARCH=ia64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
66 |
MAKE_ARGS += Platform_arch=ia64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
67 |
MAKE_ARGS += Platform_arch_model=ia64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
68 |
endif |
1 | 69 |
|
5377
bcf55c5acf4e
6931180: Migration to recent versions of MS Platform SDK
prr
parents:
1609
diff
changeset
|
70 |
# 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
|
71 |
# AMD64 for AMD, or EM64T for Intel chips. |
5747
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
72 |
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) AMD64),) |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
73 |
ARCH_DATA_MODEL=64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
74 |
PLATFORM=windows-amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
75 |
VM_PLATFORM=windows_amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
76 |
HS_ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
77 |
MAKE_ARGS += LP64=1 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
78 |
MAKE_ARGS += ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
79 |
MAKE_ARGS += BUILDARCH=amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
80 |
MAKE_ARGS += Platform_arch=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
81 |
MAKE_ARGS += Platform_arch_model=x86_64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
82 |
endif |
1 | 83 |
|
5663
50e6ba3de490
6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents:
5547
diff
changeset
|
84 |
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) EM64T),) |
5747
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
85 |
ARCH_DATA_MODEL=64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
86 |
PLATFORM=windows-amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
87 |
VM_PLATFORM=windows_amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
88 |
HS_ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
89 |
MAKE_ARGS += LP64=1 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
90 |
MAKE_ARGS += ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
91 |
MAKE_ARGS += BUILDARCH=amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
92 |
MAKE_ARGS += Platform_arch=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
93 |
MAKE_ARGS += Platform_arch_model=x86_64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
94 |
endif |
5663
50e6ba3de490
6961079: Build JDK7 for 64 bit Windows using free Windows 7.1 SDK 64 bit compilers
prr
parents:
5547
diff
changeset
|
95 |
|
5377
bcf55c5acf4e
6931180: Migration to recent versions of MS Platform SDK
prr
parents:
1609
diff
changeset
|
96 |
# NB later OS versions than 2003 may report "Intel64" |
5747
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
97 |
ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) Intel64),) |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
98 |
ARCH_DATA_MODEL=64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
99 |
PLATFORM=windows-amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
100 |
VM_PLATFORM=windows_amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
101 |
HS_ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
102 |
MAKE_ARGS += LP64=1 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
103 |
MAKE_ARGS += ARCH=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
104 |
MAKE_ARGS += BUILDARCH=amd64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
105 |
MAKE_ARGS += Platform_arch=x86 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
106 |
MAKE_ARGS += Platform_arch_model=x86_64 |
bc463c283871
6964882: 32 bit JDK does not build on 64 bit Windows platforms
prr
parents:
5663
diff
changeset
|
107 |
endif |
5377
bcf55c5acf4e
6931180: Migration to recent versions of MS Platform SDK
prr
parents:
1609
diff
changeset
|
108 |
endif |
bcf55c5acf4e
6931180: Migration to recent versions of MS Platform SDK
prr
parents:
1609
diff
changeset
|
109 |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
110 |
# Full Debug Symbols has been enabled on Windows since JDK1.4.1 so |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
111 |
# there is no need for an "earlier than JDK7 check". |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
112 |
# The Full Debug Symbols (FDS) default for BUILD_FLAVOR == product |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
113 |
# builds is enabled with debug info files ZIP'ed to save space. For |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
114 |
# BUILD_FLAVOR != product builds, FDS is always enabled, after all a |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
115 |
# debug build without debug info isn't very useful. |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
116 |
# The ZIP_DEBUGINFO_FILES option only has meaning when FDS is enabled. |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
117 |
# |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
118 |
# If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
119 |
# disabled for a BUILD_FLAVOR == product build. |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
120 |
# |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
121 |
# Note: Use of a different variable name for the FDS override option |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
122 |
# versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
123 |
# versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
124 |
# in options via environment variables, use of distinct variables |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
125 |
# prevents strange behaviours. For example, in a BUILD_FLAVOR != |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
126 |
# product build, the FULL_DEBUG_SYMBOLS environment variable will be |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
127 |
# 0, but the ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
128 |
# the same variable name is used, then different values can be picked |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
129 |
# up by different parts of the build. Just to be clear, we only need |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
130 |
# two variable names because the incoming option value can be |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
131 |
# overridden in some situations, e.g., a BUILD_FLAVOR != product |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
132 |
# build. |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
133 |
|
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
134 |
# Due to the multiple sub-make processes that occur this logic gets |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
135 |
# executed multiple times. We reduce the noise by at least checking that |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
136 |
# BUILD_FLAVOR has been set. |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
137 |
ifneq ($(BUILD_FLAVOR),) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
138 |
ifeq ($(BUILD_FLAVOR), product) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
139 |
FULL_DEBUG_SYMBOLS ?= 1 |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
140 |
ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
141 |
else |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
142 |
# debug variants always get Full Debug Symbols (if available) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
143 |
ENABLE_FULL_DEBUG_SYMBOLS = 1 |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
144 |
endif |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
145 |
_JUNK_ := $(shell \ |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
146 |
echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)") |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
147 |
MAKE_ARGS += ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
148 |
|
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
149 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
150 |
ZIP_DEBUGINFO_FILES ?= 1 |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
151 |
else |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
152 |
ZIP_DEBUGINFO_FILES=0 |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
153 |
endif |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13975
diff
changeset
|
154 |
MAKE_ARGS += ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES) |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
155 |
endif |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
156 |
|
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
157 |
MAKE_ARGS += RM="$(RM)" |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
158 |
MAKE_ARGS += ZIPEXE=$(ZIPEXE) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
159 |
|
15432 | 160 |
# On 32 bit windows we build server and client, on 64 bit just server. |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
161 |
ifeq ($(JVM_VARIANTS),) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
162 |
ifeq ($(ARCH_DATA_MODEL), 32) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13474
diff
changeset
|
163 |
JVM_VARIANTS:=client,server |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
164 |
JVM_VARIANT_CLIENT:=true |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
165 |
JVM_VARIANT_SERVER:=true |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
166 |
else |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
167 |
JVM_VARIANTS:=server |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
168 |
JVM_VARIANT_SERVER:=true |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
169 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
170 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
171 |
|
1 | 172 |
JDK_INCLUDE_SUBDIR=win32 |
173 |
||
10565 | 174 |
# Library suffix |
175 |
LIBRARY_SUFFIX=dll |
|
176 |
||
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
979
diff
changeset
|
177 |
# HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined |
1 | 178 |
# and added to MAKE_ARGS list in $(GAMMADIR)/make/defs.make. |
179 |
||
180 |
# next parameters are defined in $(GAMMADIR)/make/defs.make. |
|
181 |
MAKE_ARGS += JDK_MKTG_VERSION=$(JDK_MKTG_VERSION) |
|
182 |
MAKE_ARGS += JDK_MAJOR_VER=$(JDK_MAJOR_VERSION) |
|
183 |
MAKE_ARGS += JDK_MINOR_VER=$(JDK_MINOR_VERSION) |
|
184 |
MAKE_ARGS += JDK_MICRO_VER=$(JDK_MICRO_VERSION) |
|
185 |
||
186 |
ifdef COOKED_JDK_UPDATE_VERSION |
|
187 |
MAKE_ARGS += JDK_UPDATE_VER=$(COOKED_JDK_UPDATE_VERSION) |
|
188 |
endif |
|
189 |
||
190 |
# COOKED_BUILD_NUMBER should only be set if we have a numeric |
|
191 |
# build number. It must not be zero padded. |
|
192 |
ifdef COOKED_BUILD_NUMBER |
|
193 |
MAKE_ARGS += JDK_BUILD_NUMBER=$(COOKED_BUILD_NUMBER) |
|
194 |
endif |
|
195 |
||
17295 | 196 |
NMAKE= MAKEFLAGS= MFLAGS= EXTRA_CFLAGS="$(EXTRA_CFLAGS)" nmake -NOLOGO |
13474 | 197 |
ifndef SYSTEM_UNAME |
198 |
SYSTEM_UNAME := $(shell uname) |
|
199 |
export SYSTEM_UNAME |
|
200 |
endif |
|
1 | 201 |
|
202 |
# Check for CYGWIN |
|
13474 | 203 |
ifneq (,$(findstring CYGWIN,$(SYSTEM_UNAME))) |
1 | 204 |
USING_CYGWIN=true |
205 |
else |
|
206 |
USING_CYGWIN=false |
|
207 |
endif |
|
13474 | 208 |
# Check for MinGW |
209 |
ifneq (,$(findstring MINGW,$(SYSTEM_UNAME))) |
|
210 |
USING_MINGW=true |
|
211 |
endif |
|
1 | 212 |
|
213 |
# Windows wants particular paths due to nmake (must be after macros defined) |
|
214 |
# It is important that gnumake invokes nmake with C:\\...\\ formated |
|
215 |
# strings so that nmake gets C:\...\ style strings. |
|
216 |
# Check for CYGWIN |
|
217 |
ifeq ($(USING_CYGWIN), true) |
|
218 |
ABS_OUTPUTDIR := $(subst /,\\,$(shell /bin/cygpath -m -a "$(OUTPUTDIR)")) |
|
219 |
ABS_BOOTDIR := $(subst /,\\,$(shell /bin/cygpath -m -a "$(BOOTDIR)")) |
|
220 |
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
|
221 |
ABS_OS_MAKEFILE := $(shell /bin/cygpath -m -a "$(HS_MAKE_DIR)/$(OSNAME)")/build.make |
13474 | 222 |
else ifeq ($(USING_MINGW), true) |
223 |
ABS_OUTPUTDIR := $(shell $(CD) $(OUTPUTDIR);$(PWD)) |
|
224 |
ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR);$(PWD)) |
|
225 |
ABS_GAMMADIR := $(shell $(CD) $(GAMMADIR);$(PWD)) |
|
226 |
ABS_OS_MAKEFILE := $(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME);$(PWD))/build.make |
|
227 |
else |
|
228 |
ABS_OUTPUTDIR := $(subst /,\\,$(shell $(CD) $(OUTPUTDIR);$(PWD))) |
|
229 |
ABS_BOOTDIR := $(subst /,\\,$(shell $(CD) $(BOOTDIR);$(PWD))) |
|
230 |
ABS_GAMMADIR := $(subst /,\\,$(shell $(CD) $(GAMMADIR);$(PWD))) |
|
231 |
ABS_OS_MAKEFILE := $(subst /,\\,$(shell $(CD) $(HS_MAKE_DIR)/$(OSNAME);$(PWD))/build.make) |
|
1 | 232 |
endif |
233 |
||
234 |
# Disable building SA on windows until we are sure |
|
235 |
# we want to release it. If we build it here, |
|
236 |
# the SDK makefiles will copy it over and put it into |
|
237 |
# the created image. |
|
1609
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
238 |
BUILD_WIN_SA = 1 |
1 | 239 |
ifneq ($(ALT_BUILD_WIN_SA),) |
240 |
BUILD_WIN_SA = $(ALT_BUILD_WIN_SA) |
|
241 |
endif |
|
242 |
||
243 |
ifeq ($(BUILD_WIN_SA), 1) |
|
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
979
diff
changeset
|
244 |
ifeq ($(ARCH),ia64) |
1 | 245 |
BUILD_WIN_SA = 0 |
246 |
endif |
|
247 |
endif |
|
248 |
||
249 |
EXPORT_SERVER_DIR = $(EXPORT_JRE_BIN_DIR)/server |
|
10259 | 250 |
EXPORT_CLIENT_DIR = $(EXPORT_JRE_BIN_DIR)/client |
251 |
||
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
252 |
ifeq ($(JVM_VARIANT_SERVER),true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
253 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
254 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.$(LIBRARY_SUFFIX) |
12503 | 255 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
256 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
|
257 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.diz |
|
258 |
else |
|
259 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.pdb |
|
260 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/jvm.map |
|
261 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
262 |
endif |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
263 |
EXPORT_LIST += $(EXPORT_LIB_DIR)/jvm.lib |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
264 |
endif |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
265 |
ifeq ($(JVM_VARIANT_CLIENT),true) |
1 | 266 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt |
10565 | 267 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.$(LIBRARY_SUFFIX) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
268 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
269 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
270 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
271 |
else |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
272 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.pdb |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
273 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/jvm.map |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
274 |
endif |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
275 |
endif |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12099
diff
changeset
|
276 |
endif |
1 | 277 |
|
278 |
ifeq ($(BUILD_WIN_SA), 1) |
|
10565 | 279 |
EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.$(LIBRARY_SUFFIX) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
280 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
281 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
282 |
EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
283 |
else |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
284 |
EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.pdb |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
285 |
EXPORT_LIST += $(EXPORT_JRE_BIN_DIR)/sawindbg.map |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
286 |
endif |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10565
diff
changeset
|
287 |
endif |
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
979
diff
changeset
|
288 |
EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar |
1 | 289 |
# Must pass this down to nmake. |
290 |
MAKE_ARGS += BUILD_WIN_SA=1 |
|
291 |
endif |
|
11955
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
292 |
|
17006 | 293 |
# Propagate compiler and tools paths from configure to nmake. |
11955
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
294 |
# Need to make sure they contain \\ and not /. |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
295 |
ifneq ($(SPEC),) |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
296 |
ifeq ($(USING_CYGWIN), true) |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
297 |
MAKE_ARGS += CXX="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(CXX)))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
298 |
MAKE_ARGS += LD="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(LD)))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
299 |
MAKE_ARGS += RC="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(RC)))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
300 |
MAKE_ARGS += MT="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(MT)))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
301 |
else |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
302 |
MAKE_ARGS += CXX="$(subst /,\\,$(CXX))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
303 |
MAKE_ARGS += LD="$(subst /,\\,$(LD))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
304 |
MAKE_ARGS += RC="$(subst /,\\,$(RC))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
305 |
MAKE_ARGS += MT="$(subst /,\\,$(MT))" |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
306 |
endif |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
10565
diff
changeset
|
307 |
endif |