author | katleman |
Thu, 27 Dec 2012 12:15:06 -0800 | |
changeset 14945 | 25285d2ea668 |
parent 12876 | e1e6355c440a |
permissions | -rw-r--r-- |
2 | 1 |
# |
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
2 |
# Copyright (c) 1995, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
# |
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
5506 | 21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
2 | 24 |
# |
25 |
||
26 |
# |
|
27 |
# Makefile to specify compiler flags for programs and libraries |
|
28 |
# targeted to Solaris. Should not contain any rules. |
|
29 |
# |
|
30 |
# WARNING: This file is shared with other workspaces. |
|
31 |
# So when it includes other files, it must use JDK_TOPDIR. |
|
32 |
# |
|
33 |
||
34 |
# Warning: the following variables are overridden by Defs.gmk. Set |
|
35 |
# values will be silently ignored: |
|
36 |
# CFLAGS (set $(OTHER_CFLAGS) instead) |
|
37 |
# CPPFLAGS (set $(OTHER_CPPFLAGS) instead) |
|
38 |
# CXXFLAGS (set $(OTHER_CXXFLAGS) instead) |
|
39 |
# LDFLAGS (set $(OTHER_LDFAGS) instead) |
|
40 |
# LDLIBS (set $(EXTRA_LIBS) instead) |
|
41 |
# LDLIBS_COMMON (set $(EXTRA_LIBS) instead) |
|
42 |
# LINTFLAGS (set $(OTHER_LINTFLAGS) instead) |
|
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
43 |
# |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
44 |
# Note: CPPFLAGS are used in C and C++ compiles. |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
45 |
# |
2 | 46 |
|
47 |
# Get shared JDK settings |
|
48 |
include $(JDK_MAKE_SHARED_DIR)/Defs.gmk |
|
49 |
||
50 |
ifndef PLATFORM_SRC |
|
30
7ea1edf98bfe
6668781: Openjdk windows cygwin build failure: no rule to make linker_md.obj target
ohair
parents:
2
diff
changeset
|
51 |
PLATFORM_SRC = $(BUILDDIR)/../src/solaris |
2 | 52 |
endif # PLATFORM_SRC |
53 |
||
12288
30d13a7dd03f
7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents:
12047
diff
changeset
|
54 |
# Location of the various .properties files specific to Solaris platform |
30d13a7dd03f
7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents:
12047
diff
changeset
|
55 |
ifndef PLATFORM_PROPERTIES |
30d13a7dd03f
7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents:
12047
diff
changeset
|
56 |
PLATFORM_PROPERTIES = $(BUILDDIR)/../src/solaris/lib |
30d13a7dd03f
7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents:
12047
diff
changeset
|
57 |
endif # PLATFORM_SRC |
30d13a7dd03f
7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents:
12047
diff
changeset
|
58 |
|
2 | 59 |
# Platform specific closed sources |
60 |
ifndef OPENJDK |
|
61 |
ifndef CLOSED_PLATFORM_SRC |
|
30
7ea1edf98bfe
6668781: Openjdk windows cygwin build failure: no rule to make linker_md.obj target
ohair
parents:
2
diff
changeset
|
62 |
CLOSED_PLATFORM_SRC = $(BUILDDIR)/../src/closed/solaris |
2 | 63 |
endif |
64 |
endif |
|
65 |
||
66 |
# platform specific include files |
|
67 |
PLATFORM_INCLUDE_NAME = $(PLATFORM) |
|
68 |
PLATFORM_INCLUDE = $(INCLUDEDIR)/$(PLATFORM_INCLUDE_NAME) |
|
69 |
||
70 |
# suffix used for make dependencies files |
|
71 |
DEPEND_SUFFIX = d |
|
72 |
# suffix used for lint files |
|
73 |
LINT_SUFFIX = ln |
|
74 |
# The suffix applied to the library name for FDLIBM |
|
75 |
FDDLIBM_SUFFIX = a |
|
76 |
# The suffix applied to scripts (.bat for windows, nothing for unix) |
|
77 |
SCRIPT_SUFFIX = |
|
78 |
# CC compiler object code output directive flag value |
|
79 |
CC_OBJECT_OUTPUT_FLAG = -o #trailing blank required! |
|
80 |
||
12307
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
81 |
# The Full Debug Symbols (FDS) default for VARIANT == OPT builds is |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
82 |
# enabled with debug info files ZIP'ed to save space. For VARIANT != |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
83 |
# OPT builds, FDS is always enabled, after all a debug build without |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
84 |
# debug info isn't very useful. The ZIP_DEBUGINFO_FILES option only has |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
85 |
# meaning when FDS is enabled. |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
86 |
# |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
87 |
# If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
88 |
# disabled for a VARIANT == OPT build. |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
89 |
# |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
90 |
# Note: Use of a different variable name for the FDS override option |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
91 |
# versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
92 |
# versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
93 |
# in options via environment variables, use of distinct variables |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
94 |
# prevents strange behaviours. For example, in a VARIANT != OPT build, |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
95 |
# the FULL_DEBUG_SYMBOLS environment variable will be 0, but the |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
96 |
# ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If the same |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
97 |
# variable name is used, then different values can be picked up by |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
98 |
# different parts of the build. Just to be clear, we only need two |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
99 |
# variable names because the incoming option value can be overridden |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
100 |
# in some situations, e.g., a VARIANT != OPT build. |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
101 |
|
12853
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
102 |
ADD_GNU_DEBUGLINK = $(ABS_BUILDTOOLBINDIR)/add_gnu_debuglink |
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
103 |
FIX_EMPTY_SEC_HDR_FLAGS = $(ABS_BUILDTOOLBINDIR)/fix_empty_sec_hdr_flags |
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
104 |
|
12307
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
105 |
ifeq ($(VARIANT), OPT) |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
106 |
FULL_DEBUG_SYMBOLS ?= 1 |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
107 |
ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS) |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
108 |
else |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
109 |
# debug variants always get Full Debug Symbols (if available) |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
110 |
ENABLE_FULL_DEBUG_SYMBOLS = 1 |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
111 |
endif |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
112 |
_JUNK_ := $(shell \ |
b34445ac110f
7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents:
12293
diff
changeset
|
113 |
echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)") |
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
114 |
# since objcopy is optional, we set ZIP_DEBUGINFO_FILES later |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
115 |
|
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
116 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
117 |
# Default OBJCOPY comes from the SUNWbinutils package: |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
118 |
DEF_OBJCOPY=/usr/sfw/bin/gobjcopy |
12853
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
119 |
OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY)) |
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
120 |
ifneq ($(ALT_OBJCOPY),) |
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
121 |
_JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)") |
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
122 |
# disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path |
7bdaa5aefd3d
7170449: Management is completely broken at least on Solaris 11 X86
dcubed
parents:
12445
diff
changeset
|
123 |
OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY)) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
124 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
125 |
|
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
126 |
# Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
127 |
# JDK build to import .debuginfo or .diz files from the HotSpot build. |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
128 |
# However, adding FDS support to the JDK build will occur in phases |
12427 | 129 |
# so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS |
130 |
# and PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS) is used to indicate that a |
|
131 |
# particular library or program supports FDS. |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
132 |
|
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
133 |
ifeq ($(OBJCOPY),) |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
134 |
_JUNK_ := $(shell \ |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
135 |
echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.") |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
136 |
ENABLE_FULL_DEBUG_SYMBOLS=0 |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
137 |
else |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
138 |
_JUNK_ := $(shell \ |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
139 |
echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.") |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
140 |
|
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
141 |
# Library stripping policies for .debuginfo configs: |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
142 |
# all_strip - strips everything from the library |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
143 |
# min_strip - strips most stuff from the library; leaves minimum symbols |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
144 |
# no_strip - does not strip the library at all |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
145 |
# |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
146 |
# Oracle security policy requires "all_strip". A waiver was granted on |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
147 |
# 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE. |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
148 |
# |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
149 |
# |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
150 |
# Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled. |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
151 |
STRIP_POLICY ?= min_strip |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
152 |
|
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
153 |
_JUNK_ := $(shell \ |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
154 |
echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)") |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
155 |
|
12445
9df4dd548612
7159320: change default ZIP_DEBUGINFO_FILES back to '1' after fix for 7133529 is available
dcubed
parents:
12427
diff
changeset
|
156 |
ZIP_DEBUGINFO_FILES ?= 1 |
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
157 |
|
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
158 |
_JUNK_ := $(shell \ |
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
159 |
echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)") |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
160 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
161 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
162 |
|
2 | 163 |
# |
164 |
# Java default optimization (-x04/-O2) etc. Applies to the VM. |
|
165 |
# |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
166 |
ifndef OPTIMIZATION_LEVEL |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
167 |
ifeq ($(PRODUCT), java) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
168 |
OPTIMIZATION_LEVEL = HIGHER |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
169 |
else |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
170 |
OPTIMIZATION_LEVEL = LOWER |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
171 |
endif |
2 | 172 |
endif |
2398
b0e6622ee72e
6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents:
919
diff
changeset
|
173 |
ifndef FASTDEBUG_OPTIMIZATION_LEVEL |
b0e6622ee72e
6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents:
919
diff
changeset
|
174 |
FASTDEBUG_OPTIMIZATION_LEVEL = LOWER |
b0e6622ee72e
6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents:
919
diff
changeset
|
175 |
endif |
2 | 176 |
|
177 |
# |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
178 |
# If -Xa is in CFLAGS_COMMON it will end up ahead of $(CC_OPT) for the |
2 | 179 |
# optimized build, and that ordering of the flags completely freaks |
180 |
# out cc. Hence, -Xa is instead in each CFLAGS variant. |
|
181 |
# |
|
182 |
# The more unusual options to the Sun C compiler: |
|
183 |
# -v Stricter type checking, more error checking |
|
184 |
# (To turn ALL warnings into fatals, use -errwarn=%all) |
|
185 |
# -xstrconst Place string literals and constants in read-only area |
|
186 |
# (means you can't write on your string literals) |
|
187 |
# -xs Force debug information (stabs) into the .so or a.out |
|
188 |
# (makes the library/executable debuggable without the |
|
189 |
# .o files needing to be around, but at a space cost) |
|
190 |
# -g & -O If you add the -g option to the optimized compiles |
|
191 |
# you will get better stack retraces, the code is |
|
192 |
# still optimized. This includes a space cost too. |
|
193 |
# -xc99=%none Do NOT allow for c99 extensions to be used. |
|
194 |
# e.g. declarations must precede statements |
|
195 |
# -xCC Allow the C++ style of comments in C: // |
|
196 |
# Required with many of the source files. |
|
197 |
# -mt Assume multi-threaded (important) |
|
198 |
# |
|
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
199 |
# The more unusual options to the Sun C compiler: |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
200 |
# +w Print more warnings |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
201 |
# +w2 Maximum warnings |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
202 |
# |
2 | 203 |
|
204 |
# |
|
205 |
# Debug flag for C and C++ compiler |
|
206 |
# |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
207 |
CFLAGS_DEBUG_OPTION = -g $(CC_OPT/NONE) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
208 |
CXXFLAGS_DEBUG_OPTION = -g $(CXX_OPT/NONE) |
2 | 209 |
|
210 |
# Turn off -g if we are doing tcov build |
|
211 |
ifdef TCOV_BUILD |
|
212 |
CFLAGS_DEBUG_OPTION= |
|
213 |
CXXFLAGS_DEBUG_OPTION= |
|
214 |
endif |
|
215 |
||
216 |
# FASTDEBUG: Optimize the -g builds, gives us a faster debug java |
|
217 |
# If true adds -O to the debug compiles. This allows for any assert |
|
218 |
# tests to remain and debug checking. The resulting code is faster |
|
219 |
# but less debuggable. Stack traces are still valid, although only |
|
220 |
# approximate line numbers are given. Printing of local variables |
|
221 |
# during a debugging session is not possible, but stepping and |
|
222 |
# printing of global or static variables should be possible. |
|
223 |
# Performance/size of files should be about the same, maybe smaller. |
|
224 |
# |
|
225 |
ifeq ($(FASTDEBUG), true) |
|
2398
b0e6622ee72e
6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents:
919
diff
changeset
|
226 |
CFLAGS_DEBUG_OPTION = -g $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL)) |
b0e6622ee72e
6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents:
919
diff
changeset
|
227 |
CXXFLAGS_DEBUG_OPTION = -g0 $(CXX_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL)) |
2 | 228 |
endif |
229 |
||
12427 | 230 |
# If Full Debug Symbols is enabled, then we want the same debug and |
231 |
# optimization flags as used by FASTDEBUG. We also want all the |
|
232 |
# debug info in one place (-xs). |
|
233 |
# |
|
12876
e1e6355c440a
7174861: all/OPT jdk build on Solaris with FDS enabled sets wrong options
jonas
parents:
12853
diff
changeset
|
234 |
CFLAGS_COMMON= |
e1e6355c440a
7174861: all/OPT jdk build on Solaris with FDS enabled sets wrong options
jonas
parents:
12853
diff
changeset
|
235 |
CXXFLAGS_COMMON= |
12427 | 236 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
237 |
ifeq ($(LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS),1) |
|
238 |
ifeq ($(VARIANT), OPT) |
|
12876
e1e6355c440a
7174861: all/OPT jdk build on Solaris with FDS enabled sets wrong options
jonas
parents:
12853
diff
changeset
|
239 |
OPTIMIZATION_LEVEL = $(FASTDEBUG_OPTIMIZATION_LEVEL) |
e1e6355c440a
7174861: all/OPT jdk build on Solaris with FDS enabled sets wrong options
jonas
parents:
12853
diff
changeset
|
240 |
CFLAGS_COMMON += -g -xs |
e1e6355c440a
7174861: all/OPT jdk build on Solaris with FDS enabled sets wrong options
jonas
parents:
12853
diff
changeset
|
241 |
CXXFLAGS_COMMON += -g0 -xs |
12427 | 242 |
endif |
243 |
CFLAGS_DEBUG_OPTION += -xs |
|
244 |
CXXFLAGS_DEBUG_OPTION += -xs |
|
245 |
endif |
|
246 |
endif |
|
247 |
||
12876
e1e6355c440a
7174861: all/OPT jdk build on Solaris with FDS enabled sets wrong options
jonas
parents:
12853
diff
changeset
|
248 |
CFLAGS_COMMON += -L$(OBJDIR) |
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
249 |
|
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
250 |
# Do not allow C99 language features like declarations in code etc. |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
251 |
CFLAGS_COMMON += -xc99=%none |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
252 |
|
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
253 |
# Allow C++ comments in C code |
2 | 254 |
CFLAGS_COMMON += -xCC |
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
255 |
|
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
256 |
# Show error message tags on errors |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
257 |
CFLAGS_COMMON += -errshort=tags |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
258 |
CXXFLAGS_COMMON += -errtags=yes |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
259 |
|
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
260 |
# Optimization flags |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
261 |
CFLAGS_OPT = $(CC_OPT) |
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
262 |
|
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
263 |
# Debug version flags |
2 | 264 |
CFLAGS_DBG = $(CFLAGS_DEBUG_OPTION) |
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
265 |
|
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
266 |
# Required C compiler flags |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
267 |
CFLAGS_COMMON += -Xa $(CFLAGS_REQUIRED) |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
268 |
|
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
269 |
# Maximum warnings all the time |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
270 |
CXXFLAGS_COMMON += +w |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
271 |
CFLAGS_COMMON += -v |
2 | 272 |
|
273 |
# Assume MT behavior all the time (important) |
|
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
274 |
CXXFLAGS_COMMON += -mt |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
275 |
CFLAGS_COMMON += -mt |
2 | 276 |
|
277 |
# Assume no C++ exceptions are used |
|
278 |
CXXFLAGS_COMMON += -features=no%except -DCC_NOEX |
|
279 |
||
280 |
# For C++, these options tell it to assume nothing about locating libraries |
|
281 |
# either at compile time, or at runtime. Use of these options will likely |
|
282 |
# require the use of -L and -R options to indicate where libraries will |
|
283 |
# be found at compile time (-L) and at runtime (-R). |
|
284 |
# The /usr/lib location comes for free, so no need to specify that one. |
|
285 |
# Note: C is much simplier and there is no need for these options. This |
|
286 |
# is mostly needed to avoid dependencies on libraries in the |
|
287 |
# Compiler install area, also see LIBCXX and LIBM. |
|
288 |
CXXFLAGS_COMMON += -norunpath -xnolib |
|
289 |
||
290 |
# |
|
291 |
# Treat compiler warnings as errors, if requested |
|
292 |
# |
|
293 |
ifeq ($(COMPILER_WARNINGS_FATAL),true) |
|
294 |
CFLAGS_COMMON += -errwarn=%all |
|
295 |
CXXFLAGS_COMMON += -errwarn=%all |
|
296 |
endif |
|
297 |
||
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
298 |
CXXFLAGS_OPT = $(CXX_OPT) |
2 | 299 |
CXXFLAGS_DBG = $(CXXFLAGS_DEBUG_OPTION) |
300 |
CXXFLAGS_COMMON += $(CFLAGS_REQUIRED) |
|
301 |
||
302 |
# Add -xstrconst to the library compiles. This forces all string |
|
303 |
# literals into the read-only data section, which prevents them from |
|
304 |
# being written to and increases the runtime pages shared on the system. |
|
305 |
# |
|
306 |
ifdef LIBRARY |
|
307 |
CFLAGS_COMMON +=-xstrconst |
|
308 |
endif |
|
309 |
||
310 |
# Source browser database |
|
311 |
# |
|
312 |
# COMPILE_WITH_SB |
|
313 |
# If defined adds -xsb to compiles and creates a |
|
314 |
# source browsing database during compilation. |
|
315 |
# |
|
316 |
ifdef COMPILE_WITH_SB |
|
317 |
ifeq ($(LIBRARY), java) |
|
318 |
CFLAGS_DBG += -xsb |
|
319 |
endif |
|
320 |
endif |
|
321 |
||
322 |
# Lint Flags: |
|
323 |
# -Xa ANSI C plus K&R, favor ANSI rules |
|
324 |
# -fd report on old style func defs |
|
325 |
# -errchk=structarg report on 64bit struct args by value |
|
326 |
# -errchk=longptr64 report on 64bit to 32bit issues (ignores casts) |
|
327 |
# -errchk=parentheses report on suggested use of extra parens |
|
328 |
# -v suppress unused args |
|
329 |
# -x suppress unused externs |
|
330 |
# -u suppress extern func/vars used/defined |
|
331 |
# -errfmt=simple use one line errors with position info |
|
642
d1f02d5e4c74
6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
ohair
parents:
30
diff
changeset
|
332 |
# $(LINT_XARCH_OPTION) See Compiler-sun.gwk |
2 | 333 |
|
334 |
LINTFLAGS_COMMON = -Xa |
|
335 |
LINTFLAGS_COMMON += -fd |
|
336 |
LINTFLAGS_COMMON += -errchk=structarg,longptr64,parentheses |
|
337 |
LINTFLAGS_COMMON += -v |
|
338 |
LINTFLAGS_COMMON += -x |
|
339 |
LINTFLAGS_COMMON += -u |
|
340 |
LINTFLAGS_COMMON += -errfmt=simple |
|
341 |
LINTFLAGS_OPT = |
|
342 |
LINTFLAGS_DBG = |
|
343 |
||
344 |
# The -W0,-noglobal tells the compiler to NOT generate mangled global |
|
345 |
# ELF data symbols for file local static data. |
|
346 |
# This can break fix&continue, but we'd rather do the same compilations |
|
347 |
# for deliverable bits as we do for non-deliverable bits |
|
348 |
# Tell the compilers to never generate globalized names, all the time. |
|
349 |
CFLAGS_COMMON += -W0,-noglobal |
|
350 |
||
642
d1f02d5e4c74
6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
ohair
parents:
30
diff
changeset
|
351 |
# If we have a specific arch value to use, add it |
d1f02d5e4c74
6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
ohair
parents:
30
diff
changeset
|
352 |
CFLAGS_COMMON += $(XARCH_OPTION) |
d1f02d5e4c74
6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
ohair
parents:
30
diff
changeset
|
353 |
CXXFLAGS_COMMON += $(XARCH_OPTION) |
d1f02d5e4c74
6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
ohair
parents:
30
diff
changeset
|
354 |
ASFLAGS_COMMON += $(AS_XARCH_OPTION) |
d1f02d5e4c74
6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
ohair
parents:
30
diff
changeset
|
355 |
EXTRA_LIBS += $(XARCH_OPTION) |
d1f02d5e4c74
6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
ohair
parents:
30
diff
changeset
|
356 |
LINTFLAGS_COMMON += $(LINT_XARCH_OPTION) |
2 | 357 |
|
358 |
# |
|
359 |
# uncomment the following to build with PERTURBALOT set |
|
360 |
# |
|
361 |
# OTHER_CFLAGS += -DPERTURBALOT |
|
362 |
# |
|
363 |
||
849
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
364 |
CPPFLAGS_COMMON = -D__solaris__ -D$(ARCH_FAMILY) |
be386e469547
6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents:
715
diff
changeset
|
365 |
CPPFLAGS_OPT = -DNDEBUG |
2 | 366 |
CPPFLAGS_DBG = -DDEBUG |
367 |
||
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
368 |
ifneq ($(PRODUCT), java) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
369 |
CPPFLAGS_DBG += -DLOGGING -DDBINFO |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
370 |
endif |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
371 |
|
2 | 372 |
ifeq ($(ARCH_FAMILY), i586) |
373 |
# The macro _LITTLE_ENDIAN needs to be defined the same to avoid the |
|
374 |
# Sun C compiler warning message: warning: macro redefined: _LITTLE_ENDIAN |
|
375 |
# (The Solaris X86 system defines this in file /usr/include/sys/isa_defs.h). |
|
376 |
# Note: -Dmacro is the same as #define macro 1 |
|
377 |
# -Dmacro= is the same as #define macro |
|
378 |
# |
|
379 |
CPPFLAGS_COMMON += -DcpuIntel -D_LITTLE_ENDIAN= -D$(LIBARCH) |
|
380 |
# Turn off a superfluous compiler error message on Intel |
|
381 |
CFLAGS_COMMON += -erroff=E_BAD_PRAGMA_PACK_VALUE |
|
382 |
endif |
|
383 |
||
384 |
# Java memory management is based on memory mapping by default, but a |
|
385 |
# system only assuming malloc/free can be built by adding -DUSE_MALLOC |
|
386 |
||
387 |
CPPFLAGS_COMMON += -DTRACING -DMACRO_MEMSYS_OPS -DBREAKPTS |
|
388 |
CPPFLAGS_OPT += -DTRIMMED |
|
389 |
||
390 |
LDFLAGS_DEFS_OPTION = -z defs |
|
391 |
LDFLAGS_COMMON += $(LDFLAGS_DEFS_OPTION) |
|
392 |
||
393 |
# |
|
394 |
# -L paths for finding and -ljava |
|
395 |
# |
|
396 |
LDFLAGS_COMMON += -L$(LIBDIR)/$(LIBARCH) |
|
397 |
LDFLAGS_OPT = |
|
398 |
LDFLAGS_DBG = |
|
399 |
||
400 |
# |
|
401 |
# We never really want the incremental linker, ever |
|
402 |
# The -xildoff option tells Sun's compilers to NOT use incremental linker |
|
403 |
# |
|
404 |
LDFLAGS_COMMON += -xildoff |
|
405 |
||
406 |
ifdef LIBRARY |
|
407 |
# Libraries need to locate other libraries at runtime, and you can tell |
|
408 |
# a library where to look by way of the dynamic runpaths (RPATH or RUNPATH) |
|
409 |
# buried inside the .so. The $ORIGIN says to look relative to where |
|
410 |
# the library itself is and it can be followed with relative paths from |
|
411 |
# that. By default we always look in $ORIGIN, optionally we add relative |
|
412 |
# paths if the Makefile sets LD_RUNPATH_EXTRAS to those relative paths. |
|
413 |
# The environment variable LD_LIBRARY_PATH will over-ride these runpaths. |
|
414 |
# Try: 'dump -Lv lib*.so' to see these settings in a library. |
|
415 |
# |
|
416 |
LDFLAGS_COMMON += -R\$$ORIGIN |
|
417 |
LDFLAGS_COMMON += $(LD_RUNPATH_EXTRAS:%=-R\$$ORIGIN/%) |
|
418 |
endif |
|
419 |
||
420 |
EXTRA_LIBS += -lc |
|
421 |
||
422 |
# Postprocessing is done on the images directories only |
|
423 |
# |
|
424 |
ifeq ($(VARIANT), OPT) |
|
425 |
ifeq ($(PARTIAL_GPROF), true) |
|
426 |
NO_STRIP = true |
|
427 |
endif |
|
428 |
ifeq ($(GPROF), true) |
|
429 |
NO_STRIP = true |
|
430 |
endif |
|
431 |
ifneq ($(NO_STRIP), true) |
|
432 |
# Debug 'strip -x' leaves local function Elf symbols (better stack traces) |
|
433 |
POST_STRIP_PROCESS = $(STRIP) -x |
|
434 |
endif |
|
435 |
endif |
|
436 |
POST_MCS_PROCESS=$(MCS) -d -a "JDK $(FULL_VERSION)" |
|
437 |
||
438 |
# |
|
439 |
# Sun C compiler will take -M and pass it on to ld. |
|
440 |
# Usage: ld $(LD_MAPFILE_FLAG) mapfile *.o |
|
441 |
# |
|
442 |
ifeq ($(CC_VERSION),gcc) |
|
443 |
LD_MAPFILE_FLAG = -Xlinker -M -Xlinker |
|
444 |
else |
|
445 |
LD_MAPFILE_FLAG = -M |
|
446 |
endif |
|
447 |
||
448 |
# |
|
449 |
# Variables globally settable from the make command line (default |
|
450 |
# values in brackets): |
|
451 |
# GPROF (false) |
|
452 |
# Eg: % gnumake GPROF=true |
|
453 |
GPROF = false |
|
454 |
ifeq ($(GPROF), true) |
|
455 |
CFLAGS_COMMON += -DGPROF -xpg |
|
456 |
EXTRA_LIBS += -xpg |
|
457 |
endif |
|
458 |
||
459 |
# PARTIAL_GPROF is to be used ONLY during compilation - it should not |
|
460 |
# appear during linking of libraries or programs. It also should |
|
461 |
# prevent linking with -z defs to allow a symbol to remain undefined. |
|
462 |
# |
|
463 |
PARTIAL_GPROF = false |
|
464 |
ifeq ($(PARTIAL_GPROF), true) |
|
465 |
CFLAGS_GPROF += -xpg |
|
466 |
LDFLAGS_DEFS_OPTION = -z nodefs |
|
467 |
endif |
|
468 |
||
469 |
# |
|
470 |
# For a TCOV build we add in the TCOV_OPTION |
|
471 |
# |
|
472 |
ifdef TCOV_BUILD |
|
473 |
TCOV_OPTION = -xprofile=tcov |
|
474 |
LDFLAGS_COMMON += $(TCOV_OPTION) -Kpic |
|
475 |
CFLAGS_COMMON += $(TCOV_OPTION) |
|
476 |
CXXFLAGS_COMMON += $(TCOV_OPTION) |
|
477 |
EXTRA_LIBS += $(TCOV_OPTION) |
|
478 |
LDNOMAP=true |
|
479 |
endif |
|
480 |
||
481 |
# |
|
482 |
# Solaris only uses native threads. |
|
483 |
# |
|
484 |
THREADS_FLAG= native |
|
485 |
THREADS_DIR= threads |
|
486 |
||
487 |
# |
|
488 |
# Support for Quantify. |
|
489 |
# |
|
490 |
ifdef QUANTIFY |
|
491 |
QUANTIFY_CMD = quantify |
|
492 |
QUANTIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes |
|
493 |
LINK_PRE_CMD = $(QUANTIFY_CMD) $(QUANTIFY_OPTIONS) |
|
494 |
ifdef LIBRARY |
|
495 |
CFLAGS_COMMON += -K PIC |
|
496 |
endif |
|
497 |
endif |
|
498 |
||
499 |
# |
|
500 |
# Support for Purify. |
|
501 |
# |
|
502 |
ifdef PURIFY |
|
503 |
PURIFY_CMD = /net/suntools.eng/export/tools/sparc/bin/purify |
|
504 |
PURIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes |
|
505 |
LINK_PRE_CMD = $(PURIFY_CMD) $(PURIFY_OPTIONS) |
|
506 |
ifdef LIBRARY |
|
507 |
CFLAGS_COMMON += -K PIC |
|
508 |
endif |
|
509 |
endif |
|
510 |
||
511 |
# |
|
512 |
# Different "levels" of optimization. |
|
513 |
# |
|
514 |
ifeq ($(CC_VERSION),gcc) |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
515 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
516 |
CC_OPT/NONE = |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
517 |
CC_OPT/LOWER = -O2 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
518 |
CC_OPT/HIGHER = -O3 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
519 |
CC_OPT/HIGHEST = -O3 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
520 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
521 |
CXX_OPT/NONE = |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
522 |
CXX_OPT/LOWER = -O2 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
523 |
CXX_OPT/HIGHER = -O3 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
524 |
CXX_OPT/HIGHEST = -O3 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
525 |
|
2 | 526 |
CFLAGS_REQUIRED_i586 += -fno-omit-frame-pointer |
527 |
CFLAGS_REQUIRED_amd64 += -fno-omit-frame-pointer |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
528 |
|
2 | 529 |
# Automatic precompiled header option to use (if COMPILE_APPROACH=batch) |
530 |
# (See Rules.gmk) May need to wait for gcc 5? |
|
531 |
AUTOMATIC_PCH_OPTION = |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
532 |
|
2 | 533 |
else |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
534 |
|
2 | 535 |
# Highest could be -xO5, but indications are that -xO5 should be reserved |
536 |
# for a per-file use, on sources with known performance impacts. |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
537 |
OPT_LEVEL/LOWER = 2 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
538 |
OPT_LEVEL/HIGHER = 4 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
539 |
OPT_LEVEL/HIGHEST = 4 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
540 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
541 |
CC_OPT/NONE = |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
542 |
CC_OPT/LOWER = $(OPT_LEVEL/LOWER:%=-xO%) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
543 |
CC_OPT/HIGHER = $(OPT_LEVEL/HIGHER:%=-xO%) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
544 |
CC_OPT/HIGHEST = $(OPT_LEVEL/HIGHEST:%=-xO%) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
545 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
546 |
CXX_OPT/NONE = |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
547 |
CXX_OPT/LOWER = $(OPT_LEVEL/LOWER:%=-xO%) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
548 |
CXX_OPT/HIGHER = $(OPT_LEVEL/HIGHER:%=-xO%) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
549 |
CXX_OPT/HIGHEST = $(OPT_LEVEL/HIGHEST:%=-xO%) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
550 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
551 |
# We need stack frames at all times |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
552 |
USE_XKEEPFRAME_OPTION = false |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
553 |
ifeq ($(USE_XKEEPFRAME_OPTION),true) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
554 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
555 |
# Unknown spelling on this option at this time (Maybe in SS13?) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
556 |
CC_XKEEPFRAME_OPTIONS = -xkeepframe |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
557 |
CXX_XKEEPFRAME_OPTIONS = -xkeepframe |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
558 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
559 |
else |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
560 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
561 |
# On X86, make sure tail call optimization is off |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
562 |
# The z and y are the tail call optimizations. |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
563 |
ifeq ($(ARCH_FAMILY), i586) |
9350
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
564 |
CC_NEWER_THAN_58 := \ |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
565 |
$(shell $(EXPR) $(CC_MAJORVER) \> 5 \| \ |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
566 |
\( $(CC_MAJORVER) = 5 \& $(CC_MINORVER) \> 8 \) ) |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
567 |
ifeq ($(CC_NEWER_THAN_58),1) |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
568 |
# Somehow, tail call optimization is creeping in. |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
569 |
# Make sure it is off. |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
570 |
# WARNING: These may cause compiler warnings about duplicate -O options |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
571 |
CC_XKEEPFRAME_OPTIONS += -Wu,-O$(OPT_LEVEL/$(OPTIMIZATION_LEVEL))~yz |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
572 |
CXX_XKEEPFRAME_OPTIONS += -Qoption ube -O$(OPT_LEVEL/$(OPTIMIZATION_LEVEL))~yz |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
573 |
endif |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
574 |
endif |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
575 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
576 |
# On i586 we need to tell the code generator to ALWAYS use a |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
577 |
# frame pointer. |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
578 |
ifeq ($(ARCH_FAMILY), i586) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
579 |
# Note that in 5.7, this is done with -xregs=no%frameptr |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
580 |
ifeq ($(CC_VER), 5.5) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
581 |
# It's not exactly clear when this optimization kicks in, the |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
582 |
# current assumption is -xO4 or greater and for C++ with |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
583 |
# the -features=no%except option and -xO4 and greater. |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
584 |
# Bottom line is, we ALWAYS want a frame pointer! |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
585 |
CC_XKEEPFRAME_OPTIONS += -Wu,-Z~B |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
586 |
CXX_XKEEPFRAME_OPTIONS += -Qoption ube -Z~B |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
587 |
endif |
7485
e9e65ce0013a
6980281: SWAT: SwingSet2 got core dumped in Solaris-AMD64 using b107 swat build
bae
parents:
5801
diff
changeset
|
588 |
|
9350
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
589 |
CC_NEWER_THAN_56 := \ |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
590 |
$(shell $(EXPR) $(CC_MAJORVER) \> 5 \| \ |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
591 |
\( $(CC_MAJORVER) = 5 \& $(CC_MINORVER) \> 6 \) ) |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
592 |
ifeq ($(CC_NEWER_THAN_56),1) |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
593 |
# Do NOT use frame pointer register as a general purpose opt register |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
594 |
CC_OPT/NONE += -xregs=no%frameptr |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
595 |
CXX_OPT/NONE += -xregs=no%frameptr |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
596 |
CC_XKEEPFRAME_OPTIONS += -xregs=no%frameptr |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
597 |
CXX_XKEEPFRAME_OPTIONS += -xregs=no%frameptr |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
598 |
endif |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
599 |
endif |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
600 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
601 |
# Optimizer for sparc needs to be told not to do certain things |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
602 |
# related to frames or save instructions. |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
603 |
ifeq ($(ARCH_FAMILY), sparc) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
604 |
# Do not use save instructions instead of add instructions |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
605 |
# This was an optimization starting in SC5.0 that made it hard for us to |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
606 |
# find the "save" instruction (which got turned into an "add") |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
607 |
CC_XKEEPFRAME_OPTIONS += -Wc,-Qrm-s |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
608 |
CXX_XKEEPFRAME_OPTIONS += -Qoption cg -Qrm-s |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
609 |
# Don't allow tail call code optimization. Started in SC5.0. |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
610 |
# We don't like code of this form: |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
611 |
# save |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
612 |
# <code> |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
613 |
# call foo |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
614 |
# restore |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
615 |
# because we can't tell if the method will have a stack frame |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
616 |
# and register windows or not. |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
617 |
CC_XKEEPFRAME_OPTIONS += -Wc,-Qiselect-T0 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
618 |
CXX_XKEEPFRAME_OPTIONS += -Qoption cg -Qiselect-T0 |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
619 |
endif |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
620 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
621 |
endif |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
622 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
623 |
# Extra options used with HIGHEST |
2 | 624 |
# |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
625 |
# WARNING: Use of OPTIMIZATION_LEVEL=HIGHEST in your Makefile needs to be |
2 | 626 |
# done with care, there are some assumptions below that need to |
627 |
# be understood about the use of pointers, and IEEE behavior. |
|
628 |
# |
|
629 |
# Use non-standard floating point mode (not IEEE 754) |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
630 |
CC_HIGHEST_EXTRAS += -fns |
2 | 631 |
# Do some simplification of floating point arithmetic (not IEEE 754) |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
632 |
CC_HIGHEST_EXTRAS += -fsimple |
2 | 633 |
# Use single precision floating point with 'float' |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
634 |
CC_HIGHEST_EXTRAS += -fsingle |
2 | 635 |
# Assume memory references via basic pointer types do not alias |
636 |
# (Source with excessing pointer casting and data access with mixed |
|
637 |
# pointer types are not recommended) |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
638 |
CC_HIGHEST_EXTRAS += -xalias_level=basic |
2 | 639 |
# Use intrinsic or inline versions for math/std functions |
640 |
# (If you expect perfect errno behavior, do not use this) |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
641 |
CC_HIGHEST_EXTRAS += -xbuiltin=%all |
2 | 642 |
# Loop data dependency optimizations (need -xO3 or higher) |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
643 |
CC_HIGHEST_EXTRAS += -xdepend |
2 | 644 |
# Pointer parameters to functions do not overlap |
645 |
# (Similar to -xalias_level=basic usage, but less obvious sometimes. |
|
646 |
# If you pass in multiple pointers to the same data, do not use this) |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
647 |
CC_HIGHEST_EXTRAS += -xrestrict |
2 | 648 |
# Inline some library routines |
649 |
# (If you expect perfect errno behavior, do not use this) |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
650 |
CC_HIGHEST_EXTRAS += -xlibmil |
2 | 651 |
# Use optimized math routines |
652 |
# (If you expect perfect errno behavior, do not use this) |
|
653 |
# Can cause undefined external on Solaris 8 X86 on __sincos, removing for now |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
654 |
# CC_HIGHEST_EXTRAS += -xlibmopt |
2 | 655 |
ifeq ($(ARCH_FAMILY), sparc) |
656 |
# Assume at most 8byte alignment, raise SIGBUS on error |
|
657 |
### Presents an ABI issue with customer JNI libs? |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
658 |
####CC_HIGHEST_EXTRAS += -xmemalign=8s |
2 | 659 |
# Automatic prefetch instructions, explicit prefetch macros |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
660 |
CC_HIGHEST_EXTRAS += -xprefetch=auto,explicit |
2 | 661 |
# Pick ultra as the chip to optimize to |
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
662 |
CC_HIGHEST_EXTRAS += -xchip=ultra |
2 | 663 |
endif |
664 |
ifeq ($(ARCH), i586) |
|
665 |
# Pick pentium as the chip to optimize to |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
666 |
CC_HIGHEST_EXTRAS += -xchip=pentium |
2 | 667 |
endif |
668 |
ifdef LIBRARY |
|
669 |
# The Solaris CBE (Common Build Environment) requires that the use |
|
670 |
# of appl registers be disabled when compiling a public library (or |
|
671 |
# a library that's loaded by a public library) on sparc. |
|
672 |
CFLAGS_REQUIRED_sparc += -xregs=no%appl |
|
673 |
CFLAGS_REQUIRED_sparcv9 += -xregs=no%appl |
|
674 |
endif |
|
9350
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
675 |
CC_NEWER_THAN_56 := \ |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
676 |
$(shell $(EXPR) $(CC_MAJORVER) \> 5 \| \ |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
677 |
\( $(CC_MAJORVER) = 5 \& $(CC_MINORVER) \> 6 \) ) |
799e0bb89242
7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents:
9035
diff
changeset
|
678 |
ifeq ($(CC_NEWER_THAN_56),1) |
2 | 679 |
# Presents an ABI issue with customer JNI libs? We must be able to |
680 |
# to handle 4byte aligned objects? (rare occurance, but possible?) |
|
681 |
CFLAGS_REQUIRED_sparc += -xmemalign=4s |
|
682 |
endif |
|
683 |
# Just incase someone trys to use the SOS9 compilers |
|
684 |
ifeq ($(CC_VER), 5.6) |
|
685 |
# We MUST allow data alignment of 4 for sparc (sparcv9 is ok at 8s) |
|
686 |
CFLAGS_REQUIRED_sparc += -xmemalign=4s |
|
687 |
endif |
|
688 |
# Automatic precompiled header option to use (if COMPILE_APPROACH=batch) |
|
689 |
# (See Rules.gmk) The SS11 -xpch=auto* options appear to be broken. |
|
690 |
AUTOMATIC_PCH_OPTION = |
|
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
691 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
692 |
# Add in keep frame options |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
693 |
CC_OPT/LOWER += $(CC_XKEEPFRAME_OPTIONS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
694 |
CC_OPT/HIGHER += $(CC_XKEEPFRAME_OPTIONS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
695 |
CC_OPT/HIGHEST += $(CC_XKEEPFRAME_OPTIONS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
696 |
CXX_OPT/LOWER += $(CXX_XKEEPFRAME_OPTIONS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
697 |
CXX_OPT/HIGHER += $(CXX_XKEEPFRAME_OPTIONS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
698 |
CXX_OPT/HIGHEST += $(CXX_XKEEPFRAME_OPTIONS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
699 |
|
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
700 |
# Add in highest optimization settings |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
701 |
CC_OPT/HIGHEST += $(CC_HIGHEST_EXTRAS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
702 |
CXX_OPT/HIGHEST += $(CC_HIGHEST_EXTRAS) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
703 |
|
2 | 704 |
endif |
705 |
||
917
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
706 |
# Default optimization settings based on level. |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
707 |
CC_OPT = $(CC_OPT/$(OPTIMIZATION_LEVEL)) |
75261da60fff
6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents:
715
diff
changeset
|
708 |
CXX_OPT = $(CXX_OPT/$(OPTIMIZATION_LEVEL)) |
2 | 709 |
|
710 |
# Flags required all the time |
|
711 |
CFLAGS_REQUIRED = $(CFLAGS_REQUIRED_$(ARCH)) |
|
712 |
||
713 |
# |
|
714 |
# Path and option to link against the VM, if you have to. Note that |
|
715 |
# there are libraries that link against only -ljava, but they do get |
|
716 |
# -L to the -ljvm, this is because -ljava depends on -ljvm, whereas |
|
717 |
# the library itself should not. |
|
718 |
# |
|
719 |
VM_NAME = server |
|
720 |
JVMLIB = -L$(LIBDIR)/$(LIBARCH)/$(VM_NAME) -ljvm |
|
721 |
JAVALIB = -ljava $(JVMLIB) |
|
722 |
||
723 |
# Part of INCREMENTAL_BUILD mechanism. |
|
724 |
# Compiler emits things like: path/file.o: file.h |
|
725 |
# We want something like: relative_path/file.o relative_path/file.d: file.h |
|
726 |
# In addition on Solaris, any include file starting with / is deleted, |
|
727 |
# this gets rid of things like /usr/include files, which never change. |
|
728 |
CC_DEPEND = -xM1 |
|
729 |
CC_DEPEND_FILTER = $(SED) -e '/:[ ]*[/]/d' -e 's!$*\.$(OBJECT_SUFFIX)!$(dir $@)& $(dir $@)$*.$(DEPEND_SUFFIX)!g' | $(SORT) -u |
|
730 |
||
731 |
# Location of openwin libraries (do we really need this anymore?) |
|
732 |
OPENWIN_HOME = /usr/openwin |
|
733 |
OPENWIN_LIB = $(OPENWIN_HOME)/lib$(ISA_DIR) |
|
734 |
||
735 |
# Runtime graphics library search paths... |
|
736 |
OPENWIN_RUNTIME_LIB = /usr/openwin/lib$(ISA_DIR) |
|
737 |
AWT_RUNPATH = -R/usr/dt/lib$(ISA_DIR) -R$(OPENWIN_RUNTIME_LIB) |
|
738 |
||
739 |
# C++ Runtime library (libCrun.so), use instead of -lCrun. |
|
740 |
# Originally used instead of -lCrun to guarantee use of the system |
|
741 |
# .so version and not the .a or .so that came with the compilers. |
|
742 |
# With the newer compilers this could probably change back to -lCrun but |
|
743 |
# in general this is ok to continue to do. |
|
744 |
LIBCXX = /usr/lib$(ISA_DIR)/libCrun.so.1 |
|
745 |
||
5579
1a5e995a710b
6307603: [X11] Use RENDER extension for complex operations done in software
ceisserer
parents:
2398
diff
changeset
|
746 |
# JDK now requires Solaris 10, so pick up libm.so.2 |
1a5e995a710b
6307603: [X11] Use RENDER extension for complex operations done in software
ceisserer
parents:
2398
diff
changeset
|
747 |
LIBM = /usr/lib$(ISA_DIR)/libm.so.2 |
2 | 748 |
|
749 |
# Socket library |
|
750 |
LIBSOCKET = -lsocket |
|
751 |
||
5780 | 752 |
# Network Services library |
753 |
LIBNSL = -lnsl |
|
754 |
||
10700
31c24f40f614
7092679: (tz) Java getting wrong timezone/DST info on Solaris 11
okutsu
parents:
10603
diff
changeset
|
755 |
# service configuration facility library |
31c24f40f614
7092679: (tz) Java getting wrong timezone/DST info on Solaris 11
okutsu
parents:
10603
diff
changeset
|
756 |
LIBSCF = -lscf |
31c24f40f614
7092679: (tz) Java getting wrong timezone/DST info on Solaris 11
okutsu
parents:
10603
diff
changeset
|
757 |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11369
diff
changeset
|
758 |
# Dynamic Loading library |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11369
diff
changeset
|
759 |
LIBDL = -ldl |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
11369
diff
changeset
|
760 |
|
2 | 761 |
# GLOBAL_KPIC: If set means all libraries are PIC, position independent code |
762 |
# EXCEPT for select compiles |
|
763 |
# If a .o file is compiled non-PIC then it should be forced |
|
764 |
# into the RW data segment with a mapfile option. This is done |
|
765 |
# with object files which generated from .s files. |
|
766 |
# The -ztext enforces that no relocations remain in the text segment |
|
767 |
# so that it remains purely read-only for optimum system performance. |
|
768 |
# Some libraries may use a smaller size (13bit -Kpic) on sparc instead of |
|
769 |
# (32 bit -KPIC) and will override GLOBAL_KPIC appropriately. |
|
770 |
# |
|
771 |
PIC_CODE_LARGE = -KPIC |
|
772 |
PIC_CODE_SMALL = -Kpic |
|
773 |
ifndef TCOV_BUILD |
|
774 |
GLOBAL_KPIC = $(PIC_CODE_LARGE) |
|
775 |
CXXFLAGS_COMMON += $(GLOBAL_KPIC) |
|
776 |
CFLAGS_COMMON += $(GLOBAL_KPIC) |
|
777 |
LDFLAGS_COMMON += -ztext |
|
778 |
endif # TCOV_BUILD |
|
779 |
||
780 |
# If your platform has DPS, it will have Type1 fonts too, in which case |
|
781 |
# it is best to enable DPS support until such time as 2D's rasteriser |
|
782 |
# can fully handle Type1 fonts in all cases. Default is "yes". |
|
783 |
# HAVE_DPS should only be "no" if the platform has no DPS headers or libs |
|
784 |
# DPS (Displayable PostScript) is available on Solaris machines |
|
785 |
||
786 |
HAVE_DPS = yes |
|
787 |
||
788 |
# |
|
789 |
# Japanese manpages |
|
790 |
# |
|
791 |
JA_SOURCE_ENCODING = eucJP |
|
792 |
JA_TARGET_ENCODINGS = eucJP UTF-8 PCK |
|
793 |
||
794 |
# Settings for the JDI - Serviceability Agent binding. |
|
795 |
HOTSPOT_SALIB_PATH = $(HOTSPOT_IMPORT_PATH)/jre/lib/$(LIBARCH) |
|
796 |
SALIB_NAME = $(LIB_PREFIX)saproc.$(LIBRARY_SUFFIX) |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9350
diff
changeset
|
797 |
SA_DEBUGINFO_NAME = $(LIB_PREFIX)saproc.debuginfo |
12293
6c4b13381b81
7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents:
12047
diff
changeset
|
798 |
SA_DIZ_NAME = $(LIB_PREFIX)saproc.diz |
2 | 799 |
INCLUDE_SA=true |
800 |