annotate make/linux/makefiles/defs.make @ 6021:744728c16316

7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds Summary: Build option FULL_DEBUG_SYMBOLS=0 only affects product builds. Reviewed-by: ohair, jmelvin, sspitsyn
author dcubed
date Tue, 03 Apr 2012 09:48:34 -0700
parents d652a62d6e03
children 74c359c4a9e5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
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 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
a61af66fc99e Initial load
duke
parents:
diff changeset
32 ARCH:=$(shell uname -m)
a61af66fc99e Initial load
duke
parents:
diff changeset
33 PATH_SEP = :
a61af66fc99e Initial load
duke
parents:
diff changeset
34 ifeq ($(LP64), 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
35 ARCH_DATA_MODEL ?= 64
a61af66fc99e Initial load
duke
parents:
diff changeset
36 else
a61af66fc99e Initial load
duke
parents:
diff changeset
37 ARCH_DATA_MODEL ?= 32
a61af66fc99e Initial load
duke
parents:
diff changeset
38 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
39
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
40 # zero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
41 ifeq ($(ZERO_BUILD), true)
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
42 ifeq ($(ARCH_DATA_MODEL), 64)
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
43 MAKE_ARGS += LP64=1
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
44 endif
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
45 PLATFORM = linux-zero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
46 VM_PLATFORM = linux_$(subst i386,i486,$(ZERO_LIBARCH))
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
47 HS_ARCH = zero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
48 ARCH = zero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
49 endif
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
50
0
a61af66fc99e Initial load
duke
parents:
diff changeset
51 # ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
52 ifeq ($(ARCH), ia64)
a61af66fc99e Initial load
duke
parents:
diff changeset
53 ARCH_DATA_MODEL = 64
a61af66fc99e Initial load
duke
parents:
diff changeset
54 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
55 PLATFORM = linux-ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
56 VM_PLATFORM = linux_ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
57 HS_ARCH = ia64
a61af66fc99e Initial load
duke
parents:
diff changeset
58 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 # sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
61 ifeq ($(ARCH), sparc64)
a61af66fc99e Initial load
duke
parents:
diff changeset
62 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
63 ARCH_DATA_MODEL = 64
a61af66fc99e Initial load
duke
parents:
diff changeset
64 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
65 PLATFORM = linux-sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
66 VM_PLATFORM = linux_sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
67 else
a61af66fc99e Initial load
duke
parents:
diff changeset
68 ARCH_DATA_MODEL = 32
a61af66fc99e Initial load
duke
parents:
diff changeset
69 PLATFORM = linux-sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
70 VM_PLATFORM = linux_sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
71 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
72 HS_ARCH = sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
73 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 # x86_64
a61af66fc99e Initial load
duke
parents:
diff changeset
76 ifeq ($(ARCH), x86_64)
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ARCH_DATA_MODEL = 64
a61af66fc99e Initial load
duke
parents:
diff changeset
79 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
80 PLATFORM = linux-amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
81 VM_PLATFORM = linux_amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
82 HS_ARCH = x86
a61af66fc99e Initial load
duke
parents:
diff changeset
83 else
a61af66fc99e Initial load
duke
parents:
diff changeset
84 ARCH_DATA_MODEL = 32
a61af66fc99e Initial load
duke
parents:
diff changeset
85 PLATFORM = linux-i586
a61af66fc99e Initial load
duke
parents:
diff changeset
86 VM_PLATFORM = linux_i486
a61af66fc99e Initial load
duke
parents:
diff changeset
87 HS_ARCH = x86
a61af66fc99e Initial load
duke
parents:
diff changeset
88 # We have to reset ARCH to i686 since SRCARCH relies on it
a61af66fc99e Initial load
duke
parents:
diff changeset
89 ARCH = i686
a61af66fc99e Initial load
duke
parents:
diff changeset
90 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
91 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 # i686
a61af66fc99e Initial load
duke
parents:
diff changeset
94 ifeq ($(ARCH), i686)
a61af66fc99e Initial load
duke
parents:
diff changeset
95 ARCH_DATA_MODEL = 32
a61af66fc99e Initial load
duke
parents:
diff changeset
96 PLATFORM = linux-i586
a61af66fc99e Initial load
duke
parents:
diff changeset
97 VM_PLATFORM = linux_i486
a61af66fc99e Initial load
duke
parents:
diff changeset
98 HS_ARCH = x86
a61af66fc99e Initial load
duke
parents:
diff changeset
99 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
100
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
101 # ARM
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
102 ifeq ($(ARCH), arm)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
103 ARCH_DATA_MODEL = 32
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
104 PLATFORM = linux-arm
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
105 VM_PLATFORM = linux_arm
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
106 HS_ARCH = arm
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
107 endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
108
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
109 # PPC
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
110 ifeq ($(ARCH), ppc)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
111 ARCH_DATA_MODEL = 32
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
112 PLATFORM = linux-ppc
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
113 VM_PLATFORM = linux_ppc
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
114 HS_ARCH = ppc
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
115 endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
116
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
117 # determine if HotSpot is being built in JDK6 or earlier version
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
118 JDK6_OR_EARLIER=0
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
119 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
120 # 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
121 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
122 JDK6_OR_EARLIER=1
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
123 endif
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 # 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
126 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
127 JDK6_OR_EARLIER=1
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
128 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
129 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
130
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
131 ifeq ($(JDK6_OR_EARLIER),0)
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
132 # 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
133 # 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
134 # 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
135 # 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
136 # 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
137 # 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
138 #
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
139 # 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
140 # 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
141 #
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
142 # 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
143 # 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
144 # 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
145 # 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
146 # 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
147 # 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
148 # 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
149 # 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
150 # 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
151 # 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
152 # 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
153 # build.
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
154
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
155 ifeq ($(BUILD_FLAVOR), product)
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
156 FULL_DEBUG_SYMBOLS ?= 1
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
157 ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
158 else
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
159 # debug variants always get Full Debug Symbols (if available)
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
160 ENABLE_FULL_DEBUG_SYMBOLS = 1
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
161 endif
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
162 _JUNK_ := $(shell \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
163 echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
164 # since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
165
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
166 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
167 # Default OBJCOPY comes from GNU Binutils on Linux:
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
168 DEF_OBJCOPY=/usr/bin/objcopy
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
169 ifdef CROSS_COMPILE_ARCH
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
170 # don't try to generate .debuginfo files when cross compiling
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
171 _JUNK_ := $(shell \
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
172 echo >&2 "INFO: cross compiling for ARCH $(CROSS_COMPILE_ARCH)," \
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
173 "skipping .debuginfo generation.")
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
174 OBJCOPY=
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
175 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
176 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
177 ifneq ($(ALT_OBJCOPY),)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
178 _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
179 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
180 endif
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
181 endif
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
182 else
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
183 OBJCOPY=
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
184 endif
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
185
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
186 ifeq ($(OBJCOPY),)
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
187 _JUNK_ := $(shell \
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
188 echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
189 ENABLE_FULL_DEBUG_SYMBOLS=0
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
190 _JUNK_ := $(shell \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
191 echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
192 else
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
193 _JUNK_ := $(shell \
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
194 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
195
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
196 # Library stripping policies for .debuginfo configs:
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
197 # all_strip - strips everything from the library
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
198 # min_strip - strips most stuff from the library; leaves minimum symbols
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
199 # no_strip - does not strip the library at all
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
200 #
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
201 # Oracle security policy requires "all_strip". A waiver was granted on
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
202 # 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
203 #
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
204 # Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
205 #
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
206 STRIP_POLICY ?= min_strip
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
207
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
208 _JUNK_ := $(shell \
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
209 echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
210
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
211 ZIP_DEBUGINFO_FILES ?= 1
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
212
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
213 _JUNK_ := $(shell \
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
214 echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
215 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
216 endif
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
217
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218 JDK_INCLUDE_SUBDIR=linux
a61af66fc99e Initial load
duke
parents:
diff changeset
219
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
220 # Library suffix
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
221 LIBRARY_SUFFIX=so
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
222
0
a61af66fc99e Initial load
duke
parents:
diff changeset
223 # FIXUP: The subdirectory for a debug build is NOT the same on all platforms
a61af66fc99e Initial load
duke
parents:
diff changeset
224 VM_DEBUG=jvmg
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 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
227
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 1010
diff changeset
228 # client and server subdirectories have symbolic links to ../libjsig.so
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
229 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
230 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
231 ifeq ($(ZIP_DEBUGINFO_FILES),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
232 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
233 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
234 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
235 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
236 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
237 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
3846
4aa5974a06dd 7075559: JPRT windows_x64 build failure
kvn
parents: 2042
diff changeset
238 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 1010
diff changeset
239
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
240 ifndef BUILD_CLIENT_ONLY
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241 EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
242 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
243 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
244 ifeq ($(ZIP_DEBUGINFO_FILES),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
245 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
246 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
247 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
248 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
249 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
250 endif
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
251
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
252 ifneq ($(ZERO_BUILD), true)
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
253 ifeq ($(ARCH_DATA_MODEL), 32)
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
254 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
255 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX)
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
256 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
257 ifeq ($(ZIP_DEBUGINFO_FILES),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
258 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
259 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
260 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
261 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
262 endif
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
263 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
265
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
266 # Serviceability Binaries
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
267 # No SA Support for PPC, IA64, ARM or zero
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
268 ADD_SA_BINARIES/x86 = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
269 $(EXPORT_LIB_DIR)/sa-jdi.jar
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3846
diff changeset
270 ADD_SA_BINARIES/sparc = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
271 $(EXPORT_LIB_DIR)/sa-jdi.jar
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
272 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
273 ifeq ($(ZIP_DEBUGINFO_FILES),1)
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
274 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
275 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
276 else
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 3966
diff changeset
277 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
278 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
279 endif
3954
da0999c4b733 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 3846
diff changeset
280 endif
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
281 ADD_SA_BINARIES/ppc =
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
282 ADD_SA_BINARIES/ia64 =
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
283 ADD_SA_BINARIES/arm =
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
284 ADD_SA_BINARIES/zero =
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
285
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
286 EXPORT_LIST += $(ADD_SA_BINARIES/$(HS_ARCH))
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
287
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
288