hotspot/make/linux/makefiles/gcc.make
author bobv
Tue, 03 Aug 2010 08:13:38 -0400
changeset 6176 4d9030fe341f
parent 5547 f4b087cbb361
child 6187 4fa7845f7c14
permissions -rw-r--r--
6953477: Increase portability and flexibility of building Hotspot Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
     2
# Copyright (c) 1999, 2009, 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: 4013
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
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: 4013
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
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    28
ifdef ALT_COMPILER_PATH
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    29
CPP = $(ALT_COMPILER_PATH)/g++
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    30
CC  = $(ALT_COMPILER_PATH)/gcc
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    31
else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
CPP = g++
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
CC  = gcc
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    34
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
AS  = $(CC) -c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
# prints the numbers (e.g. "2.95", "3.2.1")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
# check for precompiled headers support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
USE_PRECOMPILED_HEADER=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
PRECOMPILED_HEADER_DIR=.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/incls/_precompiled.incl.gch
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
# Compiler flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
# position-independent code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
PICFLAG = -fPIC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
VM_PICFLAG/LIBJVM = $(PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
VM_PICFLAG/AOUT   =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
VM_PICFLAG        = $(VM_PICFLAG/$(LINK_INTO))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    61
ifeq ($(ZERO_BUILD), true)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    62
CFLAGS += $(LIBFFI_CFLAGS)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    63
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
CFLAGS += $(VM_PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
CFLAGS += -fno-rtti
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
CFLAGS += -fno-exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
CFLAGS += -D_REENTRANT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
CFLAGS += -fcheck-new
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
ARCHFLAG/i486    = -m32 -march=i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
ARCHFLAG/amd64   = -m64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
ARCHFLAG/ia64    =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
ARCHFLAG/sparc   = -m32 -mcpu=v9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
ARCHFLAG/sparcv9 = -m64 -mcpu=v9
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    76
ARCHFLAG/arm     =  -fsigned-char
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    77
ARCHFLAG/zero    = $(ZERO_ARCHFLAG)
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    78
ifndef E500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    79
ARCHFLAG/ppc     =  -mcpu=powerpc
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    80
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
CFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
AOUT_FLAGS += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
LFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
ASFLAGS    += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    87
ifdef E500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    88
CFLAGS += -DE500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    89
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    90
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
# Use C++ Interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  CFLAGS += -DCC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    96
# Build for embedded targets
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    97
ifdef JAVASE_EMBEDDED
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    98
  CFLAGS += -DJAVASE_EMBEDDED
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    99
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   100
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
# Keep temporary files (.ii, .s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
ifdef NEED_ASM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  CFLAGS += -save-temps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  CFLAGS += -pipe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
# Compiler warnings are treated as errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
WARNINGS_ARE_ERRORS = -Werror
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   110
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
# Except for a few acceptable ones
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   112
# 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
   113
# 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
   114
# it off explicitly. 
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   115
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
   116
ACCEPTABLE_WARNINGS = -Wpointer-arith -Wsign-compare
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   117
else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
ACCEPTABLE_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   119
endif
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   120
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ACCEPTABLE_WARNINGS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
# Special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@)) 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
# The flags to use for an Optimized g++ build
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
OPT_CFLAGS += -O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
# Hotspot uses very unstrict aliasing turn this optimization off
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
OPT_CFLAGS += -fno-strict-aliasing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
# if we use expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
OPT_CFLAGS += -fno-expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
OPT_CFLAGS/NOOPT=-O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
2734
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   139
# 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation. 
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   140
ifneq "$(shell expr \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) = 3 \) \))" "0"
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   141
OPT_CFLAGS/mulnode.o += -O0
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   142
endif
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   143
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
# Linker flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
# statically link libstdc++.so, work with gcc but ignored by g++
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
# statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
ifneq ("${CC_VER_MAJOR}", "2")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
STATIC_LIBGCC += -static-libgcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
LFLAGS += -Wl,-relax
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
# Enable linker optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
LFLAGS += -Xlinker -O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
2102
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   162
# If this is a --hash-style=gnu system, use --hash-style=both
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   163
#   The gnu .hash section won't work on some Linux systems like SuSE 10.
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   164
_HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   165
ifneq ($(_HAS_HASH_STYLE_GNU),)
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   166
  LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   167
endif
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   168
LFLAGS += $(LDFLAGS_HASH_STYLE)
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   169
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
MAPFLAG = -Xlinker --version-script=FILENAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
SONAMEFLAG = -Xlinker -soname=SONAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
# Build shared library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
SHARED_FLAG = -shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
# Keep symbols even they are not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
AOUT_FLAGS += -export-dynamic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
# Debug flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
# Use the stabs format for debugging information (this is the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
# on gcc-2.91). It's good enough, has all the information about line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
# numbers and local variables, and libjvm_g.so is only about 16M.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
# Change this back to "-g" if you want the most expressive format.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
# (warning: that could easily inflate libjvm_g.so to 150M!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
# Note: The Itanium gcc compiler crashes when using -gstabs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
DEBUG_CFLAGS/ia64  = -g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
DEBUG_CFLAGS/amd64 = -g
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   193
DEBUG_CFLAGS/arm   = -g
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   194
DEBUG_CFLAGS/ppc   = -g
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
DEBUG_CFLAGS += -gstabs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
endif
2784
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   199
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   200
# DEBUG_BINARIES overrides everything, use full -g debug information
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   201
ifeq ($(DEBUG_BINARIES), true)
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   202
  DEBUG_CFLAGS = -g
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   203
  CFLAGS += $(DEBUG_CFLAGS)
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   204
endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   205
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   206
# If we are building HEADLESS, pass on to VM
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   207
# so it can set the java.awt.headless property
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   208
ifdef HEADLESS
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   209
CFLAGS += -DHEADLESS
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   210
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   211
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   212
# We are building Embedded for a small device
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   213
# favor code space over speed
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   214
ifdef MINIMIZE_RAM_USAGE
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   215
CFLAGS += -DMINIMIZE_RAM_USAGE
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   216
endif