source: trunk/openjdk/hotspot/make/linux/makefiles/gcc.make

Last change on this file was 309, checked in by dmik, 14 years ago

trunk: Merged in openjdk6 b24 from branches/vendor/oracle.

File size: 6.9 KB
Line 
1#
2# Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
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#
19# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# questions.
22#
23#
24
25#------------------------------------------------------------------------
26# CC, CPP & AS
27
28# When cross-compiling the ALT_COMPILER_PATH points
29# to the cross-compilation toolset
30ifdef CROSS_COMPILE_ARCH
31CPP = $(ALT_COMPILER_PATH)/g++
32CC = $(ALT_COMPILER_PATH)/gcc
33else
34CPP = g++
35CC = gcc
36endif
37
38AS = $(CC) -c
39
40# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
41# prints the numbers (e.g. "2.95", "3.2.1")
42CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
43CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
44
45# check for precompiled headers support
46ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
47# Allow the user to turn off precompiled headers from the command line.
48ifneq ($(USE_PRECOMPILED_HEADER),0)
49USE_PRECOMPILED_HEADER=1
50PRECOMPILED_HEADER_DIR=.
51PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled.hpp
52PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
53endif
54endif
55
56
57#------------------------------------------------------------------------
58# Compiler flags
59
60# position-independent code
61PICFLAG = -fPIC
62
63VM_PICFLAG/LIBJVM = $(PICFLAG)
64VM_PICFLAG/AOUT =
65VM_PICFLAG = $(VM_PICFLAG/$(LINK_INTO))
66
67ifeq ($(ZERO_BUILD), true)
68CFLAGS += $(LIBFFI_CFLAGS)
69endif
70ifeq ($(SHARK_BUILD), true)
71CFLAGS += $(LLVM_CFLAGS)
72endif
73CFLAGS += $(VM_PICFLAG)
74CFLAGS += -fno-rtti
75CFLAGS += -fno-exceptions
76CFLAGS += -D_REENTRANT
77CFLAGS += -fcheck-new
78
79ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
80ARCHFLAG/i486 = -m32 -march=i586
81ARCHFLAG/amd64 = -m64
82ARCHFLAG/ia64 =
83ARCHFLAG/sparc = -m32 -mcpu=v9
84ARCHFLAG/sparcv9 = -m64 -mcpu=v9
85ARCHFLAG/arm = -fsigned-char
86ARCHFLAG/zero = $(ZERO_ARCHFLAG)
87ifndef E500V2
88ARCHFLAG/ppc = -mcpu=powerpc
89endif
90
91CFLAGS += $(ARCHFLAG)
92AOUT_FLAGS += $(ARCHFLAG)
93LFLAGS += $(ARCHFLAG)
94ASFLAGS += $(ARCHFLAG)
95
96ifdef E500V2
97CFLAGS += -DE500V2
98endif
99
100# Use C++ Interpreter
101ifdef CC_INTERP
102 CFLAGS += -DCC_INTERP
103endif
104
105# Build for embedded targets
106ifdef JAVASE_EMBEDDED
107 CFLAGS += -DJAVASE_EMBEDDED
108endif
109
110# Keep temporary files (.ii, .s)
111ifdef NEED_ASM
112 CFLAGS += -save-temps
113else
114 CFLAGS += -pipe
115endif
116
117# Compiler warnings are treated as errors
118WARNINGS_ARE_ERRORS = -Werror
119
120# Except for a few acceptable ones
121# Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
122# conversions which might affect the values. To avoid that, we need to turn
123# it off explicitly.
124ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
125ACCEPTABLE_WARNINGS = -Wpointer-arith -Wsign-compare
126else
127ACCEPTABLE_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare
128endif
129
130CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ACCEPTABLE_WARNINGS)
131# Special cases
132CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))
133
134# The flags to use for an Optimized g++ build
135OPT_CFLAGS += -O3
136
137# Hotspot uses very unstrict aliasing turn this optimization off
138OPT_CFLAGS += -fno-strict-aliasing
139
140# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp
141# if we use expensive-optimizations
142ifeq ($(BUILDARCH), ia64)
143OPT_CFLAGS += -fno-expensive-optimizations
144endif
145
146OPT_CFLAGS/NOOPT=-O0
147
148# 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation.
149ifneq "$(shell expr \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) = 3 \) \))" "0"
150OPT_CFLAGS/mulnode.o += -O0
151endif
152
153# Flags for generating make dependency flags.
154ifneq ("${CC_VER_MAJOR}", "2")
155DEPFLAGS = -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
156endif
157
158# -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
159ifneq ($(USE_PRECOMPILED_HEADER),1)
160CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
161endif
162
163#------------------------------------------------------------------------
164# Linker flags
165
166# statically link libstdc++.so, work with gcc but ignored by g++
167STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
168
169# statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
170ifneq ("${CC_VER_MAJOR}", "2")
171STATIC_LIBGCC += -static-libgcc
172endif
173
174ifeq ($(BUILDARCH), ia64)
175LFLAGS += -Wl,-relax
176endif
177
178# Enable linker optimization
179LFLAGS += -Xlinker -O1
180
181# If this is a --hash-style=gnu system, use --hash-style=both
182# The gnu .hash section won't work on some Linux systems like SuSE 10.
183_HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
184ifneq ($(_HAS_HASH_STYLE_GNU),)
185 LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
186endif
187LFLAGS += $(LDFLAGS_HASH_STYLE)
188
189# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
190MAPFLAG = -Xlinker --version-script=FILENAME
191
192# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
193SONAMEFLAG = -Xlinker -soname=SONAME
194
195# Build shared library
196SHARED_FLAG = -shared
197
198# Keep symbols even they are not used
199AOUT_FLAGS += -export-dynamic
200
201#------------------------------------------------------------------------
202# Debug flags
203
204# Use the stabs format for debugging information (this is the default
205# on gcc-2.91). It's good enough, has all the information about line
206# numbers and local variables, and libjvm_g.so is only about 16M.
207# Change this back to "-g" if you want the most expressive format.
208# (warning: that could easily inflate libjvm_g.so to 150M!)
209# Note: The Itanium gcc compiler crashes when using -gstabs.
210DEBUG_CFLAGS/ia64 = -g
211DEBUG_CFLAGS/amd64 = -g
212DEBUG_CFLAGS/arm = -g
213DEBUG_CFLAGS/ppc = -g
214DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
215ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
216DEBUG_CFLAGS += -gstabs
217endif
218
219# DEBUG_BINARIES overrides everything, use full -g debug information
220ifeq ($(DEBUG_BINARIES), true)
221 DEBUG_CFLAGS = -g
222 CFLAGS += $(DEBUG_CFLAGS)
223endif
224
225# If we are building HEADLESS, pass on to VM
226# so it can set the java.awt.headless property
227ifdef HEADLESS
228CFLAGS += -DHEADLESS
229endif
230
231# We are building Embedded for a small device
232# favor code space over speed
233ifdef MINIMIZE_RAM_USAGE
234CFLAGS += -DMINIMIZE_RAM_USAGE
235endif
Note: See TracBrowser for help on using the repository browser.