author | manc |
Fri, 08 Mar 2019 18:21:52 -0800 | |
changeset 54646 | 5b1eec609909 |
parent 54490 | bf07e140c49c |
child 54711 | 297ddf282627 |
permissions | -rw-r--r-- |
49120 | 1 |
# |
54490
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
2 |
# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved. |
49120 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
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 |
# |
|
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. |
|
24 |
# |
|
25 |
||
26 |
################################################################################ |
|
27 |
# |
|
28 |
# Setup flags for C/C++ compiler |
|
29 |
# |
|
30 |
||
31 |
############################################################################### |
|
32 |
# |
|
33 |
# How to compile shared libraries. |
|
34 |
# |
|
35 |
AC_DEFUN([FLAGS_SETUP_SHARED_LIBS], |
|
36 |
[ |
|
37 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
38 |
C_FLAG_REORDER='' |
|
39 |
||
40 |
# Default works for linux, might work on other platforms as well. |
|
41 |
SHARED_LIBRARY_FLAGS='-shared' |
|
42 |
SET_EXECUTABLE_ORIGIN='-Wl,-rpath,\$$ORIGIN[$]1' |
|
43 |
SET_SHARED_LIBRARY_ORIGIN="-Wl,-z,origin $SET_EXECUTABLE_ORIGIN" |
|
44 |
SET_SHARED_LIBRARY_NAME='-Wl,-soname=[$]1' |
|
45 |
SET_SHARED_LIBRARY_MAPFILE='-Wl,-version-script=[$]1' |
|
46 |
||
47 |
elif test "x$TOOLCHAIN_TYPE" = xclang; then |
|
48 |
C_FLAG_REORDER='' |
|
49 |
||
50 |
if test "x$OPENJDK_TARGET_OS" = xmacosx; then |
|
51 |
# Linking is different on MacOSX |
|
52 |
SHARED_LIBRARY_FLAGS="-dynamiclib -compatibility_version 1.0.0 -current_version 1.0.0" |
|
53 |
SET_EXECUTABLE_ORIGIN='-Wl,-rpath,@loader_path$(or [$]1,/.)' |
|
54 |
SET_SHARED_LIBRARY_ORIGIN="$SET_EXECUTABLE_ORIGIN" |
|
55 |
SET_SHARED_LIBRARY_NAME='-Wl,-install_name,@rpath/[$]1' |
|
56 |
SET_SHARED_LIBRARY_MAPFILE='-Wl,-exported_symbols_list,[$]1' |
|
57 |
||
58 |
else |
|
59 |
# Default works for linux, might work on other platforms as well. |
|
60 |
SHARED_LIBRARY_FLAGS='-shared' |
|
61 |
SET_EXECUTABLE_ORIGIN='-Wl,-rpath,\$$ORIGIN[$]1' |
|
62 |
SET_SHARED_LIBRARY_NAME='-Wl,-soname=[$]1' |
|
63 |
SET_SHARED_LIBRARY_MAPFILE='-Wl,-version-script=[$]1' |
|
64 |
||
65 |
# arm specific settings |
|
66 |
if test "x$OPENJDK_TARGET_CPU" = "xarm"; then |
|
67 |
# '-Wl,-z,origin' isn't used on arm. |
|
68 |
SET_SHARED_LIBRARY_ORIGIN='-Wl,-rpath,\$$$$ORIGIN[$]1' |
|
69 |
else |
|
70 |
SET_SHARED_LIBRARY_ORIGIN="-Wl,-z,origin $SET_EXECUTABLE_ORIGIN" |
|
71 |
fi |
|
72 |
fi |
|
73 |
||
74 |
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
75 |
C_FLAG_REORDER='-xF' |
|
76 |
SHARED_LIBRARY_FLAGS="-G" |
|
77 |
SET_EXECUTABLE_ORIGIN='-R\$$ORIGIN[$]1' |
|
78 |
SET_SHARED_LIBRARY_ORIGIN="$SET_EXECUTABLE_ORIGIN" |
|
79 |
SET_SHARED_LIBRARY_NAME='-h [$]1' |
|
80 |
SET_SHARED_LIBRARY_MAPFILE='-M[$]1' |
|
81 |
||
82 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
|
83 |
C_FLAG_REORDER='' |
|
84 |
SHARED_LIBRARY_FLAGS="-qmkshrobj -bM:SRE -bnoentry" |
|
85 |
SET_EXECUTABLE_ORIGIN="" |
|
86 |
SET_SHARED_LIBRARY_ORIGIN='' |
|
87 |
SET_SHARED_LIBRARY_NAME='' |
|
88 |
SET_SHARED_LIBRARY_MAPFILE='' |
|
89 |
||
90 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
|
91 |
C_FLAG_REORDER='' |
|
92 |
SHARED_LIBRARY_FLAGS="-dll" |
|
93 |
SET_EXECUTABLE_ORIGIN='' |
|
94 |
SET_SHARED_LIBRARY_ORIGIN='' |
|
95 |
SET_SHARED_LIBRARY_NAME='' |
|
96 |
SET_SHARED_LIBRARY_MAPFILE='-def:[$]1' |
|
97 |
fi |
|
98 |
||
99 |
AC_SUBST(C_FLAG_REORDER) |
|
100 |
AC_SUBST(SET_EXECUTABLE_ORIGIN) |
|
101 |
AC_SUBST(SET_SHARED_LIBRARY_ORIGIN) |
|
102 |
AC_SUBST(SET_SHARED_LIBRARY_NAME) |
|
103 |
AC_SUBST(SET_SHARED_LIBRARY_MAPFILE) |
|
104 |
AC_SUBST(SHARED_LIBRARY_FLAGS) |
|
105 |
]) |
|
106 |
||
107 |
AC_DEFUN([FLAGS_SETUP_DEBUG_SYMBOLS], |
|
108 |
[ |
|
51095 | 109 |
# By default don't set any specific assembler debug |
110 |
# info flags for toolchains unless we know they work. |
|
111 |
# See JDK-8207057. |
|
112 |
ASFLAGS_DEBUG_SYMBOLS="" |
|
49120 | 113 |
# Debug symbols |
114 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
49156
6aaf3aef2d67
8199331: Don't limit debug information for fastdebug JDK native libraries
ihse
parents:
49155
diff
changeset
|
115 |
CFLAGS_DEBUG_SYMBOLS="-g" |
51095 | 116 |
ASFLAGS_DEBUG_SYMBOLS="-g" |
49120 | 117 |
elif test "x$TOOLCHAIN_TYPE" = xclang; then |
118 |
CFLAGS_DEBUG_SYMBOLS="-g" |
|
51095 | 119 |
ASFLAGS_DEBUG_SYMBOLS="-g" |
49120 | 120 |
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
121 |
# -g0 enables debug symbols without disabling inlining. |
|
49155
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
122 |
CFLAGS_DEBUG_SYMBOLS="-g0 -xs" |
49120 | 123 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
53837
b3f6ffbedd68
8218965: aix: support xlclang++ in the compiler detection
mbaesken
parents:
53643
diff
changeset
|
124 |
if test "x$XLC_USES_CLANG" = xtrue; then |
b3f6ffbedd68
8218965: aix: support xlclang++ in the compiler detection
mbaesken
parents:
53643
diff
changeset
|
125 |
CFLAGS_DEBUG_SYMBOLS="-g1" |
b3f6ffbedd68
8218965: aix: support xlclang++ in the compiler detection
mbaesken
parents:
53643
diff
changeset
|
126 |
else |
b3f6ffbedd68
8218965: aix: support xlclang++ in the compiler detection
mbaesken
parents:
53643
diff
changeset
|
127 |
CFLAGS_DEBUG_SYMBOLS="-g" |
b3f6ffbedd68
8218965: aix: support xlclang++ in the compiler detection
mbaesken
parents:
53643
diff
changeset
|
128 |
fi |
49120 | 129 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
49160
cefb7b496d17
8199347: Always use -Z7 for debug symbols when compiling on Windows
ihse
parents:
49156
diff
changeset
|
130 |
CFLAGS_DEBUG_SYMBOLS="-Z7 -d2Zi+" |
49120 | 131 |
fi |
132 |
||
133 |
AC_SUBST(CFLAGS_DEBUG_SYMBOLS) |
|
51095 | 134 |
AC_SUBST(ASFLAGS_DEBUG_SYMBOLS) |
49120 | 135 |
]) |
136 |
||
137 |
AC_DEFUN([FLAGS_SETUP_WARNINGS], |
|
138 |
[ |
|
139 |
AC_ARG_ENABLE([warnings-as-errors], [AS_HELP_STRING([--disable-warnings-as-errors], |
|
140 |
[do not consider native warnings to be an error @<:@enabled@:>@])]) |
|
141 |
||
49907
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
142 |
# Set default value. |
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
143 |
if test "x$TOOLCHAIN_TYPE" = xxlc; then |
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
144 |
WARNINGS_AS_ERRORS=false |
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
145 |
else |
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
146 |
WARNINGS_AS_ERRORS=true |
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
147 |
fi |
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
148 |
|
49120 | 149 |
AC_MSG_CHECKING([if native warnings are errors]) |
150 |
if test "x$enable_warnings_as_errors" = "xyes"; then |
|
151 |
AC_MSG_RESULT([yes (explicitly set)]) |
|
152 |
WARNINGS_AS_ERRORS=true |
|
153 |
elif test "x$enable_warnings_as_errors" = "xno"; then |
|
49907
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
154 |
AC_MSG_RESULT([no (explicitly set)]) |
49120 | 155 |
WARNINGS_AS_ERRORS=false |
156 |
elif test "x$enable_warnings_as_errors" = "x"; then |
|
49907
1ca3406a2101
8202325: [aix] disable warnings-as-errors by default
stuefe
parents:
49726
diff
changeset
|
157 |
AC_MSG_RESULT([${WARNINGS_AS_ERRORS} (default)]) |
49120 | 158 |
else |
159 |
AC_MSG_ERROR([--enable-warnings-as-errors accepts no argument]) |
|
160 |
fi |
|
161 |
||
162 |
AC_SUBST(WARNINGS_AS_ERRORS) |
|
163 |
||
164 |
case "${TOOLCHAIN_TYPE}" in |
|
165 |
microsoft) |
|
166 |
DISABLE_WARNING_PREFIX="-wd" |
|
167 |
CFLAGS_WARNINGS_ARE_ERRORS="-WX" |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
168 |
|
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
169 |
WARNINGS_ENABLE_ALL="-W3" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
170 |
DISABLED_WARNINGS="4800" |
49120 | 171 |
;; |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
172 |
|
49120 | 173 |
solstudio) |
174 |
DISABLE_WARNING_PREFIX="-erroff=" |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
175 |
CFLAGS_WARNINGS_ARE_ERRORS="-errwarn=%all" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
176 |
|
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
177 |
WARNINGS_ENABLE_ALL_CFLAGS="-v" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
178 |
WARNINGS_ENABLE_ALL_CXXFLAGS="+w" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
179 |
|
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
180 |
DISABLED_WARNINGS_C="" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
181 |
DISABLED_WARNINGS_CXX="" |
49120 | 182 |
;; |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
183 |
|
49120 | 184 |
gcc) |
49200 | 185 |
DISABLE_WARNING_PREFIX="-Wno-" |
49120 | 186 |
CFLAGS_WARNINGS_ARE_ERRORS="-Werror" |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
187 |
|
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
188 |
# Additional warnings that are not activated by -Wall and -Wextra |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
189 |
WARNINGS_ENABLE_ADDITIONAL="-Wpointer-arith -Wsign-compare \ |
53174 | 190 |
-Wunused-function -Wundef -Wunused-value -Wreturn-type \ |
191 |
-Wtrampolines" |
|
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
192 |
WARNINGS_ENABLE_ADDITIONAL_CXX="-Woverloaded-virtual -Wreorder" |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
193 |
WARNINGS_ENABLE_ALL_CFLAGS="-Wall -Wextra -Wformat=2 $WARNINGS_ENABLE_ADDITIONAL" |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
194 |
WARNINGS_ENABLE_ALL_CXXFLAGS="$WARNINGS_ENABLE_ALL_CFLAGS $WARNINGS_ENABLE_ADDITIONAL_CXX" |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
195 |
|
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
196 |
DISABLED_WARNINGS="unused-parameter unused" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
197 |
|
49120 | 198 |
# Repeate the check for the BUILD_CC and BUILD_CXX. Need to also reset |
199 |
# CFLAGS since any target specific flags will likely not work with the |
|
200 |
# build compiler |
|
201 |
CC_OLD="$CC" |
|
202 |
CXX_OLD="$CXX" |
|
203 |
CC="$BUILD_CC" |
|
204 |
CXX="$BUILD_CXX" |
|
205 |
CFLAGS_OLD="$CFLAGS" |
|
206 |
CFLAGS="" |
|
49200 | 207 |
BUILD_CC_DISABLE_WARNING_PREFIX="-Wno-" |
49120 | 208 |
CC="$CC_OLD" |
209 |
CXX="$CXX_OLD" |
|
210 |
CFLAGS="$CFLAGS_OLD" |
|
211 |
;; |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
212 |
|
49120 | 213 |
clang) |
214 |
DISABLE_WARNING_PREFIX="-Wno-" |
|
215 |
CFLAGS_WARNINGS_ARE_ERRORS="-Werror" |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
216 |
|
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
217 |
# Additional warnings that are not activated by -Wall and -Wextra |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
218 |
WARNINGS_ENABLE_ADDITIONAL="-Wpointer-arith -Wsign-compare -Wreorder \ |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
219 |
-Wunused-function -Wundef -Wunused-value -Woverloaded-virtual" |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
220 |
WARNINGS_ENABLE_ALL="-Wall -Wextra -Wformat=2 $WARNINGS_ENABLE_ADDITIONAL" |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
221 |
|
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
222 |
DISABLED_WARNINGS="unused-parameter unused" |
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
223 |
|
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
224 |
if test "x$OPENJDK_TARGET_OS" = xmacosx; then |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
225 |
# missing-method-return-type triggers in JavaNativeFoundation framework |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
226 |
DISABLED_WARNINGS="$DISABLED_WARNINGS missing-method-return-type" |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
227 |
fi |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
228 |
|
49120 | 229 |
;; |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
230 |
|
49120 | 231 |
xlc) |
232 |
DISABLE_WARNING_PREFIX="-qsuppress=" |
|
233 |
CFLAGS_WARNINGS_ARE_ERRORS="-qhalt=w" |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
234 |
|
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
235 |
# Possibly a better subset than "all" is "lan:trx:ret:zea:cmp:ret" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
236 |
WARNINGS_ENABLE_ALL="-qinfo=all -qformat=all" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
237 |
DISABLED_WARNINGS="" |
49120 | 238 |
;; |
239 |
esac |
|
240 |
AC_SUBST(DISABLE_WARNING_PREFIX) |
|
241 |
AC_SUBST(BUILD_CC_DISABLE_WARNING_PREFIX) |
|
242 |
AC_SUBST(CFLAGS_WARNINGS_ARE_ERRORS) |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
243 |
AC_SUBST(DISABLED_WARNINGS) |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
244 |
AC_SUBST(DISABLED_WARNINGS_C) |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
245 |
AC_SUBST(DISABLED_WARNINGS_CXX) |
49120 | 246 |
]) |
247 |
||
248 |
AC_DEFUN([FLAGS_SETUP_QUALITY_CHECKS], |
|
249 |
[ |
|
250 |
# bounds, memory and behavior checking options |
|
251 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
252 |
case $DEBUG_LEVEL in |
|
253 |
release ) |
|
254 |
# no adjustment |
|
255 |
;; |
|
256 |
fastdebug ) |
|
257 |
# no adjustment |
|
258 |
;; |
|
259 |
slowdebug ) |
|
260 |
# FIXME: By adding this to C(XX)FLAGS_DEBUG_OPTIONS/JVM_CFLAGS_SYMBOLS it |
|
261 |
# get's added conditionally on whether we produce debug symbols or not. |
|
262 |
# This is most likely not really correct. |
|
263 |
||
264 |
# Add runtime stack smashing and undefined behavior checks. |
|
49200 | 265 |
CFLAGS_DEBUG_OPTIONS="-fstack-protector-all --param ssp-buffer-size=1" |
266 |
CXXFLAGS_DEBUG_OPTIONS="-fstack-protector-all --param ssp-buffer-size=1" |
|
49120 | 267 |
|
49200 | 268 |
JVM_CFLAGS_SYMBOLS="$JVM_CFLAGS_SYMBOLS -fstack-protector-all --param ssp-buffer-size=1" |
49120 | 269 |
;; |
270 |
esac |
|
271 |
fi |
|
272 |
]) |
|
273 |
||
274 |
AC_DEFUN([FLAGS_SETUP_OPTIMIZATION], |
|
275 |
[ |
|
276 |
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
277 |
CC_HIGHEST="-fns -fsimple -fsingle -xbuiltin=%all -xdepend -xrestrict -xlibmil" |
|
278 |
||
279 |
C_O_FLAG_HIGHEST_JVM="-xO4" |
|
280 |
C_O_FLAG_DEBUG_JVM="" |
|
281 |
C_O_FLAG_SIZE="" |
|
282 |
C_O_FLAG_DEBUG="" |
|
283 |
C_O_FLAG_NONE="" |
|
284 |
if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86"; then |
|
285 |
C_O_FLAG_HIGHEST="-xO4 -Wu,-O4~yz $CC_HIGHEST" |
|
286 |
C_O_FLAG_HI="-xO4 -Wu,-O4~yz" |
|
287 |
C_O_FLAG_NORM="-xO2 -Wu,-O2~yz" |
|
288 |
elif test "x$OPENJDK_TARGET_CPU_ARCH" = "xsparc"; then |
|
289 |
C_O_FLAG_HIGHEST="-xO4 -Wc,-Qrm-s -Wc,-Qiselect-T0 \ |
|
50645
9cdde9293187
8205110: Fix xchip warnings with new Solaris toolchain
gadams
parents:
50550
diff
changeset
|
290 |
-xprefetch=auto,explicit $CC_HIGHEST" |
49120 | 291 |
C_O_FLAG_HI="-xO4 -Wc,-Qrm-s -Wc,-Qiselect-T0" |
292 |
C_O_FLAG_NORM="-xO2 -Wc,-Qrm-s -Wc,-Qiselect-T0" |
|
293 |
fi |
|
294 |
elif test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
295 |
C_O_FLAG_HIGHEST_JVM="-O3" |
|
296 |
C_O_FLAG_HIGHEST="-O3" |
|
297 |
C_O_FLAG_HI="-O3" |
|
298 |
C_O_FLAG_NORM="-O2" |
|
299 |
C_O_FLAG_SIZE="-Os" |
|
300 |
C_O_FLAG_DEBUG="-O0" |
|
301 |
C_O_FLAG_DEBUG_JVM="-O0" |
|
302 |
C_O_FLAG_NONE="-O0" |
|
303 |
elif test "x$TOOLCHAIN_TYPE" = xclang; then |
|
304 |
if test "x$OPENJDK_TARGET_OS" = xmacosx; then |
|
305 |
# On MacOSX we optimize for size, something |
|
306 |
# we should do for all platforms? |
|
307 |
C_O_FLAG_HIGHEST_JVM="-Os" |
|
308 |
C_O_FLAG_HIGHEST="-Os" |
|
309 |
C_O_FLAG_HI="-Os" |
|
310 |
C_O_FLAG_NORM="-Os" |
|
311 |
C_O_FLAG_DEBUG_JVM="" |
|
312 |
else |
|
313 |
C_O_FLAG_HIGHEST_JVM="-O3" |
|
314 |
C_O_FLAG_HIGHEST="-O3" |
|
315 |
C_O_FLAG_HI="-O3" |
|
316 |
C_O_FLAG_NORM="-O2" |
|
317 |
C_O_FLAG_DEBUG_JVM="-O0" |
|
318 |
fi |
|
319 |
C_O_FLAG_SIZE="-Os" |
|
320 |
C_O_FLAG_DEBUG="-O0" |
|
321 |
C_O_FLAG_NONE="-O0" |
|
322 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
|
323 |
C_O_FLAG_HIGHEST_JVM="-O3 -qhot=level=1 -qinline -qinlglue" |
|
324 |
C_O_FLAG_HIGHEST="-O3 -qhot=level=1 -qinline -qinlglue" |
|
325 |
C_O_FLAG_HI="-O3 -qinline -qinlglue" |
|
326 |
C_O_FLAG_NORM="-O2" |
|
327 |
C_O_FLAG_DEBUG="-qnoopt" |
|
328 |
# FIXME: Value below not verified. |
|
329 |
C_O_FLAG_DEBUG_JVM="" |
|
330 |
C_O_FLAG_NONE="-qnoopt" |
|
331 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
|
332 |
C_O_FLAG_HIGHEST_JVM="-O2 -Oy-" |
|
333 |
C_O_FLAG_HIGHEST="-O2" |
|
334 |
C_O_FLAG_HI="-O1" |
|
335 |
C_O_FLAG_NORM="-O1" |
|
336 |
C_O_FLAG_DEBUG="-Od" |
|
337 |
C_O_FLAG_DEBUG_JVM="" |
|
338 |
C_O_FLAG_NONE="-Od" |
|
339 |
C_O_FLAG_SIZE="-Os" |
|
340 |
fi |
|
341 |
||
342 |
# Now copy to C++ flags |
|
343 |
CXX_O_FLAG_HIGHEST_JVM="$C_O_FLAG_HIGHEST_JVM" |
|
344 |
CXX_O_FLAG_HIGHEST="$C_O_FLAG_HIGHEST" |
|
345 |
CXX_O_FLAG_HI="$C_O_FLAG_HI" |
|
346 |
CXX_O_FLAG_NORM="$C_O_FLAG_NORM" |
|
347 |
CXX_O_FLAG_DEBUG="$C_O_FLAG_DEBUG" |
|
348 |
CXX_O_FLAG_DEBUG_JVM="$C_O_FLAG_DEBUG_JVM" |
|
349 |
CXX_O_FLAG_NONE="$C_O_FLAG_NONE" |
|
350 |
CXX_O_FLAG_SIZE="$C_O_FLAG_SIZE" |
|
351 |
||
352 |
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
353 |
# In solstudio, also add this to C (but not C++) flags... |
|
354 |
C_O_FLAG_HIGHEST="$C_O_FLAG_HIGHEST -xalias_level=basic" |
|
355 |
fi |
|
356 |
||
357 |
# Adjust optimization flags according to debug level. |
|
358 |
case $DEBUG_LEVEL in |
|
359 |
release ) |
|
360 |
# no adjustment |
|
361 |
;; |
|
362 |
fastdebug ) |
|
363 |
# Not quite so much optimization |
|
364 |
C_O_FLAG_HI="$C_O_FLAG_NORM" |
|
365 |
CXX_O_FLAG_HI="$CXX_O_FLAG_NORM" |
|
366 |
;; |
|
367 |
slowdebug ) |
|
368 |
# Disable optimization |
|
369 |
C_O_FLAG_HIGHEST_JVM="$C_O_FLAG_DEBUG_JVM" |
|
370 |
C_O_FLAG_HIGHEST="$C_O_FLAG_DEBUG" |
|
371 |
C_O_FLAG_HI="$C_O_FLAG_DEBUG" |
|
372 |
C_O_FLAG_NORM="$C_O_FLAG_DEBUG" |
|
373 |
C_O_FLAG_SIZE="$C_O_FLAG_DEBUG" |
|
374 |
CXX_O_FLAG_HIGHEST_JVM="$CXX_O_FLAG_DEBUG_JVM" |
|
375 |
CXX_O_FLAG_HIGHEST="$CXX_O_FLAG_DEBUG" |
|
376 |
CXX_O_FLAG_HI="$CXX_O_FLAG_DEBUG" |
|
377 |
CXX_O_FLAG_NORM="$CXX_O_FLAG_DEBUG" |
|
378 |
CXX_O_FLAG_SIZE="$CXX_O_FLAG_DEBUG" |
|
379 |
;; |
|
380 |
esac |
|
381 |
||
382 |
AC_SUBST(C_O_FLAG_HIGHEST_JVM) |
|
383 |
AC_SUBST(C_O_FLAG_HIGHEST) |
|
384 |
AC_SUBST(C_O_FLAG_HI) |
|
385 |
AC_SUBST(C_O_FLAG_NORM) |
|
386 |
AC_SUBST(C_O_FLAG_NONE) |
|
387 |
AC_SUBST(C_O_FLAG_SIZE) |
|
388 |
AC_SUBST(CXX_O_FLAG_HIGHEST_JVM) |
|
389 |
AC_SUBST(CXX_O_FLAG_HIGHEST) |
|
390 |
AC_SUBST(CXX_O_FLAG_HI) |
|
391 |
AC_SUBST(CXX_O_FLAG_NORM) |
|
392 |
AC_SUBST(CXX_O_FLAG_NONE) |
|
393 |
AC_SUBST(CXX_O_FLAG_SIZE) |
|
394 |
]) |
|
395 |
||
396 |
AC_DEFUN([FLAGS_SETUP_CFLAGS], |
|
397 |
[ |
|
398 |
### CFLAGS |
|
399 |
||
400 |
FLAGS_SETUP_CFLAGS_HELPER |
|
401 |
||
402 |
FLAGS_OS=$OPENJDK_TARGET_OS |
|
403 |
FLAGS_OS_TYPE=$OPENJDK_TARGET_OS_TYPE |
|
404 |
FLAGS_CPU=$OPENJDK_TARGET_CPU |
|
405 |
FLAGS_CPU_ARCH=$OPENJDK_TARGET_CPU_ARCH |
|
406 |
FLAGS_CPU_BITS=$OPENJDK_TARGET_CPU_BITS |
|
407 |
FLAGS_CPU_ENDIAN=$OPENJDK_TARGET_CPU_ENDIAN |
|
408 |
FLAGS_CPU_LEGACY=$OPENJDK_TARGET_CPU_LEGACY |
|
409 |
FLAGS_CPU_LEGACY_LIB=$OPENJDK_TARGET_CPU_LEGACY_LIB |
|
410 |
||
411 |
FLAGS_SETUP_CFLAGS_CPU_DEP([TARGET]) |
|
412 |
||
413 |
FLAGS_OS=$OPENJDK_BUILD_OS |
|
414 |
FLAGS_OS_TYPE=$OPENJDK_BUILD_OS_TYPE |
|
415 |
FLAGS_CPU=$OPENJDK_BUILD_CPU |
|
416 |
FLAGS_CPU_ARCH=$OPENJDK_BUILD_CPU_ARCH |
|
417 |
FLAGS_CPU_BITS=$OPENJDK_BUILD_CPU_BITS |
|
418 |
FLAGS_CPU_ENDIAN=$OPENJDK_BUILD_CPU_ENDIAN |
|
419 |
FLAGS_CPU_LEGACY=$OPENJDK_BUILD_CPU_LEGACY |
|
420 |
FLAGS_CPU_LEGACY_LIB=$OPENJDK_BUILD_CPU_LEGACY_LIB |
|
421 |
||
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
422 |
FLAGS_SETUP_CFLAGS_CPU_DEP([BUILD], [OPENJDK_BUILD_], [BUILD_]) |
49120 | 423 |
]) |
424 |
||
425 |
################################################################################ |
|
426 |
# platform independent |
|
427 |
AC_DEFUN([FLAGS_SETUP_CFLAGS_HELPER], |
|
428 |
[ |
|
429 |
#### OS DEFINES, these should be independent on toolchain |
|
430 |
if test "x$OPENJDK_TARGET_OS" = xlinux; then |
|
431 |
CFLAGS_OS_DEF_JVM="-DLINUX" |
|
432 |
CFLAGS_OS_DEF_JDK="-D_GNU_SOURCE -D_REENTRANT -D_LARGEFILE64_SOURCE" |
|
433 |
elif test "x$OPENJDK_TARGET_OS" = xsolaris; then |
|
434 |
CFLAGS_OS_DEF_JVM="-DSOLARIS" |
|
435 |
CFLAGS_OS_DEF_JDK="-D__solaris__" |
|
436 |
elif test "x$OPENJDK_TARGET_OS" = xmacosx; then |
|
437 |
CFLAGS_OS_DEF_JVM="-D_ALLBSD_SOURCE -D_DARWIN_C_SOURCE -D_XOPEN_SOURCE" |
|
438 |
CFLAGS_OS_DEF_JDK="-D_ALLBSD_SOURCE -D_DARWIN_UNLIMITED_SELECT" |
|
439 |
elif test "x$OPENJDK_TARGET_OS" = xaix; then |
|
440 |
CFLAGS_OS_DEF_JVM="-DAIX" |
|
441 |
elif test "x$OPENJDK_TARGET_OS" = xbsd; then |
|
442 |
CFLAGS_OS_DEF_JDK="-D_ALLBSD_SOURCE" |
|
443 |
elif test "x$OPENJDK_TARGET_OS" = xwindows; then |
|
444 |
CFLAGS_OS_DEF_JVM="-D_WINDOWS -DWIN32 -D_JNI_IMPLEMENTATION_" |
|
445 |
fi |
|
446 |
||
447 |
CFLAGS_OS_DEF_JDK="$CFLAGS_OS_DEF_JDK -D$OPENJDK_TARGET_OS_UPPERCASE" |
|
448 |
||
449 |
#### GLOBAL DEFINES |
|
450 |
# Set some common defines. These works for all compilers, but assume |
|
451 |
# -D is universally accepted. |
|
452 |
||
453 |
# Always enable optional macros for VM. |
|
454 |
ALWAYS_CFLAGS_JVM="-D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS" |
|
455 |
||
456 |
# Setup some hard coded includes |
|
457 |
ALWAYS_CFLAGS_JDK=" \ |
|
458 |
-I\$(SUPPORT_OUTPUTDIR)/modules_include/java.base \ |
|
459 |
-I\$(SUPPORT_OUTPUTDIR)/modules_include/java.base/\$(OPENJDK_TARGET_OS_INCLUDE_SUBDIR) \ |
|
460 |
-I${TOPDIR}/src/java.base/share/native/libjava \ |
|
461 |
-I${TOPDIR}/src/java.base/$OPENJDK_TARGET_OS_TYPE/native/libjava \ |
|
462 |
-I${TOPDIR}/src/hotspot/share/include \ |
|
463 |
-I${TOPDIR}/src/hotspot/os/${HOTSPOT_TARGET_OS_TYPE}/include" |
|
464 |
||
465 |
############################################################################### |
|
466 |
||
467 |
# Adjust flags according to debug level. |
|
468 |
# Setup debug/release defines |
|
469 |
if test "x$DEBUG_LEVEL" = xrelease; then |
|
470 |
DEBUG_CFLAGS_JDK="-DNDEBUG" |
|
471 |
if test "x$OPENJDK_TARGET_OS" = xsolaris; then |
|
472 |
DEBUG_CFLAGS_JDK="$DEBUG_CFLAGS_JDK -DTRIMMED" |
|
473 |
fi |
|
474 |
else |
|
475 |
DEBUG_CFLAGS_JDK="-DDEBUG" |
|
476 |
||
477 |
if test "x$TOOLCHAIN_TYPE" = xxlc; then |
|
478 |
# We need '-qminimaltoc' or '-qpic=large -bbigtoc' if the TOC overflows. |
|
479 |
# Hotspot now overflows its 64K TOC (currently only for debug), |
|
480 |
# so for debug we build with '-qpic=large -bbigtoc'. |
|
481 |
DEBUG_CFLAGS_JVM="-qpic=large" |
|
482 |
fi |
|
483 |
fi |
|
484 |
||
485 |
if test "x$DEBUG_LEVEL" != xrelease; then |
|
486 |
DEBUG_OPTIONS_FLAGS_JDK="$CFLAGS_DEBUG_OPTIONS" |
|
487 |
DEBUG_SYMBOLS_CFLAGS_JDK="$CFLAGS_DEBUG_SYMBOLS" |
|
488 |
fi |
|
489 |
||
490 |
#### TOOLCHAIN DEFINES |
|
491 |
||
492 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
493 |
ALWAYS_DEFINES_JVM="-D_GNU_SOURCE -D_REENTRANT" |
|
494 |
elif test "x$TOOLCHAIN_TYPE" = xclang; then |
|
495 |
ALWAYS_DEFINES_JVM="-D_GNU_SOURCE" |
|
496 |
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
497 |
ALWAYS_DEFINES_JVM="-DSPARC_WORKS -D_Crun_inline_placement" |
|
498 |
ALWAYS_DEFINES_JDK="-DTRACING -DMACRO_MEMSYS_OPS -DBREAKPTS" |
|
499 |
ALWAYS_DEFINES_JDK_CXXONLY="-DCC_NOEX" |
|
500 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
|
501 |
ALWAYS_DEFINES_JVM="-D_REENTRANT" |
|
502 |
ALWAYS_DEFINES_JDK="-D_GNU_SOURCE -D_REENTRANT -D_LARGEFILE64_SOURCE -DSTDC" |
|
503 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
|
504 |
ALWAYS_DEFINES_JDK="-DWIN32_LEAN_AND_MEAN -D_CRT_SECURE_NO_DEPRECATE \ |
|
505 |
-D_CRT_NONSTDC_NO_DEPRECATE -DWIN32 -DIAL" |
|
49726
4ae63fcabe2e
8199736: Define WIN32_LEAN_AND_MEAN before including windows.h
rwestberg
parents:
49679
diff
changeset
|
506 |
ALWAYS_DEFINES_JVM="-DNOMINMAX -DWIN32_LEAN_AND_MEAN" |
49120 | 507 |
fi |
508 |
||
509 |
############################################################################### |
|
510 |
# |
|
511 |
# |
|
512 |
# CFLAGS BASIC |
|
513 |
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then |
|
514 |
# COMMON to gcc and clang |
|
515 |
TOOLCHAIN_CFLAGS_JVM="-pipe -fno-rtti -fno-exceptions \ |
|
516 |
-fvisibility=hidden -fno-strict-aliasing -fno-omit-frame-pointer" |
|
517 |
fi |
|
518 |
||
519 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
53332 | 520 |
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM -fcheck-new -fstack-protector" |
521 |
TOOLCHAIN_CFLAGS_JDK="-pipe -fstack-protector" |
|
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
522 |
# technically NOT for CXX (but since this gives *worse* performance, use |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
523 |
# no-strict-aliasing everywhere!) |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
524 |
TOOLCHAIN_CFLAGS_JDK_CONLY="-fno-strict-aliasing" |
49120 | 525 |
|
526 |
elif test "x$TOOLCHAIN_TYPE" = xclang; then |
|
527 |
# Restrict the debug information created by Clang to avoid |
|
528 |
# too big object files and speed the build up a little bit |
|
529 |
# (see http://llvm.org/bugs/show_bug.cgi?id=7554) |
|
530 |
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM -flimit-debug-info" |
|
531 |
||
50781 | 532 |
# In principle the stack alignment below is cpu- and ABI-dependent and |
533 |
# should agree with values of StackAlignmentInBytes in various |
|
534 |
# src/hotspot/cpu/*/globalDefinitions_*.hpp files, but this value currently |
|
535 |
# works for all platforms. |
|
536 |
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM -mno-omit-leaf-frame-pointer -mstack-alignment=16" |
|
537 |
||
49120 | 538 |
if test "x$OPENJDK_TARGET_OS" = xlinux; then |
54646
5b1eec609909
8220388: Increase -inlinehint-threshold for Clang to avoid G1 pause time regression
manc
parents:
54490
diff
changeset
|
539 |
if test "x$DEBUG_LEVEL" = xrelease; then |
5b1eec609909
8220388: Increase -inlinehint-threshold for Clang to avoid G1 pause time regression
manc
parents:
54490
diff
changeset
|
540 |
# Clang does not inline as much as GCC does for functions with "inline" keyword by default. |
5b1eec609909
8220388: Increase -inlinehint-threshold for Clang to avoid G1 pause time regression
manc
parents:
54490
diff
changeset
|
541 |
# This causes noticeable slowdown in pause time for G1, and possibly in other areas. |
5b1eec609909
8220388: Increase -inlinehint-threshold for Clang to avoid G1 pause time regression
manc
parents:
54490
diff
changeset
|
542 |
# Increasing the inline hint threshold avoids the slowdown for Clang-built JVM. |
5b1eec609909
8220388: Increase -inlinehint-threshold for Clang to avoid G1 pause time regression
manc
parents:
54490
diff
changeset
|
543 |
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM -mllvm -inlinehint-threshold=100000" |
5b1eec609909
8220388: Increase -inlinehint-threshold for Clang to avoid G1 pause time regression
manc
parents:
54490
diff
changeset
|
544 |
fi |
49120 | 545 |
TOOLCHAIN_CFLAGS_JDK="-pipe" |
546 |
TOOLCHAIN_CFLAGS_JDK_CONLY="-fno-strict-aliasing" # technically NOT for CXX |
|
547 |
fi |
|
548 |
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
549 |
TOOLCHAIN_FLAGS="-errtags -errfmt" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
550 |
TOOLCHAIN_CFLAGS="-errshort=tags" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
551 |
|
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
552 |
TOOLCHAIN_CFLAGS_JDK="-mt $TOOLCHAIN_FLAGS" |
53078 | 553 |
TOOLCHAIN_CFLAGS_JDK_CONLY="-xCC -Xa -W0,-noglobal $TOOLCHAIN_CFLAGS" # C only |
49120 | 554 |
TOOLCHAIN_CFLAGS_JDK_CXXONLY="-features=no%except -norunpath -xnolib" # CXX only |
555 |
TOOLCHAIN_CFLAGS_JVM="-template=no%extdef -features=no%split_init \ |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
556 |
-library=stlport4 -mt -features=no%except $TOOLCHAIN_FLAGS" |
49155
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
557 |
if test "x$DEBUG_LEVEL" = xslowdebug; then |
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
558 |
# Previously -g was used instead of -g0 for slowdebug; this is equivalent |
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
559 |
# to setting +d. |
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
560 |
TOOLCHAIN_CFLAGS_JVM="$TOOLCHAIN_CFLAGS_JVM +d" |
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
561 |
fi |
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
562 |
|
49120 | 563 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
564 |
# Suggested additions: -qsrcmsg to get improved error reporting |
53366 | 565 |
TOOLCHAIN_CFLAGS_JDK="-qchars=signed -qfullpath -qsaveopt -qstackprotect" # add on both CFLAGS |
49120 | 566 |
TOOLCHAIN_CFLAGS_JVM="-qtune=balanced \ |
567 |
-qalias=noansi -qstrict -qtls=default -qlanglvl=c99vla \ |
|
53366 | 568 |
-qlanglvl=noredefmac -qnortti -qnoeh -qignerrno -qstackprotect" |
49120 | 569 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
570 |
TOOLCHAIN_CFLAGS_JVM="-nologo -MD -MP" |
|
571 |
TOOLCHAIN_CFLAGS_JDK="-nologo -MD -Zc:wchar_t-" |
|
572 |
fi |
|
573 |
||
574 |
# CFLAGS WARNINGS STUFF |
|
575 |
# Set JVM_CFLAGS warning handling |
|
576 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
577 |
WARNING_CFLAGS_JDK_CONLY="$WARNINGS_ENABLE_ALL_CFLAGS" |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
578 |
WARNING_CFLAGS_JDK_CXXONLY="$WARNINGS_ENABLE_ALL_CXXFLAGS" |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
579 |
WARNING_CFLAGS_JVM="$WARNINGS_ENABLE_ALL_CXXFLAGS" |
49120 | 580 |
|
581 |
elif test "x$TOOLCHAIN_TYPE" = xclang; then |
|
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
582 |
WARNING_CFLAGS="$WARNINGS_ENABLE_ALL" |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
583 |
|
49120 | 584 |
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
585 |
WARNING_CFLAGS_JDK_CONLY="$WARNINGS_ENABLE_ALL_CFLAGS" |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
586 |
WARNING_CFLAGS_JDK_CXXONLY="$WARNINGS_ENABLE_ALL_CXXFLAGS" |
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
587 |
WARNING_CFLAGS_JVM="$WARNINGS_ENABLE_ALL_CXXFLAGS" |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
588 |
|
49120 | 589 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
590 |
WARNING_CFLAGS="$WARNINGS_ENABLE_ALL" |
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51839
diff
changeset
|
591 |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
592 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
51814
diff
changeset
|
593 |
WARNING_CFLAGS="" # currently left empty |
49120 | 594 |
fi |
595 |
||
596 |
# Set some additional per-OS defines. |
|
597 |
||
598 |
# Additional macosx handling |
|
599 |
if test "x$OPENJDK_TARGET_OS" = xmacosx; then |
|
600 |
OS_CFLAGS="-DMAC_OS_X_VERSION_MIN_REQUIRED=$MACOSX_VERSION_MIN_NODOTS \ |
|
601 |
-mmacosx-version-min=$MACOSX_VERSION_MIN" |
|
602 |
||
603 |
if test -n "$MACOSX_VERSION_MAX"; then |
|
604 |
OS_CFLAGS="$OS_CFLAGS \ |
|
605 |
-DMAC_OS_X_VERSION_MAX_ALLOWED=$MACOSX_VERSION_MAX_NODOTS" |
|
606 |
fi |
|
607 |
fi |
|
608 |
||
609 |
# Where does this really belong?? |
|
610 |
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then |
|
611 |
PICFLAG="-fPIC" |
|
612 |
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
613 |
PICFLAG="-KPIC" |
|
614 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
|
615 |
# '-qpic' defaults to 'qpic=small'. This means that the compiler generates only |
|
616 |
# one instruction for accessing the TOC. If the TOC grows larger than 64K, the linker |
|
617 |
# will have to patch this single instruction with a call to some out-of-order code which |
|
50550
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
618 |
# does the load from the TOC. This is of course slower, and we also would have |
49120 | 619 |
# to use '-bbigtoc' for linking anyway so we could also change the PICFLAG to 'qpic=large'. |
620 |
# With 'qpic=large' the compiler will by default generate a two-instruction sequence which |
|
621 |
# can be patched directly by the linker and does not require a jump to out-of-order code. |
|
50550
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
622 |
# |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
623 |
# Since large TOC causes perf. overhead, only pay it where we must. Currently this is |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
624 |
# for all libjvm variants (both gtest and normal) but no other binaries. So, build |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
625 |
# libjvm with -qpic=large and link with -bbigtoc. |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
626 |
JVM_PICFLAG="-qpic=large" |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
627 |
JDK_PICFLAG="-qpic" |
49120 | 628 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
629 |
PICFLAG="" |
|
630 |
fi |
|
631 |
||
50550
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
632 |
if test "x$TOOLCHAIN_TYPE" != xxlc; then |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
633 |
JVM_PICFLAG="$PICFLAG" |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
634 |
JDK_PICFLAG="$PICFLAG" |
41ff671ed8cf
8204935: [aix] TOC overflow in libjvm.so (release build)
stuefe
parents:
49907
diff
changeset
|
635 |
fi |
49120 | 636 |
|
637 |
if test "x$OPENJDK_TARGET_OS" = xmacosx; then |
|
638 |
# Linking is different on MacOSX |
|
639 |
JDK_PICFLAG='' |
|
640 |
if test "x$STATIC_BUILD" = xtrue; then |
|
641 |
JVM_PICFLAG="" |
|
642 |
fi |
|
643 |
fi |
|
644 |
||
645 |
# Optional POSIX functionality needed by the JVM |
|
646 |
# |
|
647 |
# Check if clock_gettime is available and in which library. This indicates |
|
648 |
# availability of CLOCK_MONOTONIC for hotspot. But we don't need to link, so |
|
649 |
# don't let it update LIBS. |
|
650 |
save_LIBS="$LIBS" |
|
651 |
AC_SEARCH_LIBS(clock_gettime, rt, [HAS_CLOCK_GETTIME=true], []) |
|
652 |
if test "x$LIBS" = "x-lrt "; then |
|
653 |
CLOCK_GETTIME_IN_LIBRT=true |
|
654 |
fi |
|
655 |
LIBS="$save_LIBS" |
|
656 |
||
657 |
if test "x$HAS_CLOCK_GETTIME" = "xtrue"; then |
|
658 |
OS_CFLAGS_JVM="$OS_CFLAGS_JVM -DSUPPORTS_CLOCK_MONOTONIC" |
|
659 |
if test "x$CLOCK_GETTIME_IN_LIBRT" = "xtrue"; then |
|
660 |
OS_CFLAGS_JVM="$OS_CFLAGS_JVM -DNEEDS_LIBRT" |
|
661 |
fi |
|
662 |
fi |
|
663 |
]) |
|
664 |
||
665 |
################################################################################ |
|
666 |
# $1 - Either BUILD or TARGET to pick the correct OS/CPU variables to check |
|
667 |
# conditionals against. |
|
668 |
# $2 - Optional prefix for each variable defined. |
|
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
669 |
# $3 - Optional prefix for compiler variables (either BUILD_ or nothing). |
49120 | 670 |
AC_DEFUN([FLAGS_SETUP_CFLAGS_CPU_DEP], |
671 |
[ |
|
672 |
#### CPU DEFINES, these should (in theory) be independent on toolchain |
|
673 |
||
674 |
# Setup target CPU |
|
675 |
# Setup endianness |
|
676 |
if test "x$FLAGS_CPU_ENDIAN" = xlittle; then |
|
677 |
$1_DEFINES_CPU_JVM="-DVM_LITTLE_ENDIAN" |
|
678 |
fi |
|
679 |
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
680 |
# The macro _LITTLE_ENDIAN needs to be defined the same to avoid the |
|
681 |
# Sun C compiler warning message: warning: macro redefined: _LITTLE_ENDIAN |
|
682 |
if test "x$FLAGS_CPU_ENDIAN" = xlittle; then |
|
683 |
$1_DEFINES_CPU_JDK="-D_LITTLE_ENDIAN=" |
|
684 |
else |
|
685 |
$1_DEFINES_CPU_JDK="-D_BIG_ENDIAN=" |
|
686 |
fi |
|
687 |
else |
|
688 |
if test "x$FLAGS_CPU_ENDIAN" = xlittle; then |
|
689 |
$1_DEFINES_CPU_JDK="-D_LITTLE_ENDIAN" |
|
690 |
else |
|
691 |
$1_DEFINES_CPU_JDK="-D_BIG_ENDIAN" |
|
692 |
fi |
|
693 |
fi |
|
694 |
||
695 |
# setup CPU bit size |
|
696 |
$1_DEFINES_CPU_JDK="${$1_DEFINES_CPU_JDK} -DARCH='\"$FLAGS_CPU_LEGACY\"' \ |
|
697 |
-D$FLAGS_CPU_LEGACY" |
|
698 |
||
699 |
if test "x$FLAGS_CPU_BITS" = x64; then |
|
700 |
# -D_LP64=1 is only set on linux and mac. Setting on windows causes diff in |
|
701 |
# unpack200.exe. |
|
702 |
if test "x$FLAGS_OS" = xlinux || test "x$FLAGS_OS" = xmacosx; then |
|
703 |
$1_DEFINES_CPU_JDK="${$1_DEFINES_CPU_JDK} -D_LP64=1" |
|
704 |
fi |
|
705 |
if test "x$FLAGS_OS" != xsolaris && test "x$FLAGS_OS" != xaix; then |
|
706 |
# Solaris does not have _LP64=1 in the old build. |
|
707 |
# xlc on AIX defines _LP64=1 by default and issues a warning if we redefine it. |
|
708 |
$1_DEFINES_CPU_JVM="${$1_DEFINES_CPU_JVM} -D_LP64=1" |
|
709 |
fi |
|
710 |
fi |
|
711 |
||
712 |
# toolchain dependend, per-cpu |
|
713 |
if test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
714 |
if test "x$FLAGS_CPU_ARCH" = xx86; then |
|
715 |
$1_DEFINES_CPU_JDK="${$1_DEFINES_CPU_JDK} -DcpuIntel -Di586 -D$FLAGS_CPU_LEGACY_LIB" |
|
716 |
fi |
|
717 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
|
718 |
if test "x$FLAGS_CPU" = xx86_64; then |
|
719 |
$1_DEFINES_CPU_JDK="${$1_DEFINES_CPU_JDK} -D_AMD64_ -Damd64" |
|
720 |
else |
|
721 |
$1_DEFINES_CPU_JDK="${$1_DEFINES_CPU_JDK} -D_X86_ -Dx86" |
|
722 |
fi |
|
723 |
fi |
|
724 |
||
725 |
# CFLAGS PER CPU |
|
726 |
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then |
|
727 |
# COMMON to gcc and clang |
|
728 |
if test "x$FLAGS_CPU" = xx86; then |
|
729 |
# Force compatibility with i586 on 32 bit intel platforms. |
|
730 |
$1_CFLAGS_CPU="-march=i586" |
|
731 |
fi |
|
732 |
fi |
|
733 |
||
734 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
735 |
if test "x$FLAGS_CPU" = xarm; then |
|
736 |
# -Wno-psabi to get rid of annoying "note: the mangling of 'va_list' has changed in GCC 4.4" |
|
737 |
$1_CFLAGS_CPU="-fsigned-char -Wno-psabi $ARM_ARCH_TYPE_FLAGS $ARM_FLOAT_TYPE_FLAGS -DJDK_ARCH_ABI_PROP_NAME='\"\$(JDK_ARCH_ABI_PROP_NAME)\"'" |
|
738 |
$1_CFLAGS_CPU_JVM="-DARM" |
|
739 |
elif test "x$FLAGS_CPU_ARCH" = xppc; then |
|
740 |
$1_CFLAGS_CPU_JVM="-minsert-sched-nops=regroup_exact -mno-multiple -mno-string" |
|
741 |
if test "x$FLAGS_CPU" = xppc64; then |
|
742 |
# -mminimal-toc fixes `relocation truncated to fit' error for gcc 4.1. |
|
743 |
# Use ppc64 instructions, but schedule for power5 |
|
744 |
$1_CFLAGS_CPU_JVM="${$1_CFLAGS_CPU_JVM} -mminimal-toc -mcpu=powerpc64 -mtune=power5" |
|
745 |
elif test "x$FLAGS_CPU" = xppc64le; then |
|
746 |
# Little endian machine uses ELFv2 ABI. |
|
747 |
# Use Power8, this is the first CPU to support PPC64 LE with ELFv2 ABI. |
|
748 |
$1_CFLAGS_CPU_JVM="${$1_CFLAGS_CPU_JVM} -DABI_ELFv2 -mcpu=power8 -mtune=power8" |
|
749 |
fi |
|
750 |
elif test "x$FLAGS_CPU" = xs390x; then |
|
751 |
$1_CFLAGS_CPU="-mbackchain -march=z10" |
|
752 |
fi |
|
753 |
||
754 |
if test "x$FLAGS_CPU_ARCH" != xarm && test "x$FLAGS_CPU_ARCH" != xppc; then |
|
755 |
# for all archs except arm and ppc, prevent gcc to omit frame pointer |
|
756 |
$1_CFLAGS_CPU_JDK="${$1_CFLAGS_CPU_JDK} -fno-omit-frame-pointer" |
|
757 |
fi |
|
758 |
||
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
759 |
$1_CXXSTD_CXXFLAG="-std=gnu++98" |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
760 |
FLAGS_CXX_COMPILER_CHECK_ARGUMENTS(ARGUMENT: [${$1_CXXSTD_CXXFLAG} -Werror], |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
761 |
PREFIX: $3, IF_FALSE: [$1_CXXSTD_CXXFLAG=""]) |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
762 |
$1_TOOLCHAIN_CFLAGS_JDK_CXXONLY="${$1_CXXSTD_CXXFLAG}" |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
763 |
$1_TOOLCHAIN_CFLAGS_JVM="${$1_TOOLCHAIN_CFLAGS_JVM} ${$1_CXXSTD_CXXFLAG}" |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
764 |
$2ADLC_CXXFLAG="${$1_CXXSTD_CXXFLAG}" |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
765 |
|
49120 | 766 |
elif test "x$TOOLCHAIN_TYPE" = xclang; then |
767 |
if test "x$FLAGS_OS" = xlinux; then |
|
768 |
# ppc test not really needed for clang |
|
769 |
if test "x$FLAGS_CPU_ARCH" != xarm && test "x$FLAGS_CPU_ARCH" != xppc; then |
|
770 |
# for all archs except arm and ppc, prevent gcc to omit frame pointer |
|
771 |
$1_CFLAGS_CPU_JDK="${$1_CFLAGS_CPU_JDK} -fno-omit-frame-pointer" |
|
772 |
fi |
|
773 |
fi |
|
774 |
||
775 |
elif test "x$TOOLCHAIN_TYPE" = xsolstudio; then |
|
776 |
if test "x$FLAGS_CPU" = xx86_64; then |
|
777 |
# NOTE: -xregs=no%frameptr is supposed to be default on x64 |
|
778 |
$1_CFLAGS_CPU_JDK="-xregs=no%frameptr" |
|
779 |
elif test "x$FLAGS_CPU" = xsparcv9; then |
|
780 |
$1_CFLAGS_CPU_JVM="-xarch=sparc" |
|
781 |
$1_CFLAGS_CPU_JDK_LIBONLY="-xregs=no%appl" |
|
782 |
fi |
|
783 |
||
784 |
elif test "x$TOOLCHAIN_TYPE" = xxlc; then |
|
785 |
if test "x$FLAGS_CPU" = xppc64; then |
|
786 |
$1_CFLAGS_CPU_JVM="-qarch=ppc64" |
|
787 |
fi |
|
788 |
||
789 |
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then |
|
790 |
if test "x$FLAGS_CPU" = xx86; then |
|
791 |
$1_CFLAGS_CPU_JVM="-arch:IA32" |
|
792 |
elif test "x$OPENJDK_TARGET_CPU" = xx86_64; then |
|
793 |
if test "x$DEBUG_LEVEL" != xrelease; then |
|
794 |
# NOTE: This is probably redundant; -homeparams is default on |
|
795 |
# non-release builds. |
|
796 |
$1_CFLAGS_CPU_JVM="-homeparams" |
|
797 |
fi |
|
798 |
fi |
|
799 |
fi |
|
800 |
||
801 |
if test "x$TOOLCHAIN_TYPE" = xgcc; then |
|
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
802 |
FLAGS_SETUP_GCC6_COMPILER_FLAGS($1, $3) |
49120 | 803 |
$1_TOOLCHAIN_CFLAGS="${$1_GCC6_CFLAGS}" |
804 |
||
49200 | 805 |
$1_WARNING_CFLAGS_JVM="-Wno-format-zero-length -Wtype-limits -Wuninitialized" |
49120 | 806 |
fi |
807 |
||
54490
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
808 |
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
809 |
# Check if compiler supports -fmacro-prefix-map. If so, use that to make |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
810 |
# the __FILE__ macro resolve to paths relative to the workspace root. |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
811 |
workspace_root_trailing_slash="${WORKSPACE_ROOT%/}/" |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
812 |
FILE_MACRO_CFLAGS="-fmacro-prefix-map=${workspace_root_trailing_slash}=" |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
813 |
FLAGS_COMPILER_CHECK_ARGUMENTS(ARGUMENT: [${FILE_MACRO_CFLAGS}], |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
814 |
PREFIX: $3, |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
815 |
IF_FALSE: [ |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
816 |
FILE_MACRO_CFLAGS= |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
817 |
] |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
818 |
) |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
819 |
fi |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
820 |
|
49120 | 821 |
# EXPORT to API |
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
822 |
CFLAGS_JVM_COMMON="$ALWAYS_CFLAGS_JVM $ALWAYS_DEFINES_JVM \ |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
823 |
$TOOLCHAIN_CFLAGS_JVM ${$1_TOOLCHAIN_CFLAGS_JVM} \ |
49120 | 824 |
$OS_CFLAGS $OS_CFLAGS_JVM $CFLAGS_OS_DEF_JVM $DEBUG_CFLAGS_JVM \ |
54490
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
825 |
$WARNING_CFLAGS $WARNING_CFLAGS_JVM $JVM_PICFLAG $FILE_MACRO_CFLAGS" |
49120 | 826 |
|
827 |
CFLAGS_JDK_COMMON="$ALWAYS_CFLAGS_JDK $ALWAYS_DEFINES_JDK $TOOLCHAIN_CFLAGS_JDK \ |
|
828 |
$OS_CFLAGS $CFLAGS_OS_DEF_JDK $DEBUG_CFLAGS_JDK $DEBUG_OPTIONS_FLAGS_JDK \ |
|
54490
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
829 |
$WARNING_CFLAGS $WARNING_CFLAGS_JDK $DEBUG_SYMBOLS_CFLAGS_JDK \ |
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53837
diff
changeset
|
830 |
$FILE_MACRO_CFLAGS" |
49120 | 831 |
|
832 |
# Use ${$2EXTRA_CFLAGS} to block EXTRA_CFLAGS to be added to build flags. |
|
833 |
# (Currently we don't have any OPENJDK_BUILD_EXTRA_CFLAGS, but that might |
|
834 |
# change in the future.) |
|
835 |
||
49155
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
836 |
CFLAGS_JDK_COMMON_CONLY="$TOOLCHAIN_CFLAGS_JDK_CONLY \ |
49120 | 837 |
$WARNING_CFLAGS_JDK_CONLY ${$2EXTRA_CFLAGS}" |
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
838 |
CFLAGS_JDK_COMMON_CXXONLY="$ALWAYS_DEFINES_JDK_CXXONLY \ |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
839 |
$TOOLCHAIN_CFLAGS_JDK_CXXONLY \ |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
840 |
${$1_TOOLCHAIN_CFLAGS_JDK_CXXONLY} \ |
49155
7cd937277d5e
8199338: Use -g0 on solstudio also for compiling C programs
ihse
parents:
49120
diff
changeset
|
841 |
$WARNING_CFLAGS_JDK_CXXONLY ${$2EXTRA_CXXFLAGS}" |
49120 | 842 |
|
843 |
$1_CFLAGS_JVM="${$1_DEFINES_CPU_JVM} ${$1_CFLAGS_CPU} ${$1_CFLAGS_CPU_JVM} ${$1_TOOLCHAIN_CFLAGS} ${$1_WARNING_CFLAGS_JVM}" |
|
844 |
$1_CFLAGS_JDK="${$1_DEFINES_CPU_JDK} ${$1_CFLAGS_CPU} ${$1_CFLAGS_CPU_JDK} ${$1_TOOLCHAIN_CFLAGS}" |
|
845 |
||
846 |
$2JVM_CFLAGS="$CFLAGS_JVM_COMMON ${$1_CFLAGS_JVM} ${$2EXTRA_CXXFLAGS}" |
|
847 |
||
848 |
$2CFLAGS_JDKEXE="$CFLAGS_JDK_COMMON $CFLAGS_JDK_COMMON_CONLY ${$1_CFLAGS_JDK}" |
|
849 |
$2CXXFLAGS_JDKEXE="$CFLAGS_JDK_COMMON $CFLAGS_JDK_COMMON_CXXONLY ${$1_CFLAGS_JDK}" |
|
850 |
$2CFLAGS_JDKLIB="${$2CFLAGS_JDKEXE} $JDK_PICFLAG ${$1_CFLAGS_CPU_JDK_LIBONLY}" |
|
851 |
$2CXXFLAGS_JDKLIB="${$2CXXFLAGS_JDKEXE} $JDK_PICFLAG ${$1_CFLAGS_CPU_JDK_LIBONLY}" |
|
852 |
||
853 |
AC_SUBST($2JVM_CFLAGS) |
|
854 |
AC_SUBST($2CFLAGS_JDKLIB) |
|
855 |
AC_SUBST($2CFLAGS_JDKEXE) |
|
856 |
AC_SUBST($2CXXFLAGS_JDKLIB) |
|
857 |
AC_SUBST($2CXXFLAGS_JDKEXE) |
|
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
858 |
AC_SUBST($2ADLC_CXXFLAG) |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
859 |
|
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
860 |
COMPILER_FP_CONTRACT_OFF_FLAG="-ffp-contract=off" |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
861 |
# Check that the compiler supports -ffp-contract=off flag |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
862 |
# Set FDLIBM_CFLAGS to -ffp-contract=off if it does. Empty |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
863 |
# otherwise. |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
864 |
# These flags are required for GCC-based builds of |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
865 |
# fdlibm with optimization without losing precision. |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
866 |
# Notably, -ffp-contract=off needs to be added for GCC >= 4.6. |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
867 |
if test "x$TOOLCHAIN_TYPE" = xgcc || test "x$TOOLCHAIN_TYPE" = xclang; then |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
868 |
FLAGS_COMPILER_CHECK_ARGUMENTS(ARGUMENT: [${COMPILER_FP_CONTRACT_OFF_FLAG}], |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
869 |
PREFIX: $3, |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
870 |
IF_TRUE: [$2FDLIBM_CFLAGS=${COMPILER_FP_CONTRACT_OFF_FLAG}], |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
871 |
IF_FALSE: [$2FDLIBM_CFLAGS=""]) |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
872 |
fi |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
873 |
AC_SUBST($2FDLIBM_CFLAGS) |
49120 | 874 |
]) |
875 |
||
876 |
# FLAGS_SETUP_GCC6_COMPILER_FLAGS([PREFIX]) |
|
877 |
# Arguments: |
|
878 |
# $1 - Prefix for each variable defined. |
|
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
879 |
# $2 - Prefix for compiler variables (either BUILD_ or nothing). |
49120 | 880 |
AC_DEFUN([FLAGS_SETUP_GCC6_COMPILER_FLAGS], |
881 |
[ |
|
882 |
# These flags are required for GCC 6 builds as undefined behaviour in OpenJDK code |
|
883 |
# runs afoul of the more aggressive versions of these optimisations. |
|
884 |
# Notably, value range propagation now assumes that the this pointer of C++ |
|
885 |
# member functions is non-null. |
|
886 |
NO_DELETE_NULL_POINTER_CHECKS_CFLAG="-fno-delete-null-pointer-checks" |
|
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
887 |
FLAGS_COMPILER_CHECK_ARGUMENTS(ARGUMENT: [$NO_DELETE_NULL_POINTER_CHECKS_CFLAG -Werror], |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
888 |
PREFIX: $2, IF_FALSE: [NO_DELETE_NULL_POINTER_CHECKS_CFLAG=""]) |
49120 | 889 |
NO_LIFETIME_DSE_CFLAG="-fno-lifetime-dse" |
53643
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
890 |
FLAGS_COMPILER_CHECK_ARGUMENTS(ARGUMENT: [$NO_LIFETIME_DSE_CFLAG -Werror], |
1126811a5124
8160926: FLAGS_COMPILER_CHECK_ARGUMENTS doesn't handle cross-compilation
erikj
parents:
53366
diff
changeset
|
891 |
PREFIX: $2, IF_FALSE: [NO_LIFETIME_DSE_CFLAG=""]) |
49120 | 892 |
$1_GCC6_CFLAGS="${NO_DELETE_NULL_POINTER_CHECKS_CFLAG} ${NO_LIFETIME_DSE_CFLAG}" |
893 |
]) |
|
894 |
||
895 |
# Documentation on common flags used for solstudio in HIGHEST. |
|
896 |
# |
|
897 |
# WARNING: Use of OPTIMIZATION_LEVEL=HIGHEST in your Makefile needs to be |
|
898 |
# done with care, there are some assumptions below that need to |
|
899 |
# be understood about the use of pointers, and IEEE behavior. |
|
900 |
# |
|
901 |
# -fns: Use non-standard floating point mode (not IEEE 754) |
|
902 |
# -fsimple: Do some simplification of floating point arithmetic (not IEEE 754) |
|
903 |
# -fsingle: Use single precision floating point with 'float' |
|
904 |
# -xalias_level=basic: Assume memory references via basic pointer types do not alias |
|
905 |
# (Source with excessing pointer casting and data access with mixed |
|
906 |
# pointer types are not recommended) |
|
907 |
# -xbuiltin=%all: Use intrinsic or inline versions for math/std functions |
|
908 |
# (If you expect perfect errno behavior, do not use this) |
|
909 |
# -xdepend: Loop data dependency optimizations (need -xO3 or higher) |
|
910 |
# -xrestrict: Pointer parameters to functions do not overlap |
|
911 |
# (Similar to -xalias_level=basic usage, but less obvious sometimes. |
|
912 |
# If you pass in multiple pointers to the same data, do not use this) |
|
913 |
# -xlibmil: Inline some library routines |
|
914 |
# (If you expect perfect errno behavior, do not use this) |
|
915 |
# -xlibmopt: Use optimized math routines (CURRENTLY DISABLED) |
|
916 |
# (If you expect perfect errno behavior, do not use this) |
|
917 |
# Can cause undefined external on Solaris 8 X86 on __sincos, removing for now |