author | mikael |
Tue, 09 Oct 2012 10:09:34 -0700 | |
changeset 13963 | e5b53c306fb5 |
parent 12943 | 5ebbcf0cb20f |
child 14815 | 41114a74463a |
permissions | -rw-r--r-- |
1 | 1 |
# |
13963
e5b53c306fb5
7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents:
12943
diff
changeset
|
2 |
# Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
#------------------------------------------------------------------------ |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
11205
diff
changeset
|
26 |
# CC, CXX & AS |
1 | 27 |
|
11955
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11721
diff
changeset
|
28 |
# If a SPEC is not set already, then use these defaults. |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11721
diff
changeset
|
29 |
ifeq ($(SPEC),) |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11721
diff
changeset
|
30 |
CXX = g++ |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11721
diff
changeset
|
31 |
CC = gcc |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11721
diff
changeset
|
32 |
AS = $(CC) -c |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11721
diff
changeset
|
33 |
MCS = /usr/ccs/bin/mcs |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11721
diff
changeset
|
34 |
endif |
1 | 35 |
|
36 |
Compiler = gcc |
|
37 |
||
38 |
# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only |
|
39 |
# prints the numbers (e.g. "2.95", "3.2.1") |
|
40 |
CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1) |
|
41 |
CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2) |
|
42 |
||
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
11205
diff
changeset
|
43 |
# Check for the versions of C++ and C compilers ($CXX and $CC) used. |
1 | 44 |
|
45 |
# Get the last thing on the line that looks like x.x+ (x is a digit). |
|
46 |
COMPILER_REV := \ |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
11205
diff
changeset
|
47 |
$(shell $(CXX) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
11205
diff
changeset
|
48 |
CC_COMPILER_REV := \ |
1 | 49 |
$(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2) |
50 |
||
51 |
||
52 |
# check for precompiled headers support |
|
53 |
ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0" |
|
7408
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
54 |
# Allow the user to turn off precompiled headers from the command line. |
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
55 |
ifneq ($(USE_PRECOMPILED_HEADER),0) |
1 | 56 |
PRECOMPILED_HEADER_DIR=. |
10830
f3fedfa29811
7106766: Move the precompiled header from the src/share/vm directory
brutisso
parents:
7408
diff
changeset
|
57 |
PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp |
7397 | 58 |
PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch |
1 | 59 |
endif |
7408
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
60 |
endif |
1 | 61 |
|
62 |
||
63 |
#------------------------------------------------------------------------ |
|
64 |
# Compiler flags |
|
65 |
||
66 |
# position-independent code |
|
67 |
PICFLAG = -fPIC |
|
68 |
||
69 |
VM_PICFLAG/LIBJVM = $(PICFLAG) |
|
70 |
VM_PICFLAG/AOUT = |
|
71 |
VM_PICFLAG = $(VM_PICFLAG/$(LINK_INTO)) |
|
72 |
||
73 |
CFLAGS += $(VM_PICFLAG) |
|
74 |
CFLAGS += -fno-rtti |
|
75 |
CFLAGS += -fno-exceptions |
|
76 |
CFLAGS += -D_REENTRANT |
|
77 |
CFLAGS += -fcheck-new |
|
78 |
||
79 |
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH)) |
|
80 |
||
81 |
ARCHFLAG/sparc = -m32 -mcpu=v9 |
|
82 |
ARCHFLAG/sparcv9 = -m64 -mcpu=v9 |
|
83 |
ARCHFLAG/i486 = -m32 -march=i586 |
|
84 |
ARCHFLAG/amd64 = -m64 -march=k8 |
|
85 |
||
86 |
||
87 |
# Optional sub-directory in /usr/lib where BUILDARCH libraries are kept. |
|
88 |
ISA_DIR=$(ISA_DIR/$(BUILDARCH)) |
|
89 |
ISA_DIR/amd64=/amd64 |
|
90 |
ISA_DIR/i486= |
|
91 |
ISA_DIR/sparcv9=/64 |
|
92 |
||
93 |
||
94 |
CFLAGS += $(ARCHFLAG) |
|
95 |
AOUT_FLAGS += $(ARCHFLAG) |
|
96 |
LFLAGS += $(ARCHFLAG) |
|
97 |
ASFLAGS += $(ARCHFLAG) |
|
98 |
||
99 |
ifeq ($(BUILDARCH), amd64) |
|
100 |
ASFLAGS += -march=k8 -march=amd64 |
|
101 |
LFLAGS += -march=k8 |
|
102 |
endif |
|
103 |
||
104 |
||
105 |
# Use C++ Interpreter |
|
106 |
ifdef CC_INTERP |
|
107 |
CFLAGS += -DCC_INTERP |
|
108 |
endif |
|
109 |
||
110 |
# Keep temporary files (.ii, .s) |
|
111 |
ifdef NEED_ASM |
|
112 |
CFLAGS += -save-temps |
|
113 |
else |
|
114 |
CFLAGS += -pipe |
|
115 |
endif |
|
116 |
||
117 |
||
118 |
# Compiler warnings are treated as errors |
|
119 |
WARNINGS_ARE_ERRORS = -Werror |
|
120 |
# Enable these warnings. See 'info gcc' about details on these options |
|
121 |
ADDITIONAL_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare |
|
122 |
CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ADDITIONAL_WARNINGS) |
|
123 |
# Special cases |
|
124 |
CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@)) |
|
125 |
||
126 |
# The flags to use for an Optimized g++ build |
|
127 |
OPT_CFLAGS += -O3 |
|
128 |
||
129 |
# Hotspot uses very unstrict aliasing turn this optimization off |
|
130 |
OPT_CFLAGS += -fno-strict-aliasing |
|
131 |
||
132 |
# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp |
|
133 |
# if we use expensive-optimizations |
|
134 |
# Note: all ia64 setting reflect the ones for linux |
|
135 |
# No actial testing was performed: there is no Solaris on ia64 presently |
|
136 |
ifeq ($(BUILDARCH), ia64) |
|
137 |
OPT_CFLAGS/bytecodeInterpreter.o += -fno-expensive-optimizations |
|
138 |
endif |
|
139 |
||
140 |
OPT_CFLAGS/NOOPT=-O0 |
|
7397 | 141 |
|
142 |
# Flags for generating make dependency flags. |
|
143 |
ifneq ("${CC_VER_MAJOR}", "2") |
|
12943
5ebbcf0cb20f
7175914: Usage of gcc with precompiled headers produces wrong build dependencies
kamg
parents:
11955
diff
changeset
|
144 |
DEPFLAGS = -fpch-deps -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d) |
7397 | 145 |
endif |
146 |
||
7408
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
147 |
# -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp. |
11205
f07e6dd70a1f
7116081: USE_PRECOMPILED_HEADER=0 triggers a single threaded build of the JVM
stefank
parents:
10830
diff
changeset
|
148 |
ifeq ($(USE_PRECOMPILED_HEADER),0) |
7408
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
149 |
CFLAGS += -DDONT_USE_PRECOMPILED_HEADER |
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
150 |
endif |
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
151 |
|
1 | 152 |
#------------------------------------------------------------------------ |
153 |
# Linker flags |
|
154 |
||
155 |
# statically link libstdc++.so, work with gcc but ignored by g++ |
|
156 |
STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic |
|
157 |
||
158 |
# statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x. |
|
159 |
ifneq ("${CC_VER_MAJOR}", "2") |
|
160 |
STATIC_LIBGCC += -static-libgcc |
|
161 |
endif |
|
162 |
||
163 |
ifeq ($(BUILDARCH), ia64) |
|
164 |
# Note: all ia64 setting reflect the ones for linux |
|
165 |
# No actial testing was performed: there is no Solaris on ia64 presently |
|
166 |
LFLAGS += -Wl,-relax |
|
167 |
endif |
|
168 |
||
169 |
ifdef USE_GNULD |
|
170 |
# Enable linker optimization |
|
171 |
LFLAGS += -Xlinker -O1 |
|
172 |
||
173 |
# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file. |
|
174 |
MAPFLAG = -Xlinker --version-script=FILENAME |
|
175 |
else |
|
176 |
MAPFLAG = -Xlinker -M -Xlinker FILENAME |
|
177 |
endif |
|
178 |
||
179 |
# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj |
|
180 |
SONAMEFLAG = -Xlinker -soname=SONAME |
|
181 |
||
182 |
# Build shared library |
|
183 |
SHARED_FLAG = -shared |
|
184 |
||
185 |
#------------------------------------------------------------------------ |
|
186 |
# Debug flags |
|
187 |
||
188 |
# Use the stabs format for debugging information (this is the default |
|
189 |
# on gcc-2.91). It's good enough, has all the information about line |
|
190 |
# numbers and local variables, and libjvm_g.so is only about 16M. |
|
191 |
# Change this back to "-g" if you want the most expressive format. |
|
192 |
# (warning: that could easily inflate libjvm_g.so to 150M!) |
|
193 |
# Note: The Itanium gcc compiler crashes when using -gstabs. |
|
194 |
DEBUG_CFLAGS/ia64 = -g |
|
195 |
DEBUG_CFLAGS/amd64 = -g |
|
196 |
DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH)) |
|
197 |
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),) |
|
198 |
DEBUG_CFLAGS += -gstabs |
|
199 |
endif |