annotate make/linux/makefiles/defs.make @ 24234:ea6f94ab283b default tip

Added tag jvmci-0.36 for changeset 8128b98d4736
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Mon, 18 Sep 2017 18:49:45 +0200
parents b5f3a471e646
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
22851
ddce0b7cee93 8072383: resolve conflicts between open and closed ports
dlong
parents: 17830
diff changeset
2 # Copyright (c) 2006, 2015, 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.
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
22 #
0
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 linux 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 SLASH_JAVA ?= /java
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
6784
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
32
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
33 # ARCH can be set explicitly in spec.gmk
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
34 ifndef ARCH
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
35 ARCH := $(shell uname -m)
17830
56e7f5560e60 8036767: PPC64: Support for little endian execution model
kvn
parents: 14402
diff changeset
36 # Fold little endian PowerPC64 into big-endian (if ARCH is set in
56e7f5560e60 8036767: PPC64: Support for little endian execution model
kvn
parents: 14402
diff changeset
37 # hotspot-spec.gmk, this will be done by the configure script).
56e7f5560e60 8036767: PPC64: Support for little endian execution model
kvn
parents: 14402
diff changeset
38 ifeq ($(ARCH),ppc64le)
56e7f5560e60 8036767: PPC64: Support for little endian execution model
kvn
parents: 14402
diff changeset
39 ARCH := ppc64
56e7f5560e60 8036767: PPC64: Support for little endian execution model
kvn
parents: 14402
diff changeset
40 endif
6784
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
41 endif
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
42
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
43 PATH_SEP ?= :
45535ab90688 7200065: Cross-compilation changes to support the new-build
dholmes
parents: 6641
diff changeset
44
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ifeq ($(LP64), 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ARCH_DATA_MODEL ?= 64
a61af66fc99e Initial load
duke
parents:
diff changeset
47 else
a61af66fc99e Initial load
duke
parents:
diff changeset
48 ARCH_DATA_MODEL ?= 32
a61af66fc99e Initial load
duke
parents:
diff changeset
49 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
50
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
51 # zero
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
52 ifeq ($(findstring true, $(JVM_VARIANT_ZERO) $(JVM_VARIANT_ZEROSHARK)), true)
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
53 ifeq ($(ARCH_DATA_MODEL), 64)
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
54 MAKE_ARGS += LP64=1
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
55 endif
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
56 PLATFORM = linux-zero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
57 VM_PLATFORM = linux_$(subst i386,i486,$(ZERO_LIBARCH))
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
58 HS_ARCH = zero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
59 ARCH = zero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
60 endif
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
61
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 # ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
63 ifeq ($(ARCH), ia64)
a61af66fc99e Initial load
duke
parents:
diff changeset
64 ARCH_DATA_MODEL = 64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
66 PLATFORM = linux-ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
67 VM_PLATFORM = linux_ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
68 HS_ARCH = ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
69 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 # sparc
23476
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
72 ifneq (,$(findstring $(ARCH), sparc))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
74 ARCH_DATA_MODEL = 64
a61af66fc99e Initial load
duke
parents:
diff changeset
75 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
76 PLATFORM = linux-sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
77 VM_PLATFORM = linux_sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
78 else
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ARCH_DATA_MODEL = 32
a61af66fc99e Initial load
duke
parents:
diff changeset
80 PLATFORM = linux-sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
81 VM_PLATFORM = linux_sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
82 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
83 HS_ARCH = sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
84 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
85
23476
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
86 # i686/i586 and amd64/x86_64
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
87 ifneq (,$(findstring $(ARCH), amd64 x86_64 i686 i586))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
89 ARCH_DATA_MODEL = 64
a61af66fc99e Initial load
duke
parents:
diff changeset
90 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
91 PLATFORM = linux-amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
92 VM_PLATFORM = linux_amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
93 else
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ARCH_DATA_MODEL = 32
a61af66fc99e Initial load
duke
parents:
diff changeset
95 PLATFORM = linux-i586
a61af66fc99e Initial load
duke
parents:
diff changeset
96 VM_PLATFORM = linux_i486
a61af66fc99e Initial load
duke
parents:
diff changeset
97 endif
23476
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
98 HS_ARCH = x86
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
100
23476
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
101 # PPC
23478
bd33e3fce750 8048232: Fix for 8046471 breaks PPC64 build
gthornbr
parents: 23476
diff changeset
102 # Notice: after 8046471 ARCH will be 'ppc' for top-level ppc64 builds but
bd33e3fce750 8048232: Fix for 8046471 breaks PPC64 build
gthornbr
parents: 23476
diff changeset
103 # 'ppc64' for HotSpot-only ppc64 builds. Need to detect both variants here!
bd33e3fce750 8048232: Fix for 8046471 breaks PPC64 build
gthornbr
parents: 23476
diff changeset
104 ifneq (,$(findstring $(ARCH), ppc ppc64))
23476
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
105 ifeq ($(ARCH_DATA_MODEL), 64)
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
106 MAKE_ARGS += LP64=1
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
107 PLATFORM = linux-ppc64
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
108 VM_PLATFORM = linux_ppc64
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
109 else
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
110 ARCH_DATA_MODEL = 32
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
111 PLATFORM = linux-ppc
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
112 VM_PLATFORM = linux_ppc
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
113 endif
6fb4d6e02e92 8046471: Use OPENJDK_TARGET_CPU_ARCH instead of legacy value for hotspot ARCH
gthornbr
parents: 22851
diff changeset
114 HS_ARCH = ppc
14402
faf0c78e906b 8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents: 9152
diff changeset
115 endif
faf0c78e906b 8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents: 9152
diff changeset
116
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
117 # On 32 bit linux 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
118 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
119 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
120 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
121 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
122 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
123 else
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
124 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
125 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
126 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
127 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
128
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
129 # determine if HotSpot is being built in JDK6 or earlier version
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
130 JDK6_OR_EARLIER=0
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
131 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
132 # 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
133 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
134 JDK6_OR_EARLIER=1
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
135 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
136 else
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
137 # 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
138 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
139 JDK6_OR_EARLIER=1
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
140 endif
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
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
143 ifeq ($(JDK6_OR_EARLIER),0)
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
144 # Full Debug Symbols is supported on JDK7 or newer.
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
145 # The Full Debug Symbols (FDS) default for BUILD_FLAVOR == product
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
146 # builds is enabled with debug info files ZIP'ed to save space. For
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
147 # BUILD_FLAVOR != product builds, FDS is always enabled, after all a
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
148 # debug build without debug info isn't very useful.
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
149 # The ZIP_DEBUGINFO_FILES option only has meaning when FDS is enabled.
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
150 #
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
151 # If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
152 # disabled for a BUILD_FLAVOR == product build.
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
153 #
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
154 # Note: Use of a different variable name for the FDS override option
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
155 # versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
156 # versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
157 # in options via environment variables, use of distinct variables
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
158 # prevents strange behaviours. For example, in a BUILD_FLAVOR !=
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
159 # product build, the FULL_DEBUG_SYMBOLS environment variable will be
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
160 # 0, but the ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
161 # the same variable name is used, then different values can be picked
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
162 # up by different parts of the build. Just to be clear, we only need
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
163 # two variable names because the incoming option value can be
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
164 # overridden in some situations, e.g., a BUILD_FLAVOR != product
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
165 # build.
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
166
6932
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
167 # Due to the multiple sub-make processes that occur this logic gets
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
168 # executed multiple times. We reduce the noise by at least checking that
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
169 # BUILD_FLAVOR has been set.
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
170 ifneq ($(BUILD_FLAVOR),)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
171 ifeq ($(BUILD_FLAVOR), product)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
172 FULL_DEBUG_SYMBOLS ?= 1
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
173 ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
174 else
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
175 # debug variants always get Full Debug Symbols (if available)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
176 ENABLE_FULL_DEBUG_SYMBOLS = 1
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
177 endif
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
178 _JUNK_ := $(shell \
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
179 echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
180 # since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
181
6932
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
182 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
183 # Default OBJCOPY comes from GNU Binutils on Linux
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
184 ifeq ($(CROSS_COMPILE_ARCH),)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
185 DEF_OBJCOPY=/usr/bin/objcopy
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
186 else
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
187 # Assume objcopy is part of the cross-compilation toolset
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
188 ifneq ($(ALT_COMPILER_PATH),)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
189 DEF_OBJCOPY=$(ALT_COMPILER_PATH)/objcopy
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
190 endif
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
191 endif
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
192 OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
193 ifneq ($(ALT_OBJCOPY),)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
194 _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
195 OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
196 endif
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
197
6932
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
198 ifeq ($(OBJCOPY),)
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
199 _JUNK_ := $(shell \
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
200 echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files. You may need to set ALT_OBJCOPY.")
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
201 ENABLE_FULL_DEBUG_SYMBOLS=0
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
202 _JUNK_ := $(shell \
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
203 echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
204 else
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
205 _JUNK_ := $(shell \
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
206 echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
207
6932
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
208 # Library stripping policies for .debuginfo configs:
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
209 # all_strip - strips everything from the library
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
210 # min_strip - strips most stuff from the library; leaves minimum symbols
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
211 # no_strip - does not strip the library at all
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
212 #
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
213 # Oracle security policy requires "all_strip". A waiver was granted on
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
214 # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
215 #
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
216 # Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
217 #
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
218 STRIP_POLICY ?= min_strip
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
219
6932
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
220 _JUNK_ := $(shell \
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
221 echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
222
6932
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
223 ZIP_DEBUGINFO_FILES ?= 1
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
224
6932
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
225 _JUNK_ := $(shell \
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
226 echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
227 endif
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
228 endif # ENABLE_FULL_DEBUG_SYMBOLS=1
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
229 endif # BUILD_FLAVOR
857f3ce858dd 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 6854
diff changeset
230 endif # JDK_6_OR_EARLIER
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
231
0
a61af66fc99e Initial load
duke
parents:
diff changeset
232 JDK_INCLUDE_SUBDIR=linux
a61af66fc99e Initial load
duke
parents:
diff changeset
233
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
234 # Library suffix
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
235 LIBRARY_SUFFIX=so
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
236
0
a61af66fc99e Initial load
duke
parents:
diff changeset
237 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: 1010
diff changeset
238
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 1010
diff changeset
239 # client and server subdirectories have symbolic links to ../libjsig.so
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
240 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
241 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
242 ifeq ($(ZIP_DEBUGINFO_FILES),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
243 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
244 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
245 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
246 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
247 endif
21913
a04b45953250 Append -nojvmci to the compiler directory when building without jvmci
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18041
diff changeset
248 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server$(COMPILER_DIR_SUFFIX)
a04b45953250 Append -nojvmci to the compiler directory when building without jvmci
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18041
diff changeset
249 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client$(COMPILER_DIR_SUFFIX)
a04b45953250 Append -nojvmci to the compiler directory when building without jvmci
Stefan Anzinger <stefan.anzinger@oracle.com>
parents: 18041
diff changeset
250 EXPORT_MINIMAL_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/minimal$(COMPILER_DIR_SUFFIX)
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 1010
diff changeset
251
14402
faf0c78e906b 8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents: 9152
diff changeset
252 ifeq ($(findstring true, $(JVM_VARIANT_SERVER) $(JVM_VARIANT_ZERO) $(JVM_VARIANT_ZEROSHARK) $(JVM_VARIANT_CORE)), true)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
253 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
254 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
255 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
256 ifeq ($(ZIP_DEBUGINFO_FILES),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
257 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
258 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
259 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
260 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
261 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
262 endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
263
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
264 ifeq ($(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
265 EXPORT_LIST += $(EXPORT_CLIENT_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
266 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX)
6022
dcubed
parents: 5946 6021
diff changeset
267 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
dcubed
parents: 5946 6021
diff changeset
268 ifeq ($(ZIP_DEBUGINFO_FILES),1)
dcubed
parents: 5946 6021
diff changeset
269 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.diz
dcubed
parents: 5946 6021
diff changeset
270 else
dcubed
parents: 5946 6021
diff changeset
271 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
272 endif
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
273 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
274 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
275
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
276 ifeq ($(JVM_VARIANT_MINIMAL1),true)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
277 EXPORT_LIST += $(EXPORT_MINIMAL_DIR)/Xusage.txt
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
278 EXPORT_LIST += $(EXPORT_MINIMAL_DIR)/libjvm.$(LIBRARY_SUFFIX)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
279
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
280 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
281 ifeq ($(ZIP_DEBUGINFO_FILES),1)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
282 EXPORT_LIST += $(EXPORT_MINIMAL_DIR)/libjvm.diz
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
283 else
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
284 EXPORT_LIST += $(EXPORT_MINIMAL_DIR)/libjvm.debuginfo
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
285 endif
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
286 endif
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
287 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6784
diff changeset
288
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
289 # Serviceability Binaries
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
290 # No SA Support for PPC, IA64, ARM or zero
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
291 ADD_SA_BINARIES/x86 = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
292 $(EXPORT_LIB_DIR)/sa-jdi.jar
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
293 ADD_SA_BINARIES/sparc = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
294 $(EXPORT_LIB_DIR)/sa-jdi.jar
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
295 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
296 ifeq ($(ZIP_DEBUGINFO_FILES),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
297 ADD_SA_BINARIES/x86 += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
298 ADD_SA_BINARIES/sparc += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
299 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
300 ADD_SA_BINARIES/x86 += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
301 ADD_SA_BINARIES/sparc += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
302 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
303 endif
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
304 ADD_SA_BINARIES/ppc =
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
305 ADD_SA_BINARIES/ia64 =
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
306 ADD_SA_BINARIES/arm =
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8098
diff changeset
307 ADD_SA_BINARIES/zero =
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
308
6641
a9fed06c01d2 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 6022
diff changeset
309 -include $(HS_ALT_MAKE)/linux/makefiles/defs.make
a9fed06c01d2 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 6022
diff changeset
310
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
311 EXPORT_LIST += $(ADD_SA_BINARIES/$(HS_ARCH))
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
312
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
313