author | alanb |
Mon, 03 Nov 2014 15:33:11 +0000 | |
changeset 27339 | 2cf6bc8c2d2c |
parent 26691 | 40ea2c41f53b |
child 27657 | f4fcaa1bb2d4 |
permissions | -rw-r--r-- |
1 | 1 |
# |
17006 | 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:
4018
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4018
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:
4018
diff
changeset
|
21 |
# questions. |
17006 | 22 |
# |
1 | 23 |
# |
24 |
||
25 |
# The common definitions for hotspot solaris 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 |
||
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
29 |
define print_info |
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
30 |
ifneq ($$(LOG_LEVEL), warn) |
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
31 |
$$(shell echo >&2 "INFO: $1") |
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
32 |
endif |
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
33 |
endef |
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
34 |
|
1 | 35 |
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name |
36 |
SLASH_JAVA ?= /java |
|
37 |
ARCH:=$(shell uname -p) |
|
38 |
PATH_SEP = : |
|
39 |
ifeq ($(LP64), 1) |
|
40 |
ARCH_DATA_MODEL=64 |
|
41 |
else |
|
42 |
ARCH_DATA_MODEL=32 |
|
43 |
endif |
|
44 |
||
45 |
ifeq ($(ARCH),sparc) |
|
46 |
ifeq ($(ARCH_DATA_MODEL), 64) |
|
47 |
MAKE_ARGS += LP64=1 |
|
48 |
PLATFORM=solaris-sparcv9 |
|
49 |
VM_PLATFORM=solaris_sparcv9 |
|
50 |
else |
|
51 |
PLATFORM=solaris-sparc |
|
52 |
VM_PLATFORM=solaris_sparc |
|
53 |
endif |
|
54 |
HS_ARCH=sparc |
|
55 |
else |
|
56 |
ifeq ($(ARCH_DATA_MODEL), 64) |
|
57 |
MAKE_ARGS += LP64=1 |
|
58 |
PLATFORM=solaris-amd64 |
|
59 |
VM_PLATFORM=solaris_amd64 |
|
60 |
HS_ARCH=x86 |
|
61 |
else |
|
62 |
PLATFORM=solaris-i586 |
|
63 |
VM_PLATFORM=solaris_i486 |
|
64 |
HS_ARCH=x86 |
|
65 |
endif |
|
66 |
endif |
|
67 |
||
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
68 |
# On 32 bit solaris we build server and client, on 64 bit just server. |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
69 |
ifeq ($(JVM_VARIANTS),) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
70 |
ifeq ($(ARCH_DATA_MODEL), 32) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
71 |
JVM_VARIANTS:=client,server |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
72 |
JVM_VARIANT_CLIENT:=true |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
73 |
JVM_VARIANT_SERVER:=true |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
74 |
else |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
75 |
JVM_VARIANTS:=server |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
76 |
JVM_VARIANT_SERVER:=true |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
77 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
78 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
79 |
|
10559 | 80 |
# determine if HotSpot is being built in JDK6 or earlier version |
81 |
JDK6_OR_EARLIER=0 |
|
82 |
ifeq "$(shell expr \( '$(JDK_MAJOR_VERSION)' != '' \& '$(JDK_MINOR_VERSION)' != '' \& '$(JDK_MICRO_VERSION)' != '' \))" "1" |
|
83 |
# if the longer variable names (newer build style) are set, then check those |
|
84 |
ifeq "$(shell expr \( $(JDK_MAJOR_VERSION) = 1 \& $(JDK_MINOR_VERSION) \< 7 \))" "1" |
|
85 |
JDK6_OR_EARLIER=1 |
|
86 |
endif |
|
87 |
else |
|
88 |
# the longer variables aren't set so check the shorter variable names |
|
89 |
ifeq "$(shell expr \( '$(JDK_MAJOR_VER)' = 1 \& '$(JDK_MINOR_VER)' \< 7 \))" "1" |
|
90 |
JDK6_OR_EARLIER=1 |
|
91 |
endif |
|
92 |
endif |
|
93 |
||
94 |
ifeq ($(JDK6_OR_EARLIER),0) |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
95 |
# Full Debug Symbols is supported on JDK7 or newer. |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
96 |
# 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
|
97 |
# 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
|
98 |
# 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
|
99 |
# 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
|
100 |
# 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
|
101 |
# |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
102 |
# 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
|
103 |
# 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
|
104 |
# |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
105 |
# 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
|
106 |
# 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
|
107 |
# 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
|
108 |
# 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
|
109 |
# 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
|
110 |
# 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
|
111 |
# 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
|
112 |
# 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
|
113 |
# 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
|
114 |
# 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
|
115 |
# 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
|
116 |
# build. |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
117 |
|
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
118 |
# Due to the multiple sub-make processes that occur this logic gets |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
119 |
# executed multiple times. We reduce the noise by at least checking that |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
120 |
# BUILD_FLAVOR has been set. |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
121 |
ifneq ($(BUILD_FLAVOR),) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
122 |
ifeq ($(BUILD_FLAVOR), product) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
123 |
FULL_DEBUG_SYMBOLS ?= 1 |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
124 |
ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
125 |
else |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
126 |
# debug variants always get Full Debug Symbols (if available) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
127 |
ENABLE_FULL_DEBUG_SYMBOLS = 1 |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
128 |
endif |
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
129 |
$(eval $(call print_info, "ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")) |
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
130 |
# since objcopy is optional, we set ZIP_DEBUGINFO_FILES later |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
131 |
|
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
132 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
133 |
# Default OBJCOPY comes from the SUNWbinutils package: |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
134 |
DEF_OBJCOPY=/usr/sfw/bin/gobjcopy |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
135 |
OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY)) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
136 |
ifneq ($(ALT_OBJCOPY),) |
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
137 |
$(eval $(call print_info, "ALT_OBJCOPY=$(ALT_OBJCOPY)")) |
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
138 |
OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY)) |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
139 |
endif |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
140 |
|
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
141 |
ifeq ($(OBJCOPY),) |
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
142 |
$(eval $(call print_info, "no objcopy cmd found so cannot create .debuginfo files.")) |
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
143 |
ENABLE_FULL_DEBUG_SYMBOLS=0 |
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
144 |
$(eval $(call print_info, "ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")) |
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
145 |
else |
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
146 |
$(eval $(call print_info, "$(OBJCOPY) cmd found so will create .debuginfo files.")) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
147 |
|
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
148 |
# Library stripping policies for .debuginfo configs: |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
149 |
# all_strip - strips everything from the library |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
150 |
# min_strip - strips most stuff from the library; leaves minimum symbols |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
151 |
# no_strip - does not strip the library at all |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
152 |
# |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
153 |
# Oracle security policy requires "all_strip". A waiver was granted on |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
154 |
# 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE. |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
155 |
# |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
156 |
# Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled. |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
157 |
# |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
158 |
STRIP_POLICY ?= min_strip |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
159 |
|
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
160 |
$(eval $(call print_info, "STRIP_POLICY=$(STRIP_POLICY)")) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
161 |
|
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
162 |
ZIP_DEBUGINFO_FILES ?= 1 |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
163 |
|
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
17006
diff
changeset
|
164 |
$(eval $(call print_info, "ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")) |
14383
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
165 |
endif |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
166 |
endif # ENABLE_FULL_DEBUG_SYMBOLS=1 |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
167 |
endif # BUILD_FLAVOR |
f31aacbd0f36
8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents:
13093
diff
changeset
|
168 |
endif # JDK_6_OR_EARLIER |
10559 | 169 |
|
1 | 170 |
JDK_INCLUDE_SUBDIR=solaris |
171 |
||
10565 | 172 |
# Library suffix |
173 |
LIBRARY_SUFFIX=so |
|
174 |
||
1 | 175 |
EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html |
4018
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
670
diff
changeset
|
176 |
|
10565 | 177 |
# client and server subdirectories have symbolic links to ../libjsig.$(LIBRARY_SUFFIX) |
178 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX) |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
179 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
180 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
181 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
182 |
else |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
183 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
184 |
endif |
10559 | 185 |
endif |
4018
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
670
diff
changeset
|
186 |
|
1 | 187 |
EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server |
10259 | 188 |
EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client |
189 |
||
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
190 |
ifeq ($(JVM_VARIANT_SERVER),true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
191 |
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:
12095
diff
changeset
|
192 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
193 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
194 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
195 |
ifeq ($(ARCH_DATA_MODEL),32) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
196 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
197 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
198 |
endif |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
199 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
200 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
201 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
202 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
203 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.diz |
13093 | 204 |
ifeq ($(ARCH_DATA_MODEL),32) |
205 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.diz |
|
206 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.diz |
|
207 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
208 |
else |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
209 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
210 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
211 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.debuginfo |
13093 | 212 |
ifeq ($(ARCH_DATA_MODEL),32) |
213 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.debuginfo |
|
214 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.debuginfo |
|
215 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
216 |
endif |
10559 | 217 |
endif |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5702
diff
changeset
|
218 |
endif |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
219 |
ifeq ($(JVM_VARIANT_CLIENT),true) |
1 | 220 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt |
17006 | 221 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX) |
222 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.$(LIBRARY_SUFFIX) |
|
10565 | 223 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX) |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
224 |
ifeq ($(ARCH_DATA_MODEL),32) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
225 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
226 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
227 |
endif |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
228 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
229 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
230 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
231 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
232 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.diz |
12503 | 233 |
ifeq ($(ARCH_DATA_MODEL),32) |
234 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.diz |
|
235 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.diz |
|
236 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
237 |
else |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
238 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
239 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
240 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.debuginfo |
12503 | 241 |
ifeq ($(ARCH_DATA_MODEL),32) |
242 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.debuginfo |
|
243 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.debuginfo |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
244 |
endif |
10559 | 245 |
endif |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5702
diff
changeset
|
246 |
endif |
1 | 247 |
endif |
248 |
||
10565 | 249 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
250 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
251 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
252 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
253 |
else |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
254 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
10571
diff
changeset
|
255 |
endif |
10559 | 256 |
endif |
17006 | 257 |
EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar |