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