sparcWorks.make revision 1890
0N/A#
0N/A# Copyright (c) 1999, 2008, 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/ACPP = CC
0N/ACC = cc
0N/AAS = $(CC) -c
0N/A
0N/AARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
0N/AARCHFLAG/i486 = -m32
0N/AARCHFLAG/amd64 = -m64
0N/A
0N/ACFLAGS += $(ARCHFLAG)
0N/AAOUT_FLAGS += $(ARCHFLAG)
0N/ALFLAGS += $(ARCHFLAG)
0N/AASFLAGS += $(ARCHFLAG)
0N/A
0N/A#------------------------------------------------------------------------
0N/A# Compiler flags
0N/A
0N/A# position-independent code
0N/APICFLAG = -KPIC
0N/A
0N/ACFLAGS += $(PICFLAG)
0N/A# no more exceptions
0N/ACFLAGS += -features=no%except
0N/A# Reduce code bloat by reverting back to 5.0 behavior for static initializers
0N/ACFLAGS += -features=no%split_init
0N/A# allow zero sized arrays
0N/ACFLAGS += -features=zla
0N/A
0N/A# Use C++ Interpreter
0N/Aifdef CC_INTERP
0N/A CFLAGS += -DCC_INTERP
0N/Aendif
0N/A
0N/A# We don't need libCstd.so and librwtools7.so, only libCrun.so
0N/ACFLAGS += -library=Crun
0N/ALIBS += -lCrun
0N/A
0N/ACFLAGS += -mt
0N/ALFLAGS += -mt
0N/A
0N/A# Compiler warnings are treated as errors
0N/A#WARNINGS_ARE_ERRORS = -errwarn=%all
0N/ACFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS)
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 build
0N/AOPT_CFLAGS+=-xO4
0N/AOPT_CFLAGS/NOOPT=-xO0
0N/A
0N/A# Flags for creating the dependency files.
0N/Aifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
0N/ADEPFLAGS = -xMMD -xMF $(DEP_DIR)/$(@:%=%.d)
0N/Aendif
0N/A
0N/A# -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
0N/ACFLAGS += -DDONT_USE_PRECOMPILED_HEADER
0N/A
0N/A#------------------------------------------------------------------------
0N/A# Linker flags
0N/A
0N/A# Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
0N/AMAPFLAG = -Wl,--version-script=FILENAME
0N/A
0N/A# Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
0N/ASONAMEFLAG = -h SONAME
0N/A
0N/A# Build shared library
0N/ASHARED_FLAG = -G
0N/A
0N/A#------------------------------------------------------------------------
0N/A# Debug flags
0N/ADEBUG_CFLAGS += -g
0N/AFASTDEBUG_CFLAGS = -g0
0N/A
0N/A