make/common/shared/Compiler-sun.gmk

Wed, 02 Jul 2008 12:55:05 -0700

author
xdono
date
Wed, 02 Jul 2008 12:55:05 -0700
changeset 13
c0252adbb2ab
parent 10
9eeb4966acae
child 20
33486187d718
permissions
-rw-r--r--

6719955: Update copyright year
Summary: Update copyright year for files that have been modified in 2008
Reviewed-by: ohair, tbell

     1 #
     2 # Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Sun designates this
     8 # particular file as subject to the "Classpath" exception as provided
     9 # by Sun in the LICENSE file that accompanied this code.
    10 #
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14 # version 2 for more details (a copy is included in the LICENSE file that
    15 # accompanied this code).
    16 #
    17 # You should have received a copy of the GNU General Public License version
    18 # 2 along with this work; if not, write to the Free Software Foundation,
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20 #
    21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
    24 #
    26 #
    27 # Sun Studio Compiler settings
    28 #
    30 COMPILER_NAME=Sun Studio
    32 # Sun Studio Compiler settings specific to Solaris
    33 ifeq ($(PLATFORM), solaris)
    34   # FIXUP: Change to SS12 when validated
    35   #COMPILER_VERSION=SS12
    36   #REQUIRED_CC_VER=5.9
    37   COMPILER_VERSION=SS11
    38   REQUIRED_CC_VER=5.8
    39   CC             = $(COMPILER_PATH)cc
    40   CPP            = $(COMPILER_PATH)cc -E
    41   CXX            = $(COMPILER_PATH)CC
    42   LINT           = $(COMPILER_PATH)lint
    43   # Option used to create a shared library
    44   SHARED_LIBRARY_FLAG = -G
    45   # But gcc is still needed no matter what on 32bit
    46   ifeq ($(ARCH_DATA_MODEL), 32)
    47     REQUIRED_GCC_VER = 2.95
    48     GCC =$(GCC_COMPILER_PATH)gcc
    49     _GCC_VER :=$(shell $(GCC) -dumpversion 2>&1 )
    50     GCC_VER  :=$(call GetVersion,"$(_GCC_VER)")
    51   endif
    52 endif
    54 # Sun Studio Compiler settings specific to Linux
    55 ifeq ($(PLATFORM), linux)
    56   # This has not been tested
    57   COMPILER_VERSION=SS12
    58   REQUIRED_CC_VER=5.9
    59   CC             = $(COMPILER_PATH)cc
    60   CPP            = $(COMPILER_PATH)cc -E
    61   CXX            = $(COMPILER_PATH)CC
    62   LINT           = $(COMPILER_PATH)lint
    63   # statically link libstdc++ before C++ ABI is stablized on Linux
    64   STATIC_CXX     = true
    65   ifeq ($(STATIC_CXX),true)
    66     # CC always dynamically links libstdc++, even we use "-Wl,-Bstatic -lstdc++"
    67     # We need to use cc to statically link the C++ runtime.
    68     CXX            = $(COMPILER_PATH)cc
    69   else
    70     CXX            = $(COMPILER_PATH)CC
    71   endif
    72   # Option used to create a shared library
    73   SHARED_LIBRARY_FLAG = -G
    74 endif
    76 # Get compiler version
    77 _CC_VER :=$(shell $(CC) -V 2>&1 | $(HEAD) -n 1)
    78 CC_VER  :=$(call GetVersion,"$(_CC_VER)")

mercurial