Compiler-sun.gmk revision 334
0N/A#
0N/A# Copyright 2005 Sun Microsystems, Inc. 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. Sun designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Sun in the LICENSE file that accompanied this code.
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A# CA 95054 USA or visit www.sun.com if you need additional information or
0N/A# have any questions.
0N/A#
0N/A
0N/A#
0N/A# Sun Studio Compiler settings
0N/A#
0N/A
0N/ACOMPILER_NAME=Sun Studio
0N/A
0N/A# Sun Studio Compiler settings specific to Solaris
0N/Aifeq ($(PLATFORM), solaris)
334N/A # FIXUP: Change to SS12 when validated
334N/A #COMPILER_VERSION=SS12
334N/A #REQUIRED_CC_VER=5.9
0N/A COMPILER_VERSION=SS11
0N/A REQUIRED_CC_VER=5.8
0N/A CC = $(COMPILER_PATH)cc
0N/A CPP = $(COMPILER_PATH)cc -E
0N/A CXX = $(COMPILER_PATH)CC
0N/A LINT = $(COMPILER_PATH)lint
0N/A # Option used to create a shared library
0N/A SHARED_LIBRARY_FLAG = -G
0N/A # But gcc is still needed no matter what on 32bit
0N/A ifeq ($(ARCH_DATA_MODEL), 32)
0N/A REQUIRED_GCC_VER = 2.95
0N/A GCC =$(GCC_COMPILER_PATH)gcc
0N/A _GCC_VER :=$(shell $(GCC) -dumpversion 2>&1 )
0N/A GCC_VER :=$(call GetVersion,"$(_GCC_VER)")
0N/A endif
0N/Aendif
0N/A
0N/A# Sun Studio Compiler settings specific to Linux
0N/Aifeq ($(PLATFORM), linux)
0N/A # This has not been tested
334N/A COMPILER_VERSION=SS12
334N/A REQUIRED_CC_VER=5.9
0N/A CC = $(COMPILER_PATH)cc
0N/A CPP = $(COMPILER_PATH)cc -E
0N/A CXX = $(COMPILER_PATH)CC
0N/A LINT = $(COMPILER_PATH)lint
0N/A # statically link libstdc++ before C++ ABI is stablized on Linux
0N/A STATIC_CXX = true
0N/A ifeq ($(STATIC_CXX),true)
0N/A # CC always dynamically links libstdc++, even we use "-Wl,-Bstatic -lstdc++"
0N/A # We need to use cc to statically link the C++ runtime.
0N/A CXX = $(COMPILER_PATH)cc
0N/A else
0N/A CXX = $(COMPILER_PATH)CC
0N/A endif
0N/A # Option used to create a shared library
0N/A SHARED_LIBRARY_FLAG = -G
0N/Aendif
0N/A
0N/A# Get compiler version
0N/A_CC_VER :=$(shell $(CC) -V 2>&1 | $(HEAD) -n 1)
0N/ACC_VER :=$(call GetVersion,"$(_CC_VER)")
0N/A
334N/A# Arch specific settings (determines type of .o files and instruction set)
334N/A# Starting in SS12 (5.9), the arch options changed.
334N/A# The assembler /usr/ccs/bin/as wants older SS11 (5.8) style options.
334N/A# Note: We need to have both 32 and 64 values at all times for awt Makefiles.
334N/A#
334N/AXARCH_OPTION_OLD/32 =
334N/AXARCH_OPTION_OLD/64 =
334N/AXARCH_OPTION_NEW/32 = -m32
334N/AXARCH_OPTION_NEW/64 = -m64
334N/A# Lint options are slightly different
334N/ALINT_XARCH_OPTION_OLD/32 =
334N/ALINT_XARCH_OPTION_OLD/64 =
334N/ALINT_XARCH_OPTION_NEW/32 = -m32
334N/ALINT_XARCH_OPTION_NEW/64 = -m64
334N/Aifeq ($(ARCH_FAMILY), sparc)
334N/A ifdef VIS_NEEDED
334N/A XARCH_OPTION_OLD/32 += -xarch=v8plusa
334N/A XARCH_OPTION_OLD/64 += -xarch=v9a
334N/A XARCH_OPTION_NEW/32 += -xarch=sparcvis
334N/A XARCH_OPTION_NEW/64 += -xarch=sparcvis
334N/A else
334N/A # Someday this should change to improve optimization on UltraSPARC
334N/A # and abandon v8, even change to sparcvis or sparcvis2, this
334N/A # abandons machines like the SPARCstation 10.
334N/A # Indications with jdk6 is that alacrity runs do not show a
334N/A # big improvement using v8plus over v8, but other benchmarks might.
334N/A XARCH_OPTION_OLD/32 += -xarch=v8
334N/A XARCH_OPTION_OLD/64 += -xarch=v9
334N/A # Note that this new option (SS12+) effectively means v8plus
334N/A XARCH_OPTION_NEW/32 += -xarch=sparc
334N/A XARCH_OPTION_NEW/64 += -xarch=sparc
334N/A endif
334N/A LINT_XARCH_OPTION_OLD/64 += -Xarch=v9
334N/Aendif
334N/Aifeq ($(ARCH_FAMILY), i586)
334N/A XARCH_OPTION_OLD/64 += -xarch=amd64
334N/A LINT_XARCH_OPTION_OLD/64 += -Xarch=amd64
334N/Aendif
334N/A# Pick the options we want based on the compiler being used.
334N/Aifeq ($(shell expr $(CC_VER) \>= 5.9), 1)
334N/A XARCH_OPTION/32 = $(XARCH_OPTION_NEW/32)
334N/A XARCH_OPTION/64 = $(XARCH_OPTION_NEW/64)
334N/A LINT_XARCH_OPTION/32 = $(LINT_XARCH_OPTION_NEW/32)
334N/A LINT_XARCH_OPTION/64 = $(LINT_XARCH_OPTION_NEW/64)
334N/Aelse
334N/A XARCH_OPTION/32 = $(XARCH_OPTION_OLD/32)
334N/A XARCH_OPTION/64 = $(XARCH_OPTION_OLD/64)
334N/A LINT_XARCH_OPTION/32 = $(LINT_XARCH_OPTION_OLD/32)
334N/A LINT_XARCH_OPTION/64 = $(LINT_XARCH_OPTION_OLD/64)
334N/Aendif
334N/AXARCH_OPTION = $(XARCH_OPTION/$(ARCH_DATA_MODEL))
334N/ALINT_XARCH_OPTION = $(LINT_XARCH_OPTION/$(ARCH_DATA_MODEL))
334N/A# The /usr/ccs/bin/as assembler always wants the older SS11 (5.8) options.
334N/AAS_XARCH_OPTION = $(XARCH_OPTION_OLD/$(ARCH_DATA_MODEL))
334N/A