gcc.make revision 1601
0N/A#
579N/A# Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
0N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A# or visit www.oracle.com if you need additional information or have any
0N/A# questions.
0N/A#
0N/A#
0N/A
0N/A#------------------------------------------------------------------------
0N/A# CC, CPP & AS
0N/A
0N/Aifdef ALT_COMPILER_PATH
0N/ACPP = $(ALT_COMPILER_PATH)/g++
0N/ACC = $(ALT_COMPILER_PATH)/gcc
0N/Aelse
0N/ACPP = g++
0N/ACC = gcc
0N/Aendif
0N/A
0N/AAS = $(CC) -c
0N/A
0N/A# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
0N/A# prints the numbers (e.g. "2.95", "3.2.1")
0N/ACC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
0N/ACC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)
0N/A
0N/A# check for precompiled headers support
0N/Aifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
0N/AUSE_PRECOMPILED_HEADER=1
0N/APRECOMPILED_HEADER_DIR=.
0N/APRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/incls/_precompiled.incl.gch
0N/Aendif
0N/A
0N/A
0N/A#------------------------------------------------------------------------
0N/A# Compiler flags
0N/A
0N/A# position-independent code
0N/APICFLAG = -fPIC
0N/A
0N/AVM_PICFLAG/LIBJVM = $(PICFLAG)
0N/AVM_PICFLAG/AOUT =
0N/AVM_PICFLAG = $(VM_PICFLAG/$(LINK_INTO))
0N/A
0N/Aifeq ($(ZERO_BUILD), true)
0N/ACFLAGS += $(LIBFFI_CFLAGS)
0N/Aendif
0N/ACFLAGS += $(VM_PICFLAG)
0N/ACFLAGS += -fno-rtti
0N/ACFLAGS += -fno-exceptions
0N/ACFLAGS += -D_REENTRANT
0N/ACFLAGS += -fcheck-new
0N/A
0N/AARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
0N/AARCHFLAG/i486 = -m32 -march=i586
0N/AARCHFLAG/amd64 = -m64
0N/AARCHFLAG/ia64 =
0N/AARCHFLAG/sparc = -m32 -mcpu=v9
0N/AARCHFLAG/sparcv9 = -m64 -mcpu=v9
0N/AARCHFLAG/arm = -fsigned-char
0N/AARCHFLAG/zero = $(ZERO_ARCHFLAG)
0N/Aifndef E500V2
0N/AARCHFLAG/ppc = -mcpu=powerpc
0N/Aendif
0N/A
0N/ACFLAGS += $(ARCHFLAG)
0N/AAOUT_FLAGS += $(ARCHFLAG)
0N/ALFLAGS += $(ARCHFLAG)
0N/AASFLAGS += $(ARCHFLAG)
0N/A
229N/Aifdef E500V2
0N/ACFLAGS += -DE500V2
229N/Aendif
229N/A
229N/A# Use C++ Interpreter
229N/Aifdef CC_INTERP
229N/A CFLAGS += -DCC_INTERP
229N/Aendif
0N/A
229N/A# Build for embedded targets
229N/Aifdef JAVASE_EMBEDDED
0N/A CFLAGS += -DJAVASE_EMBEDDED
0N/Aendif
0N/A
0N/A# Keep temporary files (.ii, .s)
0N/Aifdef NEED_ASM
0N/A CFLAGS += -save-temps
0N/Aelse
0N/A CFLAGS += -pipe
0N/Aendif
0N/A
0N/A# Compiler warnings are treated as errors
0N/AWARNINGS_ARE_ERRORS = -Werror
0N/A
0N/A# Except for a few acceptable ones
0N/A# Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
0N/A# conversions which might affect the values. To avoid that, we need to turn
0N/A# it off explicitly.
0N/Aifneq "$(shell expr \( $(CC_VER_MAJOR) \> 4 \) \| \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
744N/AACCEPTABLE_WARNINGS = -Wpointer-arith -Wsign-compare
744N/Aelse
744N/AACCEPTABLE_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare
744N/Aendif
744N/A
0N/ACFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ACCEPTABLE_WARNINGS)
0N/A# Special cases
0N/ACFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))
0N/A
0N/A# The flags to use for an Optimized g++ build
0N/AOPT_CFLAGS += -O3
0N/A
0N/A# Hotspot uses very unstrict aliasing turn this optimization off
0N/AOPT_CFLAGS += -fno-strict-aliasing
0N/A
0N/A# The gcc compiler segv's on ia64 when compiling bytecodeInterpreter.cpp
0N/A# if we use expensive-optimizations
0N/Aifeq ($(BUILDARCH), ia64)
0N/AOPT_CFLAGS += -fno-expensive-optimizations
0N/Aendif
0N/A
0N/AOPT_CFLAGS/NOOPT=-O0
0N/A
576N/A# 6835796. Problem in GCC 4.3.0 with mulnode.o optimized compilation.
576N/Aifneq "$(shell expr \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) = 3 \) \))" "0"
576N/AOPT_CFLAGS/mulnode.o += -O0
576N/Aendif
576N/A
576N/A#------------------------------------------------------------------------
576N/A# Linker flags
576N/A
0N/A# statically link libstdc++.so, work with gcc but ignored by g++
0N/ASTATIC_STDCXX = -Wl,-Bstatic -lstdc++ -Wl,-Bdynamic
0N/A
0N/A# statically link libgcc and/or libgcc_s, libgcc does not exist before gcc-3.x.
0N/Aifneq ("${CC_VER_MAJOR}", "2")
0N/ASTATIC_LIBGCC += -static-libgcc
0N/Aendif
0N/A
0N/Aifeq ($(BUILDARCH), ia64)
0N/ALFLAGS += -Wl,-relax
0N/Aendif
0N/A
0N/A# Enable linker optimization
0N/ALFLAGS += -Xlinker -O1
0N/A
0N/A# If this is a --hash-style=gnu system, use --hash-style=both
0N/A# The gnu .hash section won't work on some Linux systems like SuSE 10.
0N/A_HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
0N/Aifneq ($(_HAS_HASH_STYLE_GNU),)
0N/A LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
0N/Aendif
0N/ALFLAGS += $(LDFLAGS_HASH_STYLE)
0N/A
0N/A# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
0N/AMAPFLAG = -Xlinker --version-script=FILENAME
0N/A
0N/A# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
SONAMEFLAG = -Xlinker -soname=SONAME
# Build shared library
SHARED_FLAG = -shared
# Keep symbols even they are not used
AOUT_FLAGS += -export-dynamic
#------------------------------------------------------------------------
# Debug flags
# Use the stabs format for debugging information (this is the default
# on gcc-2.91). It's good enough, has all the information about line
# numbers and local variables, and libjvm_g.so is only about 16M.
# Change this back to "-g" if you want the most expressive format.
# (warning: that could easily inflate libjvm_g.so to 150M!)
# Note: The Itanium gcc compiler crashes when using -gstabs.
DEBUG_CFLAGS/ia64 = -g
DEBUG_CFLAGS/amd64 = -g
DEBUG_CFLAGS/arm = -g
DEBUG_CFLAGS/ppc = -g
DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
DEBUG_CFLAGS += -gstabs
endif
# DEBUG_BINARIES overrides everything, use full -g debug information
ifeq ($(DEBUG_BINARIES), true)
DEBUG_CFLAGS = -g
CFLAGS += $(DEBUG_CFLAGS)
endif
# If we are building HEADLESS, pass on to VM
# so it can set the java.awt.headless property
ifdef HEADLESS
CFLAGS += -DHEADLESS
endif
# We are building Embedded for a small device
# favor code space over speed
ifdef MINIMIZE_RAM_USAGE
CFLAGS += -DMINIMIZE_RAM_USAGE
endif