annotate make/bsd/makefiles/gcc.make @ 14704:b51e29501f30

Merged with jdk9/dev/hotspot changeset 9486a41de3b7
author twisti
date Tue, 18 Mar 2014 20:19:10 -0700
parents 4823ccaf5023 d72cee0607a3
children 92aa6797d639
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)
12629
8ba058ffbc2e Clang 5.0 fixes
twisti
parents: 12500
diff changeset
152 PCH_FLAG/graalCompilerToVM.o = $(PCH_FLAG/NO_PCH)
8ba058ffbc2e Clang 5.0 fixes
twisti
parents: 12500
diff changeset
153
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
154 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
155 else # ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
156 # check for precompiled headers support
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
157 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
158 # Allow the user to turn off precompiled headers from the command line.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
159 ifneq ($(USE_PRECOMPILED_HEADER),0)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
160 PRECOMPILED_HEADER_DIR=.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
161 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
162 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
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 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
166
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
167 # -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
168 ifeq ($(USE_PRECOMPILED_HEADER),0)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
169 CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
170 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
171
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
172 #------------------------------------------------------------------------
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
173 # Compiler flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
174
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
175 # position-independent code
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
176 PICFLAG = -fPIC
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
177
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
178 VM_PICFLAG/LIBJVM = $(PICFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
179 VM_PICFLAG/AOUT =
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
180 VM_PICFLAG = $(VM_PICFLAG/$(LINK_INTO))
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
181
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5897
diff changeset
182 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
183 CFLAGS += $(LIBFFI_CFLAGS)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
184 endif
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5897
diff changeset
185 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
186 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
187 CFLAGS += $(LLVM_CFLAGS)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
188 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
189 CFLAGS += $(VM_PICFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
190 CFLAGS += -fno-rtti
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
191 CFLAGS += -fno-exceptions
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
192 ifeq ($(USE_CLANG),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
193 CFLAGS += -pthread
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
194 CFLAGS += -fcheck-new
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
195 # version 4 and above support fvisibility=hidden (matches jni_x86.h file)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
196 # 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
197 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
198 CFLAGS += -fvisibility=hidden
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
199 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
200 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
201 CFLAGS += -fvisibility=hidden
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
202 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
203
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
204 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
205 # 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
206 # 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
207 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
208 STACK_ALIGNMENT_OPT = -mno-omit-leaf-frame-pointer -mstack-alignment=16
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
209 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
210 STACK_ALIGNMENT_OPT = -mno-omit-leaf-frame-pointer -mllvm -stack-alignment=16
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
211 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
212 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
213
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
214 ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
215 ARCHFLAG/i486 = -m32 -march=i586
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
216 ARCHFLAG/amd64 = -m64 $(STACK_ALIGNMENT_OPT)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
217 ARCHFLAG/ia64 =
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
218 ARCHFLAG/sparc = -m32 -mcpu=v9
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
219 ARCHFLAG/sparcv9 = -m64 -mcpu=v9
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
220 ARCHFLAG/zero = $(ZERO_ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
221
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
222 # Darwin-specific build flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
223 ifeq ($(OS_VENDOR), Darwin)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
224 # Ineffecient 16-byte stack re-alignment on Darwin/IA32
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
225 ARCHFLAG/i486 += -mstackrealign
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
226 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
227
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
228 CFLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
229 AOUT_FLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
230 LFLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
231 ASFLAGS += $(ARCHFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
232
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
233 ifdef E500V2
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
234 CFLAGS += -DE500V2
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
235 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
236
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
237 # Use C++ Interpreter
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
238 ifdef CC_INTERP
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
239 CFLAGS += -DCC_INTERP
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
240 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
241
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
242 # Keep temporary files (.ii, .s)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
243 ifdef NEED_ASM
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
244 CFLAGS += -save-temps
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
245 else
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
246 CFLAGS += -pipe
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
247 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
248
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
249 # Compiler warnings are treated as errors
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
250 ifneq ($(COMPILER_WARNINGS_FATAL),false)
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
251 WARNINGS_ARE_ERRORS = -Werror
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
252 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
253
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
254 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
255 # 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
256 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
257 WARNINGS_ARE_ERRORS += -Wno-switch -Wno-tautological-compare
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
258 # Not yet supported by clang in Xcode 4.6.2
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
259 # WARNINGS_ARE_ERRORS += -Wno-tautological-constant-out-of-range-compare
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
260 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
261 WARNINGS_ARE_ERRORS += -Wno-empty-body
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
262 endif
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
263
14368
b6ab2c9abfc5 8030350: Enable additional compiler warnings for GCC
mduigou
parents: 14229
diff changeset
264 WARNING_FLAGS = -Wpointer-arith -Wsign-compare -Wundef -Wunused-function -Wformat=2 -Wno-error=format-nonliteral
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
265
14229
d16be2b85802 8022263: use same Clang warnings on BSD as on Linux
twisti
parents: 12859
diff changeset
266 ifeq ($(USE_CLANG),)
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
267 # 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
268 # 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
269 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
270 WARNINGS_FLAGS += -Wconversion
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
271 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
272 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
273
8722
67342b960b47 8008474: Add -Wundef to warning flags.
jprovino
parents: 7408
diff changeset
274 CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(WARNING_FLAGS)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
275 # Special cases
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
276 CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
277 # XXXDARWIN: for _dyld_bind_fully_image_containing_address
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
278 ifeq ($(OS_VENDOR), Darwin)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
279 CFLAGS_WARN/os_bsd.o = $(CFLAGS_WARN/DEFAULT) -Wno-deprecated-declarations
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
280 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
281
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
282 OPT_CFLAGS/SIZE=-Os
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
283 OPT_CFLAGS/SPEED=-O3
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
284
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
285 # Hotspot uses very unstrict aliasing turn this optimization off
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
286 # 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
287 # so that OPT_CFLAGS overrides get this option too.
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
288 CFLAGS += -fno-strict-aliasing
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
289
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
290 # The flags to use for an Optimized g++ build
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
291 ifeq ($(OS_VENDOR), Darwin)
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
292 # 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
293 # <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
294 OPT_CFLAGS_DEFAULT ?= SIZE
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
295 else
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
296 OPT_CFLAGS_DEFAULT ?= SPEED
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
297 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
298
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
299 ifdef OPT_CFLAGS
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
300 ifneq ("$(origin OPT_CFLAGS)", "command line")
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
301 $(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
302 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
303 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
304
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
305 OPT_CFLAGS = $(OPT_CFLAGS/$(OPT_CFLAGS_DEFAULT)) $(OPT_EXTRAS)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
306
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6129
diff changeset
307 # The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
308 # if we use expensive-optimizations
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
309 ifeq ($(BUILDARCH), ia64)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
310 OPT_CFLAGS += -fno-expensive-optimizations
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
311 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
312
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
313 OPT_CFLAGS/NOOPT=-O0
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
314
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
315 # Work around some compiler bugs.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
316 ifeq ($(USE_CLANG), true)
12629
8ba058ffbc2e Clang 5.0 fixes
twisti
parents: 12500
diff changeset
317 # Clang 4.2
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
318 ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 2), 1)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
319 OPT_CFLAGS/loopTransform.o += $(OPT_CFLAGS/NOOPT)
12151
ca0501b58953 8024050: Incorrect optimization level and comment specified for unsafe.cpp
hseigel
parents: 12143
diff changeset
320 OPT_CFLAGS/unsafe.o += -O1
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
321 endif
12500
0806a46dced5 workaround for bug in Clang 5.0
Doug Simon <doug.simon@oracle.com>
parents: 12329
diff changeset
322 # Clang 5.0
14141
f97c5ec83832 apply workaround for clang 5.0 also to clang 5.1
Doug Simon <doug.simon@oracle.com>
parents: 13086
diff changeset
323 ifeq ($(shell expr $(CC_VER_MAJOR) = 5 \& \( $(CC_VER_MINOR) = 0 \| $(CC_VER_MINOR) = 1 \) ), 1)
12629
8ba058ffbc2e Clang 5.0 fixes
twisti
parents: 12500
diff changeset
324 OPT_CFLAGS/loopTransform.o += $(OPT_CFLAGS/NOOPT)
12500
0806a46dced5 workaround for bug in Clang 5.0
Doug Simon <doug.simon@oracle.com>
parents: 12329
diff changeset
325 OPT_CFLAGS/unsafe.o += -O1
12629
8ba058ffbc2e Clang 5.0 fixes
twisti
parents: 12500
diff changeset
326 OPT_CFLAGS/graalCompilerToVM.o += -O1
12500
0806a46dced5 workaround for bug in Clang 5.0
Doug Simon <doug.simon@oracle.com>
parents: 12329
diff changeset
327 endif
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
328 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
329 # 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
330 ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 3), 1)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
331 OPT_CFLAGS/mulnode.o += $(OPT_CFLAGS/NOOPT)
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 # Flags for generating make dependency flags.
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
336 DEPFLAGS = -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
337 ifeq ($(USE_CLANG),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
338 ifneq ($(CC_VER_MAJOR), 2)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
339 DEPFLAGS += -fpch-deps
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
340 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
341 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
342
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
343 # -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
344 ifeq ($(USE_PRECOMPILED_HEADER),0)
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
345 CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
346 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
347
8682
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
348 ifeq ($(OS_VENDOR), Darwin)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
349 # 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
350 # 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
351 # 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
352 # The expected format is X.Y.Z
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
353 ifeq ($(MACOSX_VERSION_MIN),)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
354 MACOSX_VERSION_MIN=10.7.0
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
355 endif
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
356 # 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
357 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
358 -mmacosx-version-min=$(MACOSX_VERSION_MIN)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
359 LDFLAGS += -mmacosx-version-min=$(MACOSX_VERSION_MIN)
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
360 endif
d778bb46a9a5 8008451: Make mac builds on 10.8 work on 10.7
erikj
parents: 7408
diff changeset
361
12203
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
362
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
363 #------------------------------------------------------------------------
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
364 # Assembler flags
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
365
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
366 # Enforce prerpocessing of .s files
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
367 ASFLAGS += -x assembler-with-cpp
1c6b721a3fbf 8022617: Openjdk hotspot build is broken on BSD platforms using gcc
dsamersoff
parents: 12151
diff changeset
368
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
369 #------------------------------------------------------------------------
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
370 # Linker flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
371
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
372 # statically link libstdc++.so, work with gcc but ignored by g++
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
373 STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
374
14473
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
375 # Ensure use libstdc++ on clang, not libc++
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
376 ifeq ($(USE_CLANG), true)
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
377 LFLAGS += -stdlib=libstdc++
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
378 endif
2dd7abe7b841 8033898: undefined symbol when build hotspot with Xcode5
henryjen
parents: 14368
diff changeset
379
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
380 ifeq ($(USE_CLANG),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
381 # 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
382 ifneq ("${CC_VER_MAJOR}", "2")
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
383 STATIC_LIBGCC += -static-libgcc
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
384 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
385
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
386 ifeq ($(BUILDARCH), ia64)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
387 LFLAGS += -Wl,-relax
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
388 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
389 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
390
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
391 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
392 MAPFLAG = -Xlinker --version-script=FILENAME
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
393
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
394 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
395 # Shared Library
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
396 #
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
397 ifeq ($(OS_VENDOR), Darwin)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
398 # Standard linker flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
399 LFLAGS +=
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
400
11026
91acb82a8b7a 8014326: [OSX] All libjvm symbols are exported
dholmes
parents: 10398
diff changeset
401 # The apple linker has its own variant of mapfiles/version-scripts
91acb82a8b7a 8014326: [OSX] All libjvm symbols are exported
dholmes
parents: 10398
diff changeset
402 MAPFLAG = -Xlinker -exported_symbols_list -Xlinker FILENAME
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
403
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
404 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
405 SONAMEFLAG =
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
406
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
407 # Build shared library
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
408 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
409
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
410 # Keep symbols even they are not used
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
411 #AOUT_FLAGS += -Xlinker -export-dynamic
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
412 else
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
413 # Enable linker optimization
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
414 LFLAGS += -Xlinker -O1
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
415
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
416 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
417 SONAMEFLAG = -Xlinker -soname=SONAME
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
418
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
419 # Build shared library
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
420 SHARED_FLAG = -shared $(VM_PICFLAG)
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
421
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
422 # Keep symbols even they are not used
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
423 AOUT_FLAGS += -Xlinker -export-dynamic
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
424 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
425
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
426 #------------------------------------------------------------------------
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
427 # Debug flags
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
428
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
429 ifeq ($(USE_CLANG), true)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
430 # Restrict the debug information created by Clang to avoid
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
431 # too big object files and speed the build up a little bit
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
432 # (see http://llvm.org/bugs/show_bug.cgi?id=7554)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
433 CFLAGS += -flimit-debug-info
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
434 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
435
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
436 # DEBUG_BINARIES uses full -g debug information for all configs
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
437 ifeq ($(DEBUG_BINARIES), true)
10398
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
438 CFLAGS += -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
439 else
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
440 # Use the stabs format for debugging information (this is the default
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
441 # 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
442 # numbers and local variables, and libjvm.so is only about 16M.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
443 # Change this back to "-g" if you want the most expressive format.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
444 # (warning: that could easily inflate libjvm.so to 150M!)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
445 # Note: The Itanium gcc compiler crashes when using -gstabs.
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
446 DEBUG_CFLAGS/ia64 = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
447 DEBUG_CFLAGS/amd64 = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
448 DEBUG_CFLAGS/arm = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
449 DEBUG_CFLAGS/ppc = -g
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
450 DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
451 ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
452 DEBUG_CFLAGS += -gstabs
2cb5d5f6d5e5 8015252: Enable HotSpot build with Clang
simonis
parents: 8723
diff changeset
453 endif
12859
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
454
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
455 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
456 FASTDEBUG_CFLAGS/ia64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
457 FASTDEBUG_CFLAGS/amd64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
458 FASTDEBUG_CFLAGS/arm = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
459 FASTDEBUG_CFLAGS/ppc = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
460 FASTDEBUG_CFLAGS += $(FASTDEBUG_CFLAGS/$(BUILDARCH))
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
461 ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
462 ifeq ($(USE_CLANG), true)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
463 # Clang doesn't understand -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
464 FASTDEBUG_CFLAGS += -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
465 else
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
466 FASTDEBUG_CFLAGS += -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
467 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
468 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
469
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
470 OPT_CFLAGS/ia64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
471 OPT_CFLAGS/amd64 = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
472 OPT_CFLAGS/arm = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
473 OPT_CFLAGS/ppc = -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
474 OPT_CFLAGS += $(OPT_CFLAGS/$(BUILDARCH))
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
475 ifeq ($(OPT_CFLAGS/$(BUILDARCH)),)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
476 ifeq ($(USE_CLANG), true)
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
477 # Clang doesn't understand -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
478 OPT_CFLAGS += -g
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
479 else
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
480 OPT_CFLAGS += -gstabs
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
481 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
482 endif
f509b8f4699b 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 12329
diff changeset
483 endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
484 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
485
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
486 # If we are building HEADLESS, pass on to VM
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
487 # so it can set the java.awt.headless property
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
488 ifdef HEADLESS
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
489 CFLAGS += -DHEADLESS
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
490 endif
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
491
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
492 # We are building Embedded for a small device
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
493 # favor code space over speed
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
494 ifdef MINIMIZE_RAM_USAGE
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
495 CFLAGS += -DMINIMIZE_RAM_USAGE
f08d439fab8c 7089790: integrate bsd-port changes
never
parents:
diff changeset
496 endif