hotspot/make/solaris/makefiles/gcc.make
author bharadwaj
Tue, 19 Apr 2016 15:26:52 -0400
changeset 38337 8aea60827524
parent 35948 df8ecc74bf4a
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 15938
diff changeset
     2
# Copyright (c) 1998, 2013, 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.
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
    22
#
1
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
11955
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    28
# If a SPEC is not set already, then use these defaults.
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    29
ifeq ($(SPEC),)
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    30
  CXX = g++
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    31
  CC  = gcc
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    32
  AS  = $(CC) -c
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    33
  MCS = /usr/ccs/bin/mcs
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    34
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
Compiler = gcc
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)
33466
ca5ee1f94b60 8140091: remove VMStructs cast_uint64_t workaround for GCC 4.1.1 bug
twisti
parents: 27875
diff changeset
    42
CC_VER_MICRO := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f3)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
    44
# Check for the versions of C++ and C compilers ($CXX and $CC) used.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
# Get the last thing on the line that looks like x.x+ (x is a digit).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
COMPILER_REV := \
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11205
diff changeset
    48
$(shell $(CXX) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11205
diff changeset
    49
CC_COMPILER_REV := \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
$(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
# check for precompiled headers support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
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
    55
# 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
    56
ifneq ($(USE_PRECOMPILED_HEADER),0)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
PRECOMPILED_HEADER_DIR=.
10830
f3fedfa29811 7106766: Move the precompiled header from the src/share/vm directory
brutisso
parents: 7408
diff changeset
    58
PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    59
PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
endif
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
    61
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
# Compiler flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
# position-independent code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
PICFLAG = -fPIC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
VM_PICFLAG/LIBJVM = $(PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
VM_PICFLAG/AOUT   =
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
VM_PICFLAG        = $(VM_PICFLAG/$(LINK_INTO))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
CFLAGS += $(VM_PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
CFLAGS += -fno-rtti
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
CFLAGS += -fno-exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
CFLAGS += -D_REENTRANT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
CFLAGS += -fcheck-new
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
ARCHFLAG/sparc   = -m32 -mcpu=v9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
ARCHFLAG/sparcv9 = -m64 -mcpu=v9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
ARCHFLAG/i486    = -m32 -march=i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
ARCHFLAG/amd64   = -m64 -march=k8
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
# Optional sub-directory in /usr/lib where BUILDARCH libraries are kept.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
ISA_DIR=$(ISA_DIR/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
ISA_DIR/amd64=/amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
ISA_DIR/i486=
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
ISA_DIR/sparcv9=/64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
CFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
AOUT_FLAGS += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
LFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
ASFLAGS    += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
ifeq ($(BUILDARCH), amd64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
ASFLAGS += -march=k8  -march=amd64
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   102
LFLAGS += -march=k8
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
# Use C++ Interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  CFLAGS += -DCC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
# Keep temporary files (.ii, .s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
ifdef NEED_ASM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  CFLAGS += -save-temps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  CFLAGS += -pipe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   119
# Compiler warnings are treated as errors
35948
df8ecc74bf4a 8144695: --disable-warnings-as-errors does not work for HotSpot build
iignatyev
parents: 33466
diff changeset
   120
WARNINGS_ARE_ERRORS ?= -Werror
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   121
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
# Enable these warnings. See 'info gcc' about details on these options
23185
a2143156a0a0 8036122: Fix warning 'format not a string literal'
goetz
parents: 22784
diff changeset
   123
WARNING_FLAGS = -Wpointer-arith -Wconversion -Wsign-compare -Wundef -Wformat=2
15938
fb5f9016ddbc 8008474: Add -Wundef to warning flags.
jprovino
parents: 14815
diff changeset
   124
CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(WARNING_FLAGS)
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   125
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   126
# Special cases
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   127
CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   129
# optimization control flags (Used by fastdebug and release variants)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   130
OPT_CFLAGS/NOOPT=-O0
25498
52d596882831 8047734: Backout use of -Og
mduigou
parents: 24955
diff changeset
   131
OPT_CFLAGS/DEBUG=-O0
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   132
OPT_CFLAGS/SIZE=-Os
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   133
OPT_CFLAGS/SPEED=-O3
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   134
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   135
OPT_CFLAGS_DEFAULT ?= SPEED
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
# Hotspot uses very unstrict aliasing turn this optimization off
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   138
# This option is added to CFLAGS rather than OPT_CFLAGS
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   139
# so that OPT_CFLAGS overrides get this option too.
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   140
CFLAGS += -fno-strict-aliasing
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   142
ifdef OPT_CFLAGS
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   143
  ifneq ("$(origin OPT_CFLAGS)", "command line")
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   144
    $(error " Use OPT_EXTRAS instead of OPT_CFLAGS to add extra flags to OPT_CFLAGS.")
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   145
  endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   146
endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   147
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   148
OPT_CFLAGS = $(OPT_CFLAGS/$(OPT_CFLAGS_DEFAULT)) $(OPT_EXTRAS)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   149
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   150
# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
# if we use expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
# Note: all ia64 setting reflect the ones for linux
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
# No actial testing was performed: there is no Solaris on ia64 presently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
OPT_CFLAGS/bytecodeInterpreter.o += -fno-expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   158
# Work around some compiler bugs.
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   159
ifeq ($(USE_CLANG), true)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   160
  ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 2), 1)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   161
    OPT_CFLAGS/loopTransform.o += $(OPT_CFLAGS/NOOPT)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   162
  endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   163
else
33466
ca5ee1f94b60 8140091: remove VMStructs cast_uint64_t workaround for GCC 4.1.1 bug
twisti
parents: 27875
diff changeset
   164
  # Do not allow GCC 4.1.1
ca5ee1f94b60 8140091: remove VMStructs cast_uint64_t workaround for GCC 4.1.1 bug
twisti
parents: 27875
diff changeset
   165
  ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 1 \& $(CC_VER_MICRO) = 1), 1)
ca5ee1f94b60 8140091: remove VMStructs cast_uint64_t workaround for GCC 4.1.1 bug
twisti
parents: 27875
diff changeset
   166
    $(error "GCC $(CC_VER_MAJOR).$(CC_VER_MINOR).$(CC_VER_MICRO) not supported because of https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27724")
ca5ee1f94b60 8140091: remove VMStructs cast_uint64_t workaround for GCC 4.1.1 bug
twisti
parents: 27875
diff changeset
   167
  endif
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   168
  # 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation.
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   169
  ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 3), 1)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   170
    OPT_CFLAGS/mulnode.o += $(OPT_CFLAGS/NOOPT)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   171
  endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   172
endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   173
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   174
# Flags for generating make dependency flags.
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   175
ifneq ($(CC_VER_MAJOR), 2)
12943
5ebbcf0cb20f 7175914: Usage of gcc with precompiled headers produces wrong build dependencies
kamg
parents: 11955
diff changeset
   176
DEPFLAGS = -fpch-deps -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   177
endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   178
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   179
# -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
   180
ifeq ($(USE_PRECOMPILED_HEADER),0)
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   181
CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   182
endif
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   183
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
# Linker flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
# statically link libstdc++.so, work with gcc but ignored by g++
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
ifdef USE_GNULD
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   192
  # statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   193
  ifneq ($(CC_VER_MAJOR), 2)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   194
    STATIC_LIBGCC += -static-libgcc
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   195
  endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   196
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   197
  # Enable linker optimization
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   198
  LFLAGS += -Xlinker -O1
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   199
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   200
  ifneq (, findstring(debug,$(BUILD_FLAVOR)))
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   201
    # for relocations read-only
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   202
    LFLAGS += -Xlinker -z -Xlinker relro
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   204
    ifeq ($(BUILD_FLAVOR), debug)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   205
      # disable incremental relocations linking
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   206
      LFLAGS += -Xlinker -z -Xlinker now
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   207
    endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   208
  endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   209
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   210
  ifeq ($(BUILDARCH), ia64)
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   211
    # Note: all ia64 setting reflect the ones for linux
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   212
    # No actual testing was performed: there is no Solaris on ia64 presently
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   213
    LFLAGS += -Wl,-relax
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   214
  endif
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   215
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   216
  # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   217
  MAPFLAG = -Xlinker --version-script=FILENAME
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   218
else
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   219
  MAPFLAG = -Xlinker -M -Xlinker FILENAME
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   220
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
SONAMEFLAG = -Xlinker -soname=SONAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
# Build shared library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
SHARED_FLAG = -shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
# Debug flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
25498
52d596882831 8047734: Backout use of -Og
mduigou
parents: 24955
diff changeset
   231
# Allow no optimizations.
52d596882831 8047734: Backout use of -Og
mduigou
parents: 24955
diff changeset
   232
DEBUG_CFLAGS=-O0
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   233
27875
61e906cecd81 8065656: Use DWARF debug symbols for Solaris
ehelin
parents: 26172
diff changeset
   234
# Enable debug symbols
61e906cecd81 8065656: Use DWARF debug symbols for Solaris
ehelin
parents: 26172
diff changeset
   235
DEBUG_CFLAGS += -g
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   236
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   237
# Enable bounds checking.
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   238
ifeq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) )" "1"
26172
7ab032af2835 8047952: Remove _FORTIFY_SOURCE from fastdebug and slowdebug builds
mduigou
parents: 25498
diff changeset
   239
  # stack smashing checks.
7ab032af2835 8047952: Remove _FORTIFY_SOURCE from fastdebug and slowdebug builds
mduigou
parents: 25498
diff changeset
   240
  DEBUG_CFLAGS += -fstack-protector-all --param ssp-buffer-size=1
24955
fbde9efb7b56 8032045: Enable compiler and linker safety switches for debug builds
mduigou
parents: 23185
diff changeset
   241
endif