hotspot/make/linux/makefiles/gcc.make
author ccheung
Thu, 13 Jun 2013 22:02:40 -0700
changeset 18073 f02460441ddc
parent 17880 17f3d10c297f
child 18447 1481a04c99e2
permissions -rw-r--r--
8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux Reviewed-by: dholmes, coleenp Contributed-by: jeremymanson@google.com, calvin.cheung@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 11721
diff changeset
     2
# Copyright (c) 1999, 2012, 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
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
  # When cross-compiling the ALT_COMPILER_PATH points
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    31
  # to the cross-compilation toolset
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    32
  ifdef CROSS_COMPILE_ARCH
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    33
    CXX = $(ALT_COMPILER_PATH)/g++
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    34
    CC  = $(ALT_COMPILER_PATH)/gcc
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    35
    HOSTCXX = g++
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    36
    HOSTCC  = gcc
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    37
    STRIP = $(ALT_COMPILER_PATH)/strip
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    38
  else
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    39
    ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    40
      CXX = clang++
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    41
      CC  = clang
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    42
    else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    43
      CXX = g++
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    44
      CC  = gcc
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    45
    endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    46
11955
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    47
    HOSTCXX = $(CXX)
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    48
    HOSTCC  = $(CC)
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    49
    STRIP = strip
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    50
  endif
aeca8151886e 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 11721
diff changeset
    51
  AS  = $(CC) -c
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    52
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
    53
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    55
ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    56
  CC_VER_MAJOR := $(shell $(CC) -v 2>&1 | grep version | sed "s/.*version \([0-9]*\.[0-9]*\).*/\1/" | cut -d'.' -f1)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    57
  CC_VER_MINOR := $(shell $(CC) -v 2>&1 | grep version | sed "s/.*version \([0-9]*\.[0-9]*\).*/\1/" | cut -d'.' -f2)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    58
else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    59
  # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    60
  # prints the numbers (e.g. "2.95", "3.2.1")
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    61
  CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    62
  CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    63
endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    64
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    65
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    66
ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    67
  # Clang has precompiled headers support by default, but the user can switch
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    68
  # it off by using 'USE_PRECOMPILED_HEADER=0'.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    69
  ifdef LP64
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    70
    ifeq ($(USE_PRECOMPILED_HEADER),)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    71
      USE_PRECOMPILED_HEADER=1
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    72
    endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    73
  else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    74
    # We don't support precompiled headers on 32-bit builds because there some files are
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    75
    # compiled with -fPIC while others are compiled without (see 'NONPIC_OBJ_FILES' rules.make)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    76
    # Clang produces an error if the PCH file was compiled with other options than the actual compilation unit.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    77
    USE_PRECOMPILED_HEADER=0
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    78
  endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    79
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    80
  ifeq ($(USE_PRECOMPILED_HEADER),1)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    81
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    82
    ifndef LP64
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    83
      $(error " Precompiled Headers only supported on 64-bit platforms!")
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    84
    endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    85
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    86
    PRECOMPILED_HEADER_DIR=.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    87
    PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    88
    PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.pch
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    90
    PCH_FLAG = -include precompiled.hpp
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    91
    PCH_FLAG/DEFAULT = $(PCH_FLAG)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    92
    PCH_FLAG/NO_PCH = -DNO_PCH
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    93
    PCH_FLAG/BY_FILE = $(PCH_FLAG/$@)$(PCH_FLAG/DEFAULT$(PCH_FLAG/$@))
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    94
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    95
    VM_PCH_FLAG/LIBJVM = $(PCH_FLAG/BY_FILE)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    96
    VM_PCH_FLAG/AOUT =
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    97
    VM_PCH_FLAG = $(VM_PCH_FLAG/$(LINK_INTO))
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    98
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
    99
    # We only use precompiled headers for the JVM build
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   100
    CFLAGS += $(VM_PCH_FLAG)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   101
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   102
    # There are some files which don't like precompiled headers
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   103
    # The following files are build with 'OPT_CFLAGS/NOOPT' (-O0) in the opt build.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   104
    # But Clang doesn't support a precompiled header which was compiled with -O3
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   105
    # to be used in a compilation unit which uses '-O0'. We could also prepare an
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   106
    # extra '-O0' PCH file for the opt build and use it here, but it's probably
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   107
    # not worth the effoert as long as only two files need this special handling.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   108
    PCH_FLAG/loopTransform.o = $(PCH_FLAG/NO_PCH)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   109
    PCH_FLAG/sharedRuntimeTrig.o = $(PCH_FLAG/NO_PCH)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   110
    PCH_FLAG/sharedRuntimeTrans.o = $(PCH_FLAG/NO_PCH)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   111
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   112
  endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   113
else # ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   114
  # check for precompiled headers support
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   115
  ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   116
    # Allow the user to turn off precompiled headers from the command line.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   117
    ifneq ($(USE_PRECOMPILED_HEADER),0)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   118
      PRECOMPILED_HEADER_DIR=.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   119
      PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   120
      PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   121
    endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   122
  endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
endif
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   124
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   125
# -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   126
ifeq ($(USE_PRECOMPILED_HEADER),0)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   127
  CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   128
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
# Compiler flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
# position-independent code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
PICFLAG = -fPIC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
VM_PICFLAG/LIBJVM = $(PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
VM_PICFLAG/AOUT   =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
VM_PICFLAG        = $(VM_PICFLAG/$(LINK_INTO))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
12156
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 11955
diff changeset
   141
ifeq ($(JVM_VARIANT_ZERO), true)
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
   142
CFLAGS += $(LIBFFI_CFLAGS)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
   143
endif
12156
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 11955
diff changeset
   144
ifeq ($(JVM_VARIANT_ZEROSHARK), true)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 11955
diff changeset
   145
CFLAGS += $(LIBFFI_CFLAGS)
6187
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6176
diff changeset
   146
CFLAGS += $(LLVM_CFLAGS)
4fa7845f7c14 6976186: integrate Shark HotSpot changes
twisti
parents: 6176
diff changeset
   147
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
CFLAGS += $(VM_PICFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
CFLAGS += -fno-rtti
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
CFLAGS += -fno-exceptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
CFLAGS += -D_REENTRANT
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   152
ifeq ($(USE_CLANG),)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   153
  CFLAGS += -fcheck-new
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   154
  # version 4 and above support fvisibility=hidden (matches jni_x86.h file)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   155
  # except 4.1.2 gives pointless warnings that can't be disabled (afaik)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   156
  ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   157
    CFLAGS += -fvisibility=hidden
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   158
  endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   159
else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   160
  CFLAGS += -fvisibility=hidden
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   161
endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   162
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   163
ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   164
  # Before Clang 3.1, we had to pass the stack alignment specification directly to llvm with the help of '-mllvm'
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   165
  # Starting with version 3.1, Clang understands the '-mstack-alignment' (and rejects '-mllvm -stack-alignment')
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   166
  ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 1 \) \))" "0"
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   167
    STACK_ALIGNMENT_OPT = -mno-omit-leaf-frame-pointer -mstack-alignment=16
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   168
  else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   169
    STACK_ALIGNMENT_OPT = -mno-omit-leaf-frame-pointer -mllvm -stack-alignment=16
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   170
  endif
8106
19106a0203fb 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 7445
diff changeset
   171
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
ARCHFLAG/i486    = -m32 -march=i586
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   175
ARCHFLAG/amd64   = -m64 $(STACK_ALIGNMENT_OPT)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
ARCHFLAG/ia64    =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
ARCHFLAG/sparc   = -m32 -mcpu=v9
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
ARCHFLAG/sparcv9 = -m64 -mcpu=v9
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   179
ARCHFLAG/arm     =  -fsigned-char
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 2787
diff changeset
   180
ARCHFLAG/zero    = $(ZERO_ARCHFLAG)
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   181
ifndef E500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   182
ARCHFLAG/ppc     =  -mcpu=powerpc
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   183
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
CFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
AOUT_FLAGS += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
LFLAGS     += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
ASFLAGS    += $(ARCHFLAG)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   190
ifdef E500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   191
CFLAGS += -DE500V2
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   192
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   193
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
# Use C++ Interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  CFLAGS += -DCC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
# Keep temporary files (.ii, .s)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
ifdef NEED_ASM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  CFLAGS += -save-temps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  CFLAGS += -pipe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
# Compiler warnings are treated as errors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
WARNINGS_ARE_ERRORS = -Werror
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   208
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   209
ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   210
  # However we need to clean the code up before we can unrestrictedly enable this option with Clang
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   211
  WARNINGS_ARE_ERRORS += -Wno-unused-value -Wno-logical-op-parentheses -Wno-parentheses-equality -Wno-parentheses
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   212
  WARNINGS_ARE_ERRORS += -Wno-switch -Wno-tautological-constant-out-of-range-compare -Wno-tautological-compare
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   213
  WARNINGS_ARE_ERRORS += -Wno-delete-non-virtual-dtor -Wno-deprecated -Wno-format -Wno-dynamic-class-memaccess
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   214
  WARNINGS_ARE_ERRORS += -Wno-return-type -Wno-empty-body
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   215
endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   216
18073
f02460441ddc 8014431: cleanup warnings indicated by the -Wunused-value compiler option on linux
ccheung
parents: 17880
diff changeset
   217
WARNING_FLAGS = -Wpointer-arith -Wsign-compare -Wundef -Wunused-function -Wunused-value
16670
4af09aff4237 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 15938
diff changeset
   218
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   219
ifeq ($(USE_CLANG),)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   220
  # Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   221
  # conversions which might affect the values. Only enable it in earlier versions.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   222
  ifeq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   223
    WARNING_FLAGS += -Wconversion
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   224
  endif
775
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   225
endif
d9c9b9cd55fb 6718830: Hotspot fails to build with gcc 4.3
xlu
parents: 744
diff changeset
   226
15938
fb5f9016ddbc 8008474: Add -Wundef to warning flags.
jprovino
parents: 14815
diff changeset
   227
CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(WARNING_FLAGS)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
# Special cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@)) 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
# The flags to use for an Optimized g++ build
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   232
OPT_CFLAGS/SIZE=-Os
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   233
OPT_CFLAGS/SPEED=-O3
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
# Hotspot uses very unstrict aliasing turn this optimization off
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   236
# This option is added to CFLAGS rather than OPT_CFLAGS
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   237
# so that OPT_CFLAGS overrides get this option too.
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   238
CFLAGS += -fno-strict-aliasing 
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   239
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   240
OPT_CFLAGS_DEFAULT ?= SPEED
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   241
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   242
ifdef OPT_CFLAGS
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   243
  ifneq ("$(origin OPT_CFLAGS)", "command line")
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   244
    $(error " Use OPT_EXTRAS instead of OPT_CFLAGS to add extra flags to OPT_CFLAGS.")
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   245
  endif
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   246
endif
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   247
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13473
diff changeset
   248
OPT_CFLAGS = $(OPT_CFLAGS/$(OPT_CFLAGS_DEFAULT)) $(OPT_EXTRAS)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
# if we use expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
ifeq ($(BUILDARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
OPT_CFLAGS += -fno-expensive-optimizations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
OPT_CFLAGS/NOOPT=-O0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   258
# Work around some compiler bugs.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   259
ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   260
  ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 2), 1)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   261
    OPT_CFLAGS/loopTransform.o += $(OPT_CFLAGS/NOOPT)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   262
  endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   263
else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   264
  # 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   265
  ifeq ($(shell expr $(CC_VER_MAJOR) = 4 \& $(CC_VER_MINOR) = 3), 1)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   266
    OPT_CFLAGS/mulnode.o += $(OPT_CFLAGS/NOOPT)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   267
  endif
2734
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   268
endif
a15982b3cd69 6835796: Fedora 9 linux_i586-fastdebug-c2-runThese_Xcomp times out
kvn
parents: 2105
diff changeset
   269
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   270
# Flags for generating make dependency flags.
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   271
DEPFLAGS = -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   272
ifeq ($(USE_CLANG),)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   273
  ifneq ("${CC_VER_MAJOR}", "2")
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   274
    DEPFLAGS += -fpch-deps
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   275
  endif
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   276
endif
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
   277
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
# Linker flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
# statically link libstdc++.so, work with gcc but ignored by g++
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   284
ifeq ($(USE_CLANG),)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   285
  # statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   286
  ifneq ("${CC_VER_MAJOR}", "2")
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   287
    STATIC_LIBGCC += -static-libgcc
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   288
  endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   290
  ifeq ($(BUILDARCH), ia64)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   291
    LFLAGS += -Wl,-relax
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   292
  endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
# Enable linker optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
LFLAGS += -Xlinker -O1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   298
ifeq ($(USE_CLANG),)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   299
  # If this is a --hash-style=gnu system, use --hash-style=both
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   300
  #   The gnu .hash section won't work on some Linux systems like SuSE 10.
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   301
  _HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   302
  ifneq ($(_HAS_HASH_STYLE_GNU),)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   303
    LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   304
  endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   305
else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   306
  # Don't know how to find out the 'hash style' of a system as '-dumpspecs'
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   307
  # doesn't work for Clang. So for now we'll alwys use --hash-style=both
2102
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   308
  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
   309
endif
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   310
2102
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   311
LFLAGS += $(LDFLAGS_HASH_STYLE)
4a1023ae7252 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 781
diff changeset
   312
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
MAPFLAG = -Xlinker --version-script=FILENAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
SONAMEFLAG = -Xlinker -soname=SONAME
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
# Build shared library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
SHARED_FLAG = -shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
# Keep symbols even they are not used
9408
8bb4e957dea0 7041156: gcc 4.6 doesn't recognise -export-dynamic option
dsamersoff
parents: 8921
diff changeset
   323
AOUT_FLAGS += -Xlinker -export-dynamic
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
#------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
# Debug flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   328
ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   329
  # Restrict the debug information created by Clang to avoid
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   330
  # too big object files and speed the build up a little bit
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   331
  # (see http://llvm.org/bugs/show_bug.cgi?id=7554)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   332
  CFLAGS += -flimit-debug-info
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   333
endif
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   334
13473
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   335
# DEBUG_BINARIES uses full -g debug information for all configs
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   336
ifeq ($(DEBUG_BINARIES), true)
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   337
  CFLAGS += -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   338
else
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   339
  # Use the stabs format for debugging information (this is the default
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   340
  # on gcc-2.91). It's good enough, has all the information about line
14815
41114a74463a 7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents: 13975
diff changeset
   341
  # numbers and local variables, and libjvm.so is only about 16M.
13473
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   342
  # Change this back to "-g" if you want the most expressive format.
14815
41114a74463a 7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents: 13975
diff changeset
   343
  # (warning: that could easily inflate libjvm.so to 150M!)
13473
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   344
  # Note: The Itanium gcc compiler crashes when using -gstabs.
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   345
  DEBUG_CFLAGS/ia64  = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   346
  DEBUG_CFLAGS/amd64 = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   347
  DEBUG_CFLAGS/arm   = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   348
  DEBUG_CFLAGS/ppc   = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   349
  DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   350
  ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   351
      ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   352
        # Clang doesn't understand -gstabs
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   353
        OPT_CFLAGS += -g
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   354
      else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   355
        OPT_CFLAGS += -gstabs
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   356
      endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   357
  endif
13473
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   358
  
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   359
  ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   360
    FASTDEBUG_CFLAGS/ia64  = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   361
    FASTDEBUG_CFLAGS/amd64 = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   362
    FASTDEBUG_CFLAGS/arm   = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   363
    FASTDEBUG_CFLAGS/ppc   = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   364
    FASTDEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   365
    ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   366
      ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   367
        # Clang doesn't understand -gstabs
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   368
        OPT_CFLAGS += -g
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   369
      else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   370
        OPT_CFLAGS += -gstabs
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   371
      endif
13473
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   372
    endif
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   373
  
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   374
    OPT_CFLAGS/ia64  = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   375
    OPT_CFLAGS/amd64 = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   376
    OPT_CFLAGS/arm   = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   377
    OPT_CFLAGS/ppc   = -g
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   378
    OPT_CFLAGS += $(OPT_CFLAGS/$(BUILDARCH))
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   379
    ifeq ($(OPT_CFLAGS/$(BUILDARCH)),)
17880
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   380
      ifeq ($(USE_CLANG), true)
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   381
        # Clang doesn't understand -gstabs
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   382
        OPT_CFLAGS += -g
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   383
      else
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   384
        OPT_CFLAGS += -gstabs
17f3d10c297f 8015252: Enable HotSpot build with Clang
simonis
parents: 16670
diff changeset
   385
      endif
13473
9bbabe271025 7188168: 7071904 broke the DEBUG_BINARIES option on Linux
dcubed
parents: 12943
diff changeset
   386
    endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   387
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   388
endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 9408
diff changeset
   389
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   390
# If we are building HEADLESS, pass on to VM
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   391
# so it can set the java.awt.headless property
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   392
ifdef HEADLESS
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   393
CFLAGS += -DHEADLESS
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   394
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   395
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   396
# We are building Embedded for a small device
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   397
# favor code space over speed
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   398
ifdef MINIMIZE_RAM_USAGE
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   399
CFLAGS += -DMINIMIZE_RAM_USAGE
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   400
endif