annotate make/solaris/makefiles/defs.make @ 5946:3d7ea1dbe0de

7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built Reviewed-by: dholmes, ohair
author erikj
date Mon, 19 Mar 2012 10:09:24 +0100
parents 2d503de963b3
children 74c359c4a9e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
5915
2d503de963b3 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 3966
diff changeset
2 # Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # The common definitions for hotspot solaris builds.
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # Include the top level defs.make under make directory instead of this one.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 # This file is included into make/defs.make.
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
a61af66fc99e Initial load
duke
parents:
diff changeset
30 SLASH_JAVA ?= /java
a61af66fc99e Initial load
duke
parents:
diff changeset
31 ARCH:=$(shell uname -p)
a61af66fc99e Initial load
duke
parents:
diff changeset
32 PATH_SEP = :
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ifeq ($(LP64), 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
34 ARCH_DATA_MODEL=64
a61af66fc99e Initial load
duke
parents:
diff changeset
35 else
a61af66fc99e Initial load
duke
parents:
diff changeset
36 ARCH_DATA_MODEL=32
a61af66fc99e Initial load
duke
parents:
diff changeset
37 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 ifeq ($(ARCH),sparc)
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
41 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
42 PLATFORM=solaris-sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
43 VM_PLATFORM=solaris_sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
44 else
a61af66fc99e Initial load
duke
parents:
diff changeset
45 PLATFORM=solaris-sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
46 VM_PLATFORM=solaris_sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
47 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
48 HS_ARCH=sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
49 else
a61af66fc99e Initial load
duke
parents:
diff changeset
50 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
51 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
52 PLATFORM=solaris-amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
53 VM_PLATFORM=solaris_amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
54 HS_ARCH=x86
a61af66fc99e Initial load
duke
parents:
diff changeset
55 else
a61af66fc99e Initial load
duke
parents:
diff changeset
56 PLATFORM=solaris-i586
a61af66fc99e Initial load
duke
parents:
diff changeset
57 VM_PLATFORM=solaris_i486
a61af66fc99e Initial load
duke
parents:
diff changeset
58 HS_ARCH=x86
a61af66fc99e Initial load
duke
parents:
diff changeset
59 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
60 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
61
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
62 # On 32 bit solaris we build server and client, on 64 bit just server.
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
63 ifeq ($(JVM_VARIANTS),)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
64 ifeq ($(ARCH_DATA_MODEL), 32)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
65 JVM_VARIANTS:=client,server
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
66 JVM_VARIANT_CLIENT:=true
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
67 JVM_VARIANT_SERVER:=true
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
68 else
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
69 JVM_VARIANTS:=server
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
70 JVM_VARIANT_SERVER:=true
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
71 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
72 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
73
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
74 # determine if HotSpot is being built in JDK6 or earlier version
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
75 JDK6_OR_EARLIER=0
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
76 ifeq "$(shell expr \( '$(JDK_MAJOR_VERSION)' != '' \& '$(JDK_MINOR_VERSION)' != '' \& '$(JDK_MICRO_VERSION)' != '' \))" "1"
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
77 # if the longer variable names (newer build style) are set, then check those
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
78 ifeq "$(shell expr \( $(JDK_MAJOR_VERSION) = 1 \& $(JDK_MINOR_VERSION) \< 7 \))" "1"
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
79 JDK6_OR_EARLIER=1
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
80 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
81 else
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
82 # the longer variables aren't set so check the shorter variable names
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
83 ifeq "$(shell expr \( '$(JDK_MAJOR_VER)' = 1 \& '$(JDK_MINOR_VER)' \< 7 \))" "1"
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
84 JDK6_OR_EARLIER=1
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
85 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
86 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
87
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
88 ifeq ($(JDK6_OR_EARLIER),0)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
89 # Full Debug Symbols is supported on JDK7 or newer
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
90
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
91 ifdef ENABLE_FULL_DEBUG_SYMBOLS
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
92 # Only check for Full Debug Symbols support on Solaris if it is
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
93 # specifically enabled. Hopefully, it can be enabled by default
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
94 # once the .debuginfo size issues are worked out.
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
95
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
96 # Default OBJCOPY comes from the SUNWbinutils package:
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
97 DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
98 ifeq ($(VM_PLATFORM),solaris_amd64)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
99 # On Solaris AMD64/X64, gobjcopy is not happy and fails:
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
100 #
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
101 # usr/sfw/bin/gobjcopy --add-gnu-debuglink=<lib>.debuginfo <lib>.so
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
102 # BFD: stKPaiop: Not enough room for program headers, try linking with -N
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
103 # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
104 # BFD: stKPaiop: Not enough room for program headers, try linking with -N
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
105 # /usr/sfw/bin/gobjcopy: libsaproc.debuginfo: Bad value
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
106 # BFD: stKPaiop: Not enough room for program headers, try linking with -N
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
107 # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
108 _JUNK_ := $(shell \
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
109 echo >&2 "INFO: $(DEF_OBJCOPY) is not working on Solaris AMD64/X64")
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
110 OBJCOPY=
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
111 else
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
112 OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
113 ifneq ($(ALT_OBJCOPY),)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
114 _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
115 # disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
116 OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
117 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
118 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
119 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
120
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
121 ifeq ($(OBJCOPY),)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
122 _JUNK_ := $(shell \
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
123 echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
124 else
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
125 _JUNK_ := $(shell \
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
126 echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
127
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
128 # Library stripping policies for .debuginfo configs:
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
129 # all_strip - strips everything from the library
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
130 # min_strip - strips most stuff from the library; leaves minimum symbols
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
131 # no_strip - does not strip the library at all
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
132 #
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
133 # Oracle security policy requires "all_strip". A waiver was granted on
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
134 # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
135 #
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
136 DEF_STRIP_POLICY="min_strip"
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
137 ifeq ($(ALT_STRIP_POLICY),)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
138 STRIP_POLICY=$(DEF_STRIP_POLICY)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
139 else
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
140 STRIP_POLICY=$(ALT_STRIP_POLICY)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
141 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
142 _JUNK_ := $(shell \
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
143 echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
144 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
145 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
146
0
a61af66fc99e Initial load
duke
parents:
diff changeset
147 JDK_INCLUDE_SUBDIR=solaris
a61af66fc99e Initial load
duke
parents:
diff changeset
148
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
149 # Library suffix
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
150 LIBRARY_SUFFIX=so
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
151
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 # FIXUP: The subdirectory for a debug build is NOT the same on all platforms
a61af66fc99e Initial load
duke
parents:
diff changeset
153 VM_DEBUG=jvmg
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 196
diff changeset
156
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
157 # client and server subdirectories have symbolic links to ../libjsig.$(LIBRARY_SUFFIX)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
158 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
159 ifneq ($(OBJCOPY),)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
160 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
161 endif
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 196
diff changeset
162
5915
2d503de963b3 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 3966
diff changeset
163 EXPORT_LIST += $(EXPORT_JRE_LIB_DIR)/wb.jar
2d503de963b3 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 3966
diff changeset
164
0
a61af66fc99e Initial load
duke
parents:
diff changeset
165 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
3846
4aa5974a06dd 7075559: JPRT windows_x64 build failure
kvn
parents: 2042
diff changeset
166 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
4aa5974a06dd 7075559: JPRT windows_x64 build failure
kvn
parents: 2042
diff changeset
167
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
168 ifeq ($(JVM_VARIANT_SERVER),true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
169 EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
170 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
171 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
172 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
173 ifeq ($(ARCH_DATA_MODEL),32)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
174 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
175 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
176 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
177 ifneq ($(OBJCOPY),)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
178 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
179 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.debuginfo
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
180 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.debuginfo
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
181 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
182 endif
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
183 ifeq ($(JVM_VARIANT_CLIENT),true)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
184 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
185 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
186 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
187 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
188 ifeq ($(ARCH_DATA_MODEL),32)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
189 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
190 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
191 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
192 ifneq ($(OBJCOPY),)
3966
iveresov
parents: 3954 3960
diff changeset
193 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
iveresov
parents: 3954 3960
diff changeset
194 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.debuginfo
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
195 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.debuginfo
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
196 ifeq ($(ARCH_DATA_MODEL),32)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
197 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.debuginfo
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
198 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.debuginfo
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
199 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
200 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
202
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
203 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX)
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
204 ifneq ($(OBJCOPY),)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
205 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
206 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
207 EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar