0N/A#
3261N/A# Copyright (c) 2005, 2010, 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
2362N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
2362N/A# by Oracle 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#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A#
0N/A# Sun Studio Compiler settings
0N/A#
0N/A
0N/A# Sun Studio Compiler settings specific to Solaris
0N/Aifeq ($(PLATFORM), solaris)
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
914N/A GCC =$(GCC_COMPILER_PATH)gcc
0N/Aendif
0N/A
0N/A# Sun Studio Compiler settings specific to Linux
0N/Aifeq ($(PLATFORM), linux)
0N/A # This has not been tested
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)")
3170N/ACC_MAJORVER :=$(call MajorVersion,$(CC_VER))
2684N/ACC_MINORVER :=$(call MinorVersion,$(CC_VER))
942N/A
942N/A# Name of compilers being used
942N/ACOMPILER_VERSION-5.7 = SS10
942N/ACOMPILER_NAME-5.7 = Sun Studio 10
942N/ACOMPILER_VERSION-5.8 = SS11
942N/ACOMPILER_NAME-5.8 = Sun Studio 11
942N/ACOMPILER_VERSION-5.9 = SS12
942N/ACOMPILER_NAME-5.9 = Sun Studio 12
2684N/ACOMPILER_VERSION-5.10 = SS12u1
2684N/ACOMPILER_NAME-5.10 = Sun Studio 12 Update 1
2684N/ACOMPILER_VERSION-5.11 = OSS12u2
2684N/ACOMPILER_NAME-5.11 = Oracle Solaris Studio 12 Update 2
942N/ACOMPILER_VERSION = $(COMPILER_VERSION-$(CC_VER))
942N/ACOMPILER_NAME = $(COMPILER_NAME-$(CC_VER))
942N/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
2684N/A# Pick the options we want based on the compiler being used. (5.9 or newer)
4031N/ACC_59_OR_NEWER := \
4031N/A $(shell expr $(CC_MAJORVER) \> 5 \| \
4031N/A \( $(CC_MAJORVER) = 5 \& $(CC_MINORVER) \>= 9 \) )
4031N/Aifeq ($(CC_59_OR_NEWER), 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