annotate make/bsd/makefiles/gcc.make @ 14658:d72cee0607a3

8036122: Fix warning 'format not a string literal' Reviewed-by: mduigou, kvn
author goetz
date Mon, 03 Mar 2014 11:54:35 +0100
parents 2dd7abe7b841
children b51e29501f30
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
1 #
11026
91acb82a8b7a 8014326: [OSX] All libjvm symbols are exported
dholmes
parents: 10398
diff changeset
2 # Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
4 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
7 # published by the Free Software Foundation.
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
8 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
13 # accompanied this code).
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
14 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
18 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
21 # questions.
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
22 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
23 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
24
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
25 OS_VENDOR = $(shell uname -s)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
26
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
27 #------------------------------------------------------------------------
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 4129
diff changeset
28 # CC, CXX & AS
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
29
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
30 # If a SPEC is not set already, then use these defaults.
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
31 ifeq ($(SPEC),)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
32 # When cross-compiling the ALT_COMPILER_PATH points
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
33 # to the cross-compilation toolset
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
34 ifdef CROSS_COMPILE_ARCH
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
35 CXX = $(ALT_COMPILER_PATH)/g++
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
36 CC = $(ALT_COMPILER_PATH)/gcc
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
37 HOSTCXX = g++
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
38 HOSTCC = gcc
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
39 else ifneq ($(OS_VENDOR), Darwin)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
40 CXX = g++
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
41 CC = gcc
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
42 HOSTCXX = $(CXX)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
43 HOSTCC = $(CC)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
44 endif
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
45
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
46 # i486 hotspot requires -mstackrealign on Darwin.
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
47 # llvm-gcc supports this in Xcode 3.2.6 and 4.0.
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
48 # gcc-4.0 supports this on earlier versions.
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
49 # Prefer llvm-gcc where available.
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
50 ifeq ($(OS_VENDOR), Darwin)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
51 ifeq ($(origin CXX), default)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
52 CXX = llvm-g++
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
53 endif
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
54 ifeq ($(origin CC), default)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
55 CC = llvm-gcc
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
56 endif
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
57
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
58 ifeq ($(ARCH), i486)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
59 LLVM_SUPPORTS_STACKREALIGN := $(shell \
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
60 [ "0"`llvm-gcc -v 2>&1 | grep LLVM | sed -E "s/.*LLVM build ([0-9]+).*/\1/"` -gt "2333" ] \
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
61 && echo true || echo false)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
62
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
63 ifeq ($(LLVM_SUPPORTS_STACKREALIGN), true)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
64 CXX32 ?= llvm-g++
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
65 CC32 ?= llvm-gcc
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
66 else
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
67 CXX32 ?= g++-4.0
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
68 CC32 ?= gcc-4.0
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
69 endif
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
70 CXX = $(CXX32)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
71 CC = $(CC32)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
72 endif
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
73
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
74 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
75 CXX = clang++
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
76 CC = clang
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
77 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
78
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
79 HOSTCXX = $(CXX)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
80 HOSTCC = $(CC)
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
81 endif
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
82
12203
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
83 AS = $(CC) -c
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
84 endif
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
85
12859
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
86 ifeq ($(OS_VENDOR), Darwin)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
87 ifeq ($(DSYMUTIL),)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
88 DSYMUTIL=dsymutil
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
89 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
90 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
91
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
92 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
93 CC_VER_MAJOR := $(shell $(CC) -v 2>&1 | grep version | sed "s/.*version \([0-9]*\.[0-9]*\).*/\1/" | cut -d'.' -f1)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
94 CC_VER_MINOR := $(shell $(CC) -v 2>&1 | grep version | sed "s/.*version \([0-9]*\.[0-9]*\).*/\1/" | cut -d'.' -f2)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
95 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
96 # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
97 # prints the numbers (e.g. "2.95", "3.2.1")
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
98 CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
99 CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
100 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
101
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
102 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
103 # clang has precompiled headers support by default, but the user can switch
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
104 # it off by using 'USE_PRECOMPILED_HEADER=0'.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
105 ifdef LP64
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
106 ifeq ($(USE_PRECOMPILED_HEADER),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
107 USE_PRECOMPILED_HEADER=1
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
108 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
109 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
110 # We don't support precompiled headers on 32-bit builds because there some files are
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
111 # compiled with -fPIC while others are compiled without (see 'NONPIC_OBJ_FILES' rules.make)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
112 # Clang produces an error if the PCH file was compiled with other options than the actual compilation unit.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
113 USE_PRECOMPILED_HEADER=0
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
114 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
115
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
116 ifeq ($(USE_PRECOMPILED_HEADER),1)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
117
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
118 ifndef LP64
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
119 $(error " Precompiled Headers only supported on 64-bit platforms!")
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
120 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
121
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
122 PRECOMPILED_HEADER_DIR=.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
123 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
124 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.pch
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
125
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
126 PCH_FLAG = -include precompiled.hpp
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
127 PCH_FLAG/DEFAULT = $(PCH_FLAG)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
128 PCH_FLAG/NO_PCH = -DNO_PCH
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
129 PCH_FLAG/BY_FILE = $(PCH_FLAG/$@)$(PCH_FLAG/DEFAULT$(PCH_FLAG/$@))
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
130
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
131 VM_PCH_FLAG/LIBJVM = $(PCH_FLAG/BY_FILE)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
132 VM_PCH_FLAG/AOUT =
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
133 VM_PCH_FLAG = $(VM_PCH_FLAG/$(LINK_INTO))
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
134
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
135 # We only use precompiled headers for the JVM build
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
136 CFLAGS += $(VM_PCH_FLAG)
12151
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
137
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
138 # The following files are compiled at various optimization
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
139 # levels due to optimization issues encountered at the
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
140 # 'OPT_CFLAGS_DEFAULT' level. The Clang compiler issues a compile
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
141 # time error if there is an optimization level specification
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
142 # skew between the PCH file and the C++ file. Especially if the
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
143 # PCH file is compiled at a higher optimization level than
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
144 # the C++ file. One solution might be to prepare extra optimization
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
145 # level specific PCH files for the opt build and use them here, but
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
146 # it's probably not worth the effort as long as only a few files
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
147 # need this special handling.
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
148 PCH_FLAG/loopTransform.o = $(PCH_FLAG/NO_PCH)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
149 PCH_FLAG/sharedRuntimeTrig.o = $(PCH_FLAG/NO_PCH)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
150 PCH_FLAG/sharedRuntimeTrans.o = $(PCH_FLAG/NO_PCH)
12143
dfc126b2f659 8022407: sun/misc/CopyMemory.java fails with SIGSEGV in Unsafe_SetByte+0x35
hseigel
parents: 12077
diff changeset
151 PCH_FLAG/unsafe.o = $(PCH_FLAG/NO_PCH)
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
152
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
153 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
154 else # ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
155 # check for precompiled headers support
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
156 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
157 # Allow the user to turn off precompiled headers from the command line.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
158 ifneq ($(USE_PRECOMPILED_HEADER),0)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
159 PRECOMPILED_HEADER_DIR=.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
160 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
161 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
162 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
163 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
164 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
165
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
166 # -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
167 ifeq ($(USE_PRECOMPILED_HEADER),0)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
168 CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
169 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
170
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
171 #------------------------------------------------------------------------
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
172 # Compiler flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
173
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
174 # position-independent code
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
175 PICFLAG = -fPIC
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
176
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
177 VM_PICFLAG/LIBJVM = $(PICFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
178 VM_PICFLAG/AOUT =
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
179 VM_PICFLAG = $(VM_PICFLAG/$(LINK_INTO))
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
180
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5897
diff changeset
181 ifeq ($(JVM_VARIANT_ZERO), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5897
diff changeset
182 CFLAGS += $(LIBFFI_CFLAGS)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
183 endif
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5897
diff changeset
184 ifeq ($(JVM_VARIANT_ZEROSHARK), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5897
diff changeset
185 CFLAGS += $(LIBFFI_CFLAGS)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5897
diff changeset
186 CFLAGS += $(LLVM_CFLAGS)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
187 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
188 CFLAGS += $(VM_PICFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
189 CFLAGS += -fno-rtti
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
190 CFLAGS += -fno-exceptions
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
191 ifeq ($(USE_CLANG),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
192 CFLAGS += -pthread
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
193 CFLAGS += -fcheck-new
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
194 # version 4 and above support fvisibility=hidden (matches jni_x86.h file)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
195 # except 4.1.2 gives pointless warnings that can't be disabled (afaik)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
196 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
197 CFLAGS += -fvisibility=hidden
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
198 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
199 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
200 CFLAGS += -fvisibility=hidden
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
201 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
202
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
203 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
204 # Before Clang 3.1, we had to pass the stack alignment specification directly to llvm with the help of '-mllvm'
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
205 # Starting with version 3.1, Clang understands the '-mstack-alignment' (and rejects '-mllvm -stack-alignment')
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
206 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 1 \) \))" "0"
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
207 STACK_ALIGNMENT_OPT = -mno-omit-leaf-frame-pointer -mstack-alignment=16
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
208 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
209 STACK_ALIGNMENT_OPT = -mno-omit-leaf-frame-pointer -mllvm -stack-alignment=16
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
210 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
211 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
212
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
213 ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
214 ARCHFLAG/i486 = -m32 -march=i586
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
215 ARCHFLAG/amd64 = -m64 $(STACK_ALIGNMENT_OPT)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
216 ARCHFLAG/ia64 =
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
217 ARCHFLAG/sparc = -m32 -mcpu=v9
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
218 ARCHFLAG/sparcv9 = -m64 -mcpu=v9
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
219 ARCHFLAG/zero = $(ZERO_ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
220
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
221 # Darwin-specific build flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
222 ifeq ($(OS_VENDOR), Darwin)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
223 # Ineffecient 16-byte stack re-alignment on Darwin/IA32
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
224 ARCHFLAG/i486 += -mstackrealign
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
225 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
226
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
227 CFLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
228 AOUT_FLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
229 LFLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
230 ASFLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
231
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
232 ifdef E500V2
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
233 CFLAGS += -DE500V2
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
234 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
235
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
236 # Use C++ Interpreter
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
237 ifdef CC_INTERP
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
238 CFLAGS += -DCC_INTERP
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
239 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
240
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
241 # Keep temporary files (.ii, .s)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
242 ifdef NEED_ASM
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
243 CFLAGS += -save-temps
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
244 else
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
245 CFLAGS += -pipe
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
246 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
247
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
248 # Compiler warnings are treated as errors
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
249 ifneq ($(COMPILER_WARNINGS_FATAL),false)
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
250 WARNINGS_ARE_ERRORS = -Werror
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
251 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
252
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
253 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
254 # However we need to clean the code up before we can unrestrictedly enable this option with Clang
12329
f2512d89ad0c 8025613: clang: remove -Wno-unused-value
twisti
parents: 12203
diff changeset
255 WARNINGS_ARE_ERRORS += -Wno-logical-op-parentheses -Wno-parentheses-equality -Wno-parentheses
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
256 WARNINGS_ARE_ERRORS += -Wno-switch -Wno-tautological-compare
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
257 # Not yet supported by clang in Xcode 4.6.2
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
258 # WARNINGS_ARE_ERRORS += -Wno-tautological-constant-out-of-range-compare
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
259 WARNINGS_ARE_ERRORS += -Wno-delete-non-virtual-dtor -Wno-deprecated -Wno-format -Wno-dynamic-class-memaccess
12077
e16282db4946 8022956: Clang: enable return type warnings on BSD
twisti
parents: 11026
diff changeset
260 WARNINGS_ARE_ERRORS += -Wno-empty-body
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
261 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
262
14658
d72cee0607a3 8036122: Fix warning 'format not a string literal'
goetz
parents: 14473
diff changeset
263 WARNING_FLAGS = -Wpointer-arith -Wsign-compare -Wundef -Wunused-function -Wformat=2
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
264
14229
d16be2b85802 8022263: use same Clang warnings on BSD as on Linux
twisti
parents: 12859
diff changeset
265 ifeq ($(USE_CLANG),)
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
266 # Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
267 # conversions which might affect the values. Only enable it in earlier versions.
14229
d16be2b85802 8022263: use same Clang warnings on BSD as on Linux
twisti
parents: 12859
diff changeset
268 ifeq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
d16be2b85802 8022263: use same Clang warnings on BSD as on Linux
twisti
parents: 12859
diff changeset
269 WARNINGS_FLAGS += -Wconversion
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
270 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
271 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
272
8722
67342b960b47 8008474: Add -Wundef to warning flags.
jprovino
parents: 7408
diff changeset
273 CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(WARNING_FLAGS)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
274 # Special cases
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
275 CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
276 # XXXDARWIN: for _dyld_bind_fully_image_containing_address
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
277 ifeq ($(OS_VENDOR), Darwin)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
278 CFLAGS_WARN/os_bsd.o = $(CFLAGS_WARN/DEFAULT) -Wno-deprecated-declarations
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
279 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
280
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
281 OPT_CFLAGS/SIZE=-Os
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
282 OPT_CFLAGS/SPEED=-O3
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
283
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
284 # Hotspot uses very unstrict aliasing turn this optimization off
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
285 # This option is added to CFLAGS rather than OPT_CFLAGS
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
286 # so that OPT_CFLAGS overrides get this option too.
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
287 CFLAGS += -fno-strict-aliasing
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
288
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
289 # The flags to use for an Optimized g++ build
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
290 ifeq ($(OS_VENDOR), Darwin)
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
291 # use -Os by default, unless -O3 can be proved to be worth the cost, as per policy
14368
b6ab2c9abfc5 8030350: Enable additional compiler warnings for GCC
mduigou
parents: 14229
diff changeset
292 # <https://wiki.openjdk.java.net/display/MacOSXPort/Compiler+Errata>
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
293 OPT_CFLAGS_DEFAULT ?= SIZE
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
294 else
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
295 OPT_CFLAGS_DEFAULT ?= SPEED
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
296 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
297
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
298 ifdef OPT_CFLAGS
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
299 ifneq ("$(origin OPT_CFLAGS)", "command line")
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
300 $(error " Use OPT_EXTRAS instead of OPT_CFLAGS to add extra flags to OPT_CFLAGS.")
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
301 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
302 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
303
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
304 OPT_CFLAGS = $(OPT_CFLAGS/$(OPT_CFLAGS_DEFAULT)) $(OPT_EXTRAS)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
305
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
306 # The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
307 # if we use expensive-optimizations
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
308 ifeq ($(BUILDARCH), ia64)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
309 OPT_CFLAGS += -fno-expensive-optimizations
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
310 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
311
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
312 OPT_CFLAGS/NOOPT=-O0
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
313
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
314 # Work around some compiler bugs.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
315 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
316 ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 2), 1)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
317 OPT_CFLAGS/loopTransform.o += $(OPT_CFLAGS/NOOPT)
12151
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
318 OPT_CFLAGS/unsafe.o += -O1
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
319 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
320 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
321 # 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
322 ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 3), 1)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
323 OPT_CFLAGS/mulnode.o += $(OPT_CFLAGS/NOOPT)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
324 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
325 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
326
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
327 # Flags for generating make dependency flags.
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
328 DEPFLAGS = -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
329 ifeq ($(USE_CLANG),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
330 ifneq ($(CC_VER_MAJOR), 2)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
331 DEPFLAGS += -fpch-deps
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
332 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
333 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
334
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
335 # -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
4129
f4414323345f 7116081: USE_PRECOMPILED_HEADER=0 triggers a single threaded build of the JVM
stefank
parents: 4033
diff changeset
336 ifeq ($(USE_PRECOMPILED_HEADER),0)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
337 CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
338 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
339
8682
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
340 ifeq ($(OS_VENDOR), Darwin)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
341 # Setting these parameters makes it an error to link to macosx APIs that are
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
342 # newer than the given OS version and makes the linked binaries compatible even
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
343 # if built on a newer version of the OS.
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
344 # The expected format is X.Y.Z
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
345 ifeq ($(MACOSX_VERSION_MIN),)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
346 MACOSX_VERSION_MIN=10.7.0
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
347 endif
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
348 # The macro takes the version with no dots, ex: 1070
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
349 CFLAGS += -DMAC_OS_X_VERSION_MAX_ALLOWED=$(subst .,,$(MACOSX_VERSION_MIN)) \
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
350 -mmacosx-version-min=$(MACOSX_VERSION_MIN)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
351 LDFLAGS += -mmacosx-version-min=$(MACOSX_VERSION_MIN)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
352 endif
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
353
12203
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
354
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
355 #------------------------------------------------------------------------
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
356 # Assembler flags
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
357
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
358 # Enforce prerpocessing of .s files
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
359 ASFLAGS += -x assembler-with-cpp
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
360
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
361 #------------------------------------------------------------------------
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
362 # Linker flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
363
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
364 # statically link libstdc++.so, work with gcc but ignored by g++
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
365 STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
366
14473
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
367 # Ensure use libstdc++ on clang, not libc++
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
368 ifeq ($(USE_CLANG), true)
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
369 LFLAGS += -stdlib=libstdc++
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
370 endif
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
371
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
372 ifeq ($(USE_CLANG),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
373 # statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
374 ifneq ("${CC_VER_MAJOR}", "2")
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
375 STATIC_LIBGCC += -static-libgcc
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
376 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
377
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
378 ifeq ($(BUILDARCH), ia64)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
379 LFLAGS += -Wl,-relax
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
380 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
381 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
382
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
383 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
384 MAPFLAG = -Xlinker --version-script=FILENAME
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
385
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
386 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
387 # Shared Library
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
388 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
389 ifeq ($(OS_VENDOR), Darwin)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
390 # Standard linker flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
391 LFLAGS +=
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
392
11026
91acb82a8b7a 8014326: [OSX] All libjvm symbols are exported
dholmes
parents: 10398
diff changeset
393 # The apple linker has its own variant of mapfiles/version-scripts
91acb82a8b7a 8014326: [OSX] All libjvm symbols are exported
dholmes
parents: 10398
diff changeset
394 MAPFLAG = -Xlinker -exported_symbols_list -Xlinker FILENAME
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
395
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
396 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
397 SONAMEFLAG =
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
398
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
399 # Build shared library
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
400 SHARED_FLAG = -Wl,-install_name,@rpath/$(@F) -dynamiclib -compatibility_version 1.0.0 -current_version 1.0.0 $(VM_PICFLAG)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
401
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
402 # Keep symbols even they are not used
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
403 #AOUT_FLAGS += -Xlinker -export-dynamic
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
404 else
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
405 # Enable linker optimization
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
406 LFLAGS += -Xlinker -O1
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
407
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
408 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
409 SONAMEFLAG = -Xlinker -soname=SONAME
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
410
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
411 # Build shared library
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
412 SHARED_FLAG = -shared $(VM_PICFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
413
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
414 # Keep symbols even they are not used
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
415 AOUT_FLAGS += -Xlinker -export-dynamic
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
416 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
417
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
418 #------------------------------------------------------------------------
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
419 # Debug flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
420
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
421 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
422 # Restrict the debug information created by Clang to avoid
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
423 # too big object files and speed the build up a little bit
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
424 # (see http://llvm.org/bugs/show_bug.cgi?id=7554)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
425 CFLAGS += -flimit-debug-info
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
426 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
427
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
428 # DEBUG_BINARIES uses full -g debug information for all configs
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
429 ifeq ($(DEBUG_BINARIES), true)
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
430 CFLAGS += -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
431 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
432 # Use the stabs format for debugging information (this is the default
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
433 # on gcc-2.91). It's good enough, has all the information about line
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
434 # numbers and local variables, and libjvm.so is only about 16M.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
435 # Change this back to "-g" if you want the most expressive format.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
436 # (warning: that could easily inflate libjvm.so to 150M!)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
437 # Note: The Itanium gcc compiler crashes when using -gstabs.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
438 DEBUG_CFLAGS/ia64 = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
439 DEBUG_CFLAGS/amd64 = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
440 DEBUG_CFLAGS/arm = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
441 DEBUG_CFLAGS/ppc = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
442 DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
443 ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
444 DEBUG_CFLAGS += -gstabs
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
445 endif
12859
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
446
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
447 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
448 FASTDEBUG_CFLAGS/ia64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
449 FASTDEBUG_CFLAGS/amd64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
450 FASTDEBUG_CFLAGS/arm = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
451 FASTDEBUG_CFLAGS/ppc = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
452 FASTDEBUG_CFLAGS += $(FASTDEBUG_CFLAGS/$(BUILDARCH))
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
453 ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
454 ifeq ($(USE_CLANG), true)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
455 # Clang doesn't understand -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
456 FASTDEBUG_CFLAGS += -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
457 else
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
458 FASTDEBUG_CFLAGS += -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
459 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
460 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
461
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
462 OPT_CFLAGS/ia64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
463 OPT_CFLAGS/amd64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
464 OPT_CFLAGS/arm = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
465 OPT_CFLAGS/ppc = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
466 OPT_CFLAGS += $(OPT_CFLAGS/$(BUILDARCH))
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
467 ifeq ($(OPT_CFLAGS/$(BUILDARCH)),)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
468 ifeq ($(USE_CLANG), true)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
469 # Clang doesn't understand -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
470 OPT_CFLAGS += -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
471 else
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
472 OPT_CFLAGS += -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
473 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
474 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
475 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
476 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
477
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
478 # If we are building HEADLESS, pass on to VM
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
479 # so it can set the java.awt.headless property
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
480 ifdef HEADLESS
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
481 CFLAGS += -DHEADLESS
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
482 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
483
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
484 # We are building Embedded for a small device
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
485 # favor code space over speed
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
486 ifdef MINIMIZE_RAM_USAGE
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
487 CFLAGS += -DMINIMIZE_RAM_USAGE
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
488 endif