1 #
   2 # Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #  
  23 #
  24 
  25 #------------------------------------------------------------------------
  26 # CC, CXX & AS
  27 
  28 # If a SPEC is not set already, then use these defaults.
  29 ifeq ($(SPEC),)
  30   # When cross-compiling the ALT_COMPILER_PATH points
  31   # to the cross-compilation toolset
  32   ifdef CROSS_COMPILE_ARCH
  33     CXX = $(ALT_COMPILER_PATH)/g++
  34     CC  = $(ALT_COMPILER_PATH)/gcc
  35     HOSTCXX = g++
  36     HOSTCC  = gcc
  37     STRIP = $(ALT_COMPILER_PATH)/strip
  38   else
  39     CXX = g++
  40     CC  = gcc
  41     HOSTCXX = $(CXX)
  42     HOSTCC  = $(CC)
  43     STRIP = strip
  44   endif
  45   AS  = $(CC) -c
  46 endif
  47 
  48 
  49 # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
  50 # prints the numbers (e.g. "2.95", "3.2.1")
  51 CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
  52 CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
  53 
  54 # check for precompiled headers support
  55 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
  56 # Allow the user to turn off precompiled headers from the command line.
  57 ifneq ($(USE_PRECOMPILED_HEADER),0)
  58 PRECOMPILED_HEADER_DIR=.
  59 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
  60 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
  61 endif
  62 endif
  63 
  64 
  65 #------------------------------------------------------------------------
  66 # Compiler flags
  67 
  68 # position-independent code
  69 PICFLAG = -fPIC
  70 
  71 VM_PICFLAG/LIBJVM = $(PICFLAG)
  72 VM_PICFLAG/AOUT   =
  73 VM_PICFLAG        = $(VM_PICFLAG/$(LINK_INTO))
  74 
  75 ifeq ($(JVM_VARIANT_ZERO), true)
  76 CFLAGS += $(LIBFFI_CFLAGS)
  77 endif
  78 ifeq ($(JVM_VARIANT_ZEROSHARK), true)
  79 CFLAGS += $(LIBFFI_CFLAGS)
  80 CFLAGS += $(LLVM_CFLAGS)
  81 endif
  82 CFLAGS += $(VM_PICFLAG)
  83 CFLAGS += -fno-rtti
  84 CFLAGS += -fno-exceptions
  85 CFLAGS += -D_REENTRANT
  86 CFLAGS += -fcheck-new
  87 # version 4 and above support fvisibility=hidden (matches jni_x86.h file)
  88 # except 4.1.2 gives pointless warnings that can't be disabled (afaik)
  89 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
  90 CFLAGS += -fvisibility=hidden
  91 endif
  92 
  93 ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
  94 ARCHFLAG/i486    = -m32 -march=i586
  95 ARCHFLAG/amd64   = -m64
  96 ARCHFLAG/ia64    =
  97 ARCHFLAG/sparc   = -m32 -mcpu=v9
  98 ARCHFLAG/sparcv9 = -m64 -mcpu=v9
  99 ARCHFLAG/arm     =  -fsigned-char
 100 ARCHFLAG/zero    = $(ZERO_ARCHFLAG)
 101 ifndef E500V2
 102 ARCHFLAG/ppc     =  -mcpu=powerpc
 103 endif
 104 
 105 CFLAGS     += $(ARCHFLAG)
 106 AOUT_FLAGS += $(ARCHFLAG)
 107 LFLAGS     += $(ARCHFLAG)
 108 ASFLAGS    += $(ARCHFLAG)
 109 
 110 ifdef E500V2
 111 CFLAGS += -DE500V2
 112 endif
 113 
 114 # Use C++ Interpreter
 115 ifdef CC_INTERP
 116   CFLAGS += -DCC_INTERP
 117 endif
 118 
 119 # Keep temporary files (.ii, .s)
 120 ifdef NEED_ASM
 121   CFLAGS += -save-temps
 122 else
 123   CFLAGS += -pipe
 124 endif
 125 
 126 # Compiler warnings are treated as errors
 127 WARNINGS_ARE_ERRORS = -Werror
 128 
 129 WARNING_FLAGS = -Wpointer-arith -Wsign-compare -Wundef -Wunused-function
 130 
 131 # Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
 132 # conversions which might affect the values. Only enable it in earlier versions.
 133 ifeq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
 134 WARNING_FLAGS += -Wconversion
 135 endif
 136 
 137 CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(WARNING_FLAGS)
 138 # Special cases
 139 CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@)) 
 140 
 141 # The flags to use for an Optimized g++ build
 142 OPT_CFLAGS/SIZE=-Os
 143 OPT_CFLAGS/SPEED=-O3
 144 
 145 # Hotspot uses very unstrict aliasing turn this optimization off
 146 # This option is added to CFLAGS rather than OPT_CFLAGS
 147 # so that OPT_CFLAGS overrides get this option too.
 148 CFLAGS += -fno-strict-aliasing 
 149 
 150 OPT_CFLAGS_DEFAULT ?= SPEED
 151 
 152 ifdef OPT_CFLAGS
 153   ifneq ("$(origin OPT_CFLAGS)", "command line")
 154     $(error " Use OPT_EXTRAS instead of OPT_CFLAGS to add extra flags to OPT_CFLAGS.")
 155   endif
 156 endif
 157 
 158 OPT_CFLAGS = $(OPT_CFLAGS/$(OPT_CFLAGS_DEFAULT)) $(OPT_EXTRAS)
 159 
 160 # The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp 
 161 # if we use expensive-optimizations
 162 ifeq ($(BUILDARCH), ia64)
 163 OPT_CFLAGS += -fno-expensive-optimizations
 164 endif
 165 
 166 OPT_CFLAGS/NOOPT=-O0
 167 
 168 # 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation. 
 169 ifneq "$(shell expr \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) = 3 \) \))" "0"
 170 OPT_CFLAGS/mulnode.o += -O0
 171 endif
 172 
 173 # Flags for generating make dependency flags.
 174 ifneq ("${CC_VER_MAJOR}", "2")
 175 DEPFLAGS = -fpch-deps -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
 176 endif
 177 
 178 # -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
 179 ifeq ($(USE_PRECOMPILED_HEADER),0)
 180 CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
 181 endif
 182 
 183 #------------------------------------------------------------------------
 184 # Linker flags
 185 
 186 # statically link libstdc++.so, work with gcc but ignored by g++
 187 STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
 188 
 189 # statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
 190 ifneq ("${CC_VER_MAJOR}", "2")
 191 STATIC_LIBGCC += -static-libgcc
 192 endif
 193 
 194 ifeq ($(BUILDARCH), ia64)
 195 LFLAGS += -Wl,-relax
 196 endif
 197 
 198 # Enable linker optimization
 199 LFLAGS += -Xlinker -O1
 200 
 201 # If this is a --hash-style=gnu system, use --hash-style=both
 202 #   The gnu .hash section won't work on some Linux systems like SuSE 10.
 203 _HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
 204 ifneq ($(_HAS_HASH_STYLE_GNU),)
 205   LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
 206 endif
 207 LFLAGS += $(LDFLAGS_HASH_STYLE)
 208 
 209 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
 210 MAPFLAG = -Xlinker --version-script=FILENAME
 211 
 212 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
 213 SONAMEFLAG = -Xlinker -soname=SONAME
 214 
 215 # Build shared library
 216 SHARED_FLAG = -shared
 217 
 218 # Keep symbols even they are not used
 219 AOUT_FLAGS += -Xlinker -export-dynamic
 220 
 221 #------------------------------------------------------------------------
 222 # Debug flags
 223 
 224 # DEBUG_BINARIES uses full -g debug information for all configs
 225 ifeq ($(DEBUG_BINARIES), true)
 226   CFLAGS += -g
 227 else
 228   # Use the stabs format for debugging information (this is the default
 229   # on gcc-2.91). It's good enough, has all the information about line
 230   # numbers and local variables, and libjvm.so is only about 16M.
 231   # Change this back to "-g" if you want the most expressive format.
 232   # (warning: that could easily inflate libjvm.so to 150M!)
 233   # Note: The Itanium gcc compiler crashes when using -gstabs.
 234   DEBUG_CFLAGS/ia64  = -g
 235   DEBUG_CFLAGS/amd64 = -g
 236   DEBUG_CFLAGS/arm   = -g
 237   DEBUG_CFLAGS/ppc   = -g
 238   DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
 239   ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
 240     DEBUG_CFLAGS += -gstabs
 241   endif
 242   
 243   ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 244     FASTDEBUG_CFLAGS/ia64  = -g
 245     FASTDEBUG_CFLAGS/amd64 = -g
 246     FASTDEBUG_CFLAGS/arm   = -g
 247     FASTDEBUG_CFLAGS/ppc   = -g
 248     FASTDEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
 249     ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
 250       FASTDEBUG_CFLAGS += -gstabs
 251     endif
 252   
 253     OPT_CFLAGS/ia64  = -g
 254     OPT_CFLAGS/amd64 = -g
 255     OPT_CFLAGS/arm   = -g
 256     OPT_CFLAGS/ppc   = -g
 257     OPT_CFLAGS += $(OPT_CFLAGS/$(BUILDARCH))
 258     ifeq ($(OPT_CFLAGS/$(BUILDARCH)),)
 259       OPT_CFLAGS += -gstabs
 260     endif
 261   endif
 262 endif
 263 
 264 # If we are building HEADLESS, pass on to VM
 265 # so it can set the java.awt.headless property
 266 ifdef HEADLESS
 267 CFLAGS += -DHEADLESS
 268 endif
 269 
 270 # We are building Embedded for a small device
 271 # favor code space over speed
 272 ifdef MINIMIZE_RAM_USAGE
 273 CFLAGS += -DMINIMIZE_RAM_USAGE
 274 endif