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 # Build for embedded targets
 120 ifdef JAVASE_EMBEDDED
 121   CFLAGS += -DJAVASE_EMBEDDED
 122 endif
 123 
 124 # Keep temporary files (.ii, .s)
 125 ifdef NEED_ASM
 126   CFLAGS += -save-temps
 127 else
 128   CFLAGS += -pipe
 129 endif
 130 
 131 # Compiler warnings are treated as errors
 132 WARNINGS_ARE_ERRORS = -Werror
 133 
 134 # Except for a few acceptable ones
 135 # Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
 136 # conversions which might affect the values. To avoid that, we need to turn
 137 # it off explicitly. 
 138 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
 139 ACCEPTABLE_WARNINGS = -Wpointer-arith -Wsign-compare
 140 else
 141 ACCEPTABLE_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare
 142 endif
 143 
 144 CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ACCEPTABLE_WARNINGS)
 145 # Special cases
 146 CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@)) 
 147 
 148 # The flags to use for an Optimized g++ build
 149 OPT_CFLAGS += -O3
 150 
 151 # Hotspot uses very unstrict aliasing turn this optimization off
 152 OPT_CFLAGS += -fno-strict-aliasing
 153 
 154 # The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp 
 155 # if we use expensive-optimizations
 156 ifeq ($(BUILDARCH), ia64)
 157 OPT_CFLAGS += -fno-expensive-optimizations
 158 endif
 159 
 160 OPT_CFLAGS/NOOPT=-O0
 161 
 162 # 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation. 
 163 ifneq "$(shell expr \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) = 3 \) \))" "0"
 164 OPT_CFLAGS/mulnode.o += -O0
 165 endif
 166 
 167 # Flags for generating make dependency flags.
 168 ifneq ("${CC_VER_MAJOR}", "2")
 169 DEPFLAGS = -fpch-deps -MMD -MP -MF $(DEP_DIR)/$(@:%=%.d)
 170 endif
 171 
 172 # -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
 173 ifeq ($(USE_PRECOMPILED_HEADER),0)
 174 CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
 175 endif
 176 
 177 #------------------------------------------------------------------------
 178 # Linker flags
 179 
 180 # statically link libstdc++.so, work with gcc but ignored by g++
 181 STATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
 182 
 183 # statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
 184 ifneq ("${CC_VER_MAJOR}", "2")
 185 STATIC_LIBGCC += -static-libgcc
 186 endif
 187 
 188 ifeq ($(BUILDARCH), ia64)
 189 LFLAGS += -Wl,-relax
 190 endif
 191 
 192 # Enable linker optimization
 193 LFLAGS += -Xlinker -O1
 194 
 195 # If this is a --hash-style=gnu system, use --hash-style=both
 196 #   The gnu .hash section won't work on some Linux systems like SuSE 10.
 197 _HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
 198 ifneq ($(_HAS_HASH_STYLE_GNU),)
 199   LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
 200 endif
 201 LFLAGS += $(LDFLAGS_HASH_STYLE)
 202 
 203 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
 204 MAPFLAG = -Xlinker --version-script=FILENAME
 205 
 206 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
 207 SONAMEFLAG = -Xlinker -soname=SONAME
 208 
 209 # Build shared library
 210 SHARED_FLAG = -shared
 211 
 212 # Keep symbols even they are not used
 213 AOUT_FLAGS += -Xlinker -export-dynamic
 214 
 215 #------------------------------------------------------------------------
 216 # Debug flags
 217 
 218 # DEBUG_BINARIES uses full -g debug information for all configs
 219 ifeq ($(DEBUG_BINARIES), true)
 220   CFLAGS += -g
 221 else
 222   # Use the stabs format for debugging information (this is the default
 223   # on gcc-2.91). It's good enough, has all the information about line
 224   # numbers and local variables, and libjvm_g.so is only about 16M.
 225   # Change this back to "-g" if you want the most expressive format.
 226   # (warning: that could easily inflate libjvm_g.so to 150M!)
 227   # Note: The Itanium gcc compiler crashes when using -gstabs.
 228   DEBUG_CFLAGS/ia64  = -g
 229   DEBUG_CFLAGS/amd64 = -g
 230   DEBUG_CFLAGS/arm   = -g
 231   DEBUG_CFLAGS/ppc   = -g
 232   DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
 233   ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
 234     DEBUG_CFLAGS += -gstabs
 235   endif
 236   
 237   ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 238     FASTDEBUG_CFLAGS/ia64  = -g
 239     FASTDEBUG_CFLAGS/amd64 = -g
 240     FASTDEBUG_CFLAGS/arm   = -g
 241     FASTDEBUG_CFLAGS/ppc   = -g
 242     FASTDEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
 243     ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
 244       FASTDEBUG_CFLAGS += -gstabs
 245     endif
 246   
 247     OPT_CFLAGS/ia64  = -g
 248     OPT_CFLAGS/amd64 = -g
 249     OPT_CFLAGS/arm   = -g
 250     OPT_CFLAGS/ppc   = -g
 251     OPT_CFLAGS += $(OPT_CFLAGS/$(BUILDARCH))
 252     ifeq ($(OPT_CFLAGS/$(BUILDARCH)),)
 253       OPT_CFLAGS += -gstabs
 254     endif
 255   endif
 256 endif
 257 
 258 # If we are building HEADLESS, pass on to VM
 259 # so it can set the java.awt.headless property
 260 ifdef HEADLESS
 261 CFLAGS += -DHEADLESS
 262 endif
 263 
 264 # We are building Embedded for a small device
 265 # favor code space over speed
 266 ifdef MINIMIZE_RAM_USAGE
 267 CFLAGS += -DMINIMIZE_RAM_USAGE
 268 endif