hotspot/make/linux/makefiles/gcc.make
author xlu
Thu, 26 Jun 2008 14:15:01 -0700
changeset 775 d9c9b9cd55fb
parent 744 88e28f2ccee4
child 781 e1baa9c8f16f
permissions -rw-r--r--
6718830: Hotspot fails to build with gcc 4.3 Summary: Fixed linux make file and couple adlc code to meet the changes of gcc 4.3 Reviewed-by: kamg, igor
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
# Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
# CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
# have any questions.
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
# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
# prints the numbers (e.g. "2.95", "3.2.1")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
# check for precompiled headers support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
USE_PRECOMPILED_HEADER=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
PRECOMPILED_HEADER_DIR=.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/incls/_precompiled.incl.gch
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
# Compiler flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
# position-independent code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
PICFLAG = -fPIC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
VM_PICFLAG/LIBJVM = $(PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
VM_PICFLAG/AOUT   =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
VM_PICFLAG        = $(VM_PICFLAG/$(LINK_INTO))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
CFLAGS += $(VM_PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
CFLAGS += -fno-rtti
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
CFLAGS += -fno-exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
CFLAGS += -D_REENTRANT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
CFLAGS += -fcheck-new
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
ARCHFLAG/i486    = -m32 -march=i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
ARCHFLAG/amd64   = -m64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
ARCHFLAG/ia64    =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
ARCHFLAG/sparc   = -m32 -mcpu=v9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
ARCHFLAG/sparcv9 = -m64 -mcpu=v9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
CFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
AOUT_FLAGS += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
LFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
ASFLAGS    += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
# Use C++ Interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  CFLAGS += -DCC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
# Keep temporary files (.ii, .s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
ifdef NEED_ASM
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  CFLAGS += -save-temps
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  CFLAGS += -pipe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
# Compiler warnings are treated as errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
WARNINGS_ARE_ERRORS = -Werror
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    87
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
# Except for a few acceptable ones
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    89
# Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    90
# conversions which might affect the values. To avoid that, we need to turn
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    91
# it off explicitly. 
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    92
ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    93
ACCEPTABLE_WARNINGS = -Wpointer-arith -Wsign-compare
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    94
else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
ACCEPTABLE_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    96
endif
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
    97
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ACCEPTABLE_WARNINGS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
# Special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@)) 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
# The flags to use for an Optimized g++ build
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
OPT_CFLAGS += -O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
# Hotspot uses very unstrict aliasing turn this optimization off
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
OPT_CFLAGS += -fno-strict-aliasing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
# if we use expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
OPT_CFLAGS += -fno-expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
OPT_CFLAGS/NOOPT=-O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
# Linker flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
# statically link libstdc++.so, work with gcc but ignored by g++
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
# statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
ifneq ("${CC_VER_MAJOR}", "2")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
STATIC_LIBGCC += -static-libgcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
LFLAGS += -Wl,-relax
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
# Enable linker optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
LFLAGS += -Xlinker -O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
MAPFLAG = -Xlinker --version-script=FILENAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
SONAMEFLAG = -Xlinker -soname=SONAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
# Build shared library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
SHARED_FLAG = -shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
# Keep symbols even they are not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
AOUT_FLAGS += -export-dynamic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
# Debug flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
# Use the stabs format for debugging information (this is the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
# on gcc-2.91). It's good enough, has all the information about line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
# numbers and local variables, and libjvm_g.so is only about 16M.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
# Change this back to "-g" if you want the most expressive format.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
# (warning: that could easily inflate libjvm_g.so to 150M!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
# Note: The Itanium gcc compiler crashes when using -gstabs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
DEBUG_CFLAGS/ia64  = -g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
DEBUG_CFLAGS/amd64 = -g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
DEBUG_CFLAGS += -gstabs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
endif