hotspot/make/linux/makefiles/gcc.make
author mgerdin
Thu, 23 Feb 2012 14:58:35 +0100
changeset 12095 cc3d6f08a4c4
parent 11721 dcd1f62c9caf
child 12501 ea7feae692ae
child 11955 aeca8151886e
permissions -rw-r--r--
7148152: Add whitebox testing API to HotSpot Summary: Add an internal testing API to HotSpot to enable more targeted testing of vm functionality Reviewed-by: phh, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8868
diff changeset
     2
# Copyright (c) 1999, 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: 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
#------------------------------------------------------------------------
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11205
diff changeset
    26
# CC, CXX & AS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
7445
57d387675180 7005007: Refine use of ALT_COMPILER_PATH to avoid conflict with JPRT usage
dholmes
parents: 7408
diff changeset
    28
# When cross-compiling the ALT_COMPILER_PATH points
57d387675180 7005007: Refine use of ALT_COMPILER_PATH to avoid conflict with JPRT usage
dholmes
parents: 7408
diff changeset
    29
# to the cross-compilation toolset
57d387675180 7005007: Refine use of ALT_COMPILER_PATH to avoid conflict with JPRT usage
dholmes
parents: 7408
diff changeset
    30
ifdef CROSS_COMPILE_ARCH
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11205
diff changeset
    31
CXX = $(ALT_COMPILER_PATH)/g++
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    32
CC  = $(ALT_COMPILER_PATH)/gcc
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11205
diff changeset
    33
HOSTCXX = g++
8868
1bae515b806b 7029017: Additional architecture support for c2 compiler
roland
parents: 8106
diff changeset
    34
HOSTCC  = gcc
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    35
else
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11205
diff changeset
    36
CXX = g++
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
CC  = gcc
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11205
diff changeset
    38
HOSTCXX = $(CXX)
8868
1bae515b806b 7029017: Additional architecture support for c2 compiler
roland
parents: 8106
diff changeset
    39
HOSTCC  = $(CC)
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    40
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    41
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
AS  = $(CC) -c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
# prints the numbers (e.g. "2.95", "3.2.1")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
# check for precompiled headers support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
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
    51
# 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
    52
ifneq ($(USE_PRECOMPILED_HEADER),0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
PRECOMPILED_HEADER_DIR=.
10830
f3fedfa29811 7106766: Move the precompiled header from the src/share/vm directory
brutisso
parents: 10559
diff changeset
    54
PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    55
PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
endif
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
    57
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
# Compiler flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
# position-independent code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
PICFLAG = -fPIC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
VM_PICFLAG/LIBJVM = $(PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
VM_PICFLAG/AOUT   =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
VM_PICFLAG        = $(VM_PICFLAG/$(LINK_INTO))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    70
ifeq ($(ZERO_BUILD), true)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    71
CFLAGS += $(LIBFFI_CFLAGS)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    72
endif
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6176
diff changeset
    73
ifeq ($(SHARK_BUILD), true)
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6176
diff changeset
    74
CFLAGS += $(LLVM_CFLAGS)
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6176
diff changeset
    75
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
CFLAGS += $(VM_PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
CFLAGS += -fno-rtti
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
CFLAGS += -fno-exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
CFLAGS += -D_REENTRANT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
CFLAGS += -fcheck-new
8106
19106a0203fb 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 7445
diff changeset
    81
# version 4 and above support fvisibility=hidden (matches jni_x86.h file)
19106a0203fb 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 7445
diff changeset
    82
# except 4.1.2 gives pointless warnings that can't be disabled (afaik)
19106a0203fb 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 7445
diff changeset
    83
ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
19106a0203fb 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 7445
diff changeset
    84
CFLAGS += -fvisibility=hidden
19106a0203fb 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 7445
diff changeset
    85
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
ARCHFLAG/i486    = -m32 -march=i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
ARCHFLAG/amd64   = -m64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
ARCHFLAG/ia64    =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
ARCHFLAG/sparc   = -m32 -mcpu=v9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
ARCHFLAG/sparcv9 = -m64 -mcpu=v9
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    93
ARCHFLAG/arm     =  -fsigned-char
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
    94
ARCHFLAG/zero    = $(ZERO_ARCHFLAG)
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    95
ifndef E500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    96
ARCHFLAG/ppc     =  -mcpu=powerpc
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    97
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
CFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
AOUT_FLAGS += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
LFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
ASFLAGS    += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   104
ifdef E500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   105
CFLAGS += -DE500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   106
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   107
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
# Use C++ Interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  CFLAGS += -DCC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   113
# Build for embedded targets
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   114
ifdef JAVASE_EMBEDDED
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   115
  CFLAGS += -DJAVASE_EMBEDDED
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   116
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   117
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
# Keep temporary files (.ii, .s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
ifdef NEED_ASM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  CFLAGS += -save-temps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  CFLAGS += -pipe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
# Compiler warnings are treated as errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
WARNINGS_ARE_ERRORS = -Werror
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   127
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
# Except for a few acceptable ones
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   129
# 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
   130
# 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
   131
# it off explicitly. 
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   132
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
   133
ACCEPTABLE_WARNINGS = -Wpointer-arith -Wsign-compare
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   134
else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
ACCEPTABLE_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   136
endif
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   137
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ACCEPTABLE_WARNINGS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
# Special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@)) 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
# The flags to use for an Optimized g++ build
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
OPT_CFLAGS += -O3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
# Hotspot uses very unstrict aliasing turn this optimization off
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
OPT_CFLAGS += -fno-strict-aliasing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
# if we use expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
OPT_CFLAGS += -fno-expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
OPT_CFLAGS/NOOPT=-O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
2734
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   156
# 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
   157
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
   158
OPT_CFLAGS/mulnode.o += -O0
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   159
endif
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   160
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   161
# Flags for generating make dependency flags.
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   162
ifneq ("${CC_VER_MAJOR}", "2")
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   163
DEPFLAGS = -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   164
endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   165
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   166
# -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
   167
ifeq ($(USE_PRECOMPILED_HEADER),0)
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   168
CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   169
endif
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   170
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
# Linker flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
# statically link libstdc++.so, work with gcc but ignored by g++
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
# statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
ifneq ("${CC_VER_MAJOR}", "2")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
STATIC_LIBGCC += -static-libgcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
LFLAGS += -Wl,-relax
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
# Enable linker optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
LFLAGS += -Xlinker -O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
2102
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   189
# 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
   190
#   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
   191
_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
   192
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
   193
  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
   194
endif
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   195
LFLAGS += $(LDFLAGS_HASH_STYLE)
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   196
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
MAPFLAG = -Xlinker --version-script=FILENAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
SONAMEFLAG = -Xlinker -soname=SONAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
# Build shared library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
SHARED_FLAG = -shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
# Keep symbols even they are not used
9408
8bb4e957dea0 7041156: gcc 4.6 doesn't recognise -export-dynamic option
dsamersoff
parents: 8921
diff changeset
   207
AOUT_FLAGS += -Xlinker -export-dynamic
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
# Debug flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
# Use the stabs format for debugging information (this is the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
# on gcc-2.91). It's good enough, has all the information about line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
# numbers and local variables, and libjvm_g.so is only about 16M.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
# Change this back to "-g" if you want the most expressive format.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
# (warning: that could easily inflate libjvm_g.so to 150M!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
# Note: The Itanium gcc compiler crashes when using -gstabs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
DEBUG_CFLAGS/ia64  = -g
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
DEBUG_CFLAGS/amd64 = -g
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   220
DEBUG_CFLAGS/arm   = -g
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   221
DEBUG_CFLAGS/ppc   = -g
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
DEBUG_CFLAGS += -gstabs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
endif
2784
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   226
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   227
ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   228
  FASTDEBUG_CFLAGS/ia64  = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   229
  FASTDEBUG_CFLAGS/amd64 = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   230
  FASTDEBUG_CFLAGS/arm   = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   231
  FASTDEBUG_CFLAGS/ppc   = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   232
  FASTDEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   233
  ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   234
    FASTDEBUG_CFLAGS += -gstabs
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   235
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   236
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   237
  OPT_CFLAGS/ia64  = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   238
  OPT_CFLAGS/amd64 = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   239
  OPT_CFLAGS/arm   = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   240
  OPT_CFLAGS/ppc   = -g
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   241
  OPT_CFLAGS += $(OPT_CFLAGS/$(BUILDARCH))
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   242
  ifeq ($(OPT_CFLAGS/$(BUILDARCH)),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   243
    OPT_CFLAGS += -gstabs
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   244
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   245
endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   246
2784
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   247
# DEBUG_BINARIES overrides everything, use full -g debug information
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   248
ifeq ($(DEBUG_BINARIES), true)
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   249
  DEBUG_CFLAGS = -g
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   250
  CFLAGS += $(DEBUG_CFLAGS)
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2105
diff changeset
   251
endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   252
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   253
# If we are building HEADLESS, pass on to VM
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   254
# so it can set the java.awt.headless property
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   255
ifdef HEADLESS
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   256
CFLAGS += -DHEADLESS
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   257
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   258
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   259
# We are building Embedded for a small device
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   260
# favor code space over speed
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   261
ifdef MINIMIZE_RAM_USAGE
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   262
CFLAGS += -DMINIMIZE_RAM_USAGE
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   263
endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   264
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   265
ifdef CROSS_COMPILE_ARCH
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   266
  STRIP = $(ALT_COMPILER_PATH)/strip
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   267
else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   268
  STRIP = strip
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   269
endif