annotate make/linux/makefiles/gcc.make @ 158:a49545cab84a

6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles) Summary: Allows for building with SS12, no longer requires SS11, warns if not SS11 for now. Once SS12 is validated and performance measurements look ok, SS12 will be the validated compiler. Reviewed-by: sspitsyn, ikrylov
author ohair
date Tue, 27 May 2008 09:47:18 -0700
parents a294fd0c4b38
children d1605aabd0a1 6470a2a42f92
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
a61af66fc99e Initial load
duke
parents:
diff changeset
2 # Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
a61af66fc99e Initial load
duke
parents:
diff changeset
19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 # CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 # have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # CC, CPP & AS
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 CPP = g++
a61af66fc99e Initial load
duke
parents:
diff changeset
29 CC = gcc
a61af66fc99e Initial load
duke
parents:
diff changeset
30 AS = $(CC) -c
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
a61af66fc99e Initial load
duke
parents:
diff changeset
33 # prints the numbers (e.g. "2.95", "3.2.1")
a61af66fc99e Initial load
duke
parents:
diff changeset
34 CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
a61af66fc99e Initial load
duke
parents:
diff changeset
35 CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 # check for precompiled headers support
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
a61af66fc99e Initial load
duke
parents:
diff changeset
39 USE_PRECOMPILED_HEADER=1
a61af66fc99e Initial load
duke
parents:
diff changeset
40 PRECOMPILED_HEADER_DIR=.
a61af66fc99e Initial load
duke
parents:
diff changeset
41 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/incls/_precompiled.incl.gch
a61af66fc99e Initial load
duke
parents:
diff changeset
42 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 #------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
46 # Compiler flags
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 # position-independent code
a61af66fc99e Initial load
duke
parents:
diff changeset
49 PICFLAG = -fPIC
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 VM_PICFLAG/LIBJVM = $(PICFLAG)
a61af66fc99e Initial load
duke
parents:
diff changeset
52 VM_PICFLAG/AOUT =
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 ifneq ($(BUILDARCH), i486)
a61af66fc99e Initial load
duke
parents:
diff changeset
55 VM_PICFLAG = $(VM_PICFLAG/$(LINK_INTO))
a61af66fc99e Initial load
duke
parents:
diff changeset
56 else
a61af66fc99e Initial load
duke
parents:
diff changeset
57 # PIC has significant overhead on x86, build nonpic VM for now.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 # Link JVM at a "good" base location to avoid unnecessary .text patching.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 JVM_BASE_ADDR = 0x06000000
a61af66fc99e Initial load
duke
parents:
diff changeset
60 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 CFLAGS += $(VM_PICFLAG)
a61af66fc99e Initial load
duke
parents:
diff changeset
63 CFLAGS += -fno-rtti
a61af66fc99e Initial load
duke
parents:
diff changeset
64 CFLAGS += -fno-exceptions
a61af66fc99e Initial load
duke
parents:
diff changeset
65 CFLAGS += -D_REENTRANT
a61af66fc99e Initial load
duke
parents:
diff changeset
66 CFLAGS += -fcheck-new
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ARCHFLAG/i486 = -m32 -march=i586
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ARCHFLAG/amd64 = -m64
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ARCHFLAG/ia64 =
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ARCHFLAG/sparc = -m32 -mcpu=v9
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ARCHFLAG/sparcv9 = -m64 -mcpu=v9
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 CFLAGS += $(ARCHFLAG)
a61af66fc99e Initial load
duke
parents:
diff changeset
76 AOUT_FLAGS += $(ARCHFLAG)
a61af66fc99e Initial load
duke
parents:
diff changeset
77 LFLAGS += $(ARCHFLAG)
a61af66fc99e Initial load
duke
parents:
diff changeset
78 ASFLAGS += $(ARCHFLAG)
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 # Use C++ Interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ifdef CC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
82 CFLAGS += -DCC_INTERP
a61af66fc99e Initial load
duke
parents:
diff changeset
83 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 # Keep temporary files (.ii, .s)
a61af66fc99e Initial load
duke
parents:
diff changeset
86 ifdef NEED_ASM
a61af66fc99e Initial load
duke
parents:
diff changeset
87 CFLAGS += -save-temps
a61af66fc99e Initial load
duke
parents:
diff changeset
88 else
a61af66fc99e Initial load
duke
parents:
diff changeset
89 CFLAGS += -pipe
a61af66fc99e Initial load
duke
parents:
diff changeset
90 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 # Compiler warnings are treated as errors
a61af66fc99e Initial load
duke
parents:
diff changeset
93 WARNINGS_ARE_ERRORS = -Werror
a61af66fc99e Initial load
duke
parents:
diff changeset
94 # Except for a few acceptable ones
a61af66fc99e Initial load
duke
parents:
diff changeset
95 ACCEPTABLE_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare
a61af66fc99e Initial load
duke
parents:
diff changeset
96 CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ACCEPTABLE_WARNINGS)
a61af66fc99e Initial load
duke
parents:
diff changeset
97 # Special cases
a61af66fc99e Initial load
duke
parents:
diff changeset
98 CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 # The flags to use for an Optimized g++ build
a61af66fc99e Initial load
duke
parents:
diff changeset
101 OPT_CFLAGS += -O3
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 # Hotspot uses very unstrict aliasing turn this optimization off
a61af66fc99e Initial load
duke
parents:
diff changeset
104 OPT_CFLAGS += -fno-strict-aliasing
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 # The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
107 # if we use expensive-optimizations
a61af66fc99e Initial load
duke
parents:
diff changeset
108 ifeq ($(BUILDARCH), ia64)
a61af66fc99e Initial load
duke
parents:
diff changeset
109 OPT_CFLAGS += -fno-expensive-optimizations
a61af66fc99e Initial load
duke
parents:
diff changeset
110 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 OPT_CFLAGS/NOOPT=-O0
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 #------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
115 # Linker flags
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 # statically link libstdc++.so, work with gcc but ignored by g++
a61af66fc99e Initial load
duke
parents:
diff changeset
118 STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 # statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
a61af66fc99e Initial load
duke
parents:
diff changeset
121 ifneq ("${CC_VER_MAJOR}", "2")
a61af66fc99e Initial load
duke
parents:
diff changeset
122 STATIC_LIBGCC += -static-libgcc
a61af66fc99e Initial load
duke
parents:
diff changeset
123 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 ifeq ($(BUILDARCH), ia64)
a61af66fc99e Initial load
duke
parents:
diff changeset
126 LFLAGS += -Wl,-relax
a61af66fc99e Initial load
duke
parents:
diff changeset
127 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 # Enable linker optimization
a61af66fc99e Initial load
duke
parents:
diff changeset
130 LFLAGS += -Xlinker -O1
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
a61af66fc99e Initial load
duke
parents:
diff changeset
133 MAPFLAG = -Xlinker --version-script=FILENAME
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
a61af66fc99e Initial load
duke
parents:
diff changeset
136 SONAMEFLAG = -Xlinker -soname=SONAME
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 # Build shared library
a61af66fc99e Initial load
duke
parents:
diff changeset
139 SHARED_FLAG = -shared
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 # Keep symbols even they are not used
a61af66fc99e Initial load
duke
parents:
diff changeset
142 AOUT_FLAGS += -export-dynamic
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 #------------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
145 # Debug flags
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 # Use the stabs format for debugging information (this is the default
a61af66fc99e Initial load
duke
parents:
diff changeset
148 # on gcc-2.91). It's good enough, has all the information about line
a61af66fc99e Initial load
duke
parents:
diff changeset
149 # numbers and local variables, and libjvm_g.so is only about 16M.
a61af66fc99e Initial load
duke
parents:
diff changeset
150 # Change this back to "-g" if you want the most expressive format.
a61af66fc99e Initial load
duke
parents:
diff changeset
151 # (warning: that could easily inflate libjvm_g.so to 150M!)
a61af66fc99e Initial load
duke
parents:
diff changeset
152 # Note: The Itanium gcc compiler crashes when using -gstabs.
a61af66fc99e Initial load
duke
parents:
diff changeset
153 DEBUG_CFLAGS/ia64 = -g
a61af66fc99e Initial load
duke
parents:
diff changeset
154 DEBUG_CFLAGS/amd64 = -g
a61af66fc99e Initial load
duke
parents:
diff changeset
155 DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
a61af66fc99e Initial load
duke
parents:
diff changeset
156 ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
a61af66fc99e Initial load
duke
parents:
diff changeset
157 DEBUG_CFLAGS += -gstabs
a61af66fc99e Initial load
duke
parents:
diff changeset
158 endif