50N/A#
2273N/A# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
50N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
50N/A#
50N/A# This code is free software; you can redistribute it and/or modify it
50N/A# under the terms of the GNU General Public License version 2 only, as
50N/A# published by the Free Software Foundation.
50N/A#
50N/A# This code is distributed in the hope that it will be useful, but WITHOUT
50N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
50N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
50N/A# version 2 for more details (a copy is included in the LICENSE file that
50N/A# accompanied this code).
50N/A#
50N/A# You should have received a copy of the GNU General Public License version
50N/A# 2 along with this work; if not, write to the Free Software Foundation,
50N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
50N/A#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A# or visit www.oracle.com if you need additional information or have any
1472N/A# questions.
50N/A#
50N/A#
50N/A
50N/A#------------------------------------------------------------------------
3178N/A# CC, CXX & AS
50N/A
3568N/A# If a SPEC is not set already, then use these defaults.
3568N/Aifeq ($(SPEC),)
3568N/A CXX = CC
3568N/A CC = cc
3568N/A AS = $(CC) -c
50N/A
3568N/A HOSTCXX = $(CXX)
3568N/A HOSTCC = $(CC)
3568N/Aendif
2248N/A
50N/AARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
50N/AARCHFLAG/i486 = -m32
50N/AARCHFLAG/amd64 = -m64
50N/A
50N/ACFLAGS += $(ARCHFLAG)
50N/AAOUT_FLAGS += $(ARCHFLAG)
50N/ALFLAGS += $(ARCHFLAG)
50N/AASFLAGS += $(ARCHFLAG)
50N/A
50N/A#------------------------------------------------------------------------
50N/A# Compiler flags
50N/A
50N/A# position-independent code
50N/APICFLAG = -KPIC
50N/A
50N/ACFLAGS += $(PICFLAG)
50N/A# no more exceptions
50N/ACFLAGS += -features=no%except
50N/A# Reduce code bloat by reverting back to 5.0 behavior for static initializers
50N/ACFLAGS += -features=no%split_init
50N/A# allow zero sized arrays
50N/ACFLAGS += -features=zla
50N/A
50N/A# Use C++ Interpreter
50N/Aifdef CC_INTERP
50N/A CFLAGS += -DCC_INTERP
50N/Aendif
50N/A
50N/A# We don't need libCstd.so and librwtools7.so, only libCrun.so
50N/ACFLAGS += -library=Crun
50N/ALIBS += -lCrun
50N/A
50N/ACFLAGS += -mt
50N/ALFLAGS += -mt
50N/A
50N/A# Compiler warnings are treated as errors
50N/A#WARNINGS_ARE_ERRORS = -errwarn=%all
50N/ACFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS)
50N/A# Special cases
50N/ACFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))
50N/A
50N/A# The flags to use for an Optimized build
50N/AOPT_CFLAGS+=-xO4
50N/AOPT_CFLAGS/NOOPT=-xO0
50N/A
1879N/A# Flags for creating the dependency files.
1879N/Aifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
1879N/ADEPFLAGS = -xMMD -xMF $(DEP_DIR)/$(@:%=%.d)
1879N/Aendif
1879N/A
1890N/A# -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
1890N/ACFLAGS += -DDONT_USE_PRECOMPILED_HEADER
1890N/A
50N/A#------------------------------------------------------------------------
50N/A# Linker flags
50N/A
50N/A# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
50N/AMAPFLAG = -Wl,--version-script=FILENAME
50N/A
50N/A# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
50N/ASONAMEFLAG = -h SONAME
50N/A
50N/A# Build shared library
50N/ASHARED_FLAG = -G
50N/A
50N/A#------------------------------------------------------------------------
50N/A# Debug flags
50N/ADEBUG_CFLAGS += -g
50N/AFASTDEBUG_CFLAGS = -g0
50N/A