make/common/shared/Compiler-sun.gmk

changeset 1
55540e827aef
child 10
9eeb4966acae
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/make/common/shared/Compiler-sun.gmk	Sat Dec 01 00:00:00 2007 +0000
     1.3 @@ -0,0 +1,76 @@
     1.4 +#
     1.5 +# Copyright 2005 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 +#
     1.8 +# This code is free software; you can redistribute it and/or modify it
     1.9 +# under the terms of the GNU General Public License version 2 only, as
    1.10 +# published by the Free Software Foundation.  Sun designates this
    1.11 +# particular file as subject to the "Classpath" exception as provided
    1.12 +# by Sun in the LICENSE file that accompanied this code.
    1.13 +#
    1.14 +# This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 +# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 +# version 2 for more details (a copy is included in the LICENSE file that
    1.18 +# accompanied this code).
    1.19 +#
    1.20 +# You should have received a copy of the GNU General Public License version
    1.21 +# 2 along with this work; if not, write to the Free Software Foundation,
    1.22 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 +#
    1.24 +# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    1.25 +# CA 95054 USA or visit www.sun.com if you need additional information or
    1.26 +# have any questions.
    1.27 +#
    1.28 +
    1.29 +#
    1.30 +# Sun Studio Compiler settings
    1.31 +#
    1.32 +
    1.33 +COMPILER_NAME=Sun Studio
    1.34 +
    1.35 +# Sun Studio Compiler settings specific to Solaris
    1.36 +ifeq ($(PLATFORM), solaris)
    1.37 +  COMPILER_VERSION=SS11
    1.38 +  REQUIRED_CC_VER=5.8
    1.39 +  CC             = $(COMPILER_PATH)cc
    1.40 +  CPP            = $(COMPILER_PATH)cc -E
    1.41 +  CXX            = $(COMPILER_PATH)CC
    1.42 +  LINT           = $(COMPILER_PATH)lint
    1.43 +  # Option used to create a shared library
    1.44 +  SHARED_LIBRARY_FLAG = -G
    1.45 +  # But gcc is still needed no matter what on 32bit
    1.46 +  ifeq ($(ARCH_DATA_MODEL), 32)
    1.47 +    REQUIRED_GCC_VER = 2.95
    1.48 +    GCC =$(GCC_COMPILER_PATH)gcc
    1.49 +    _GCC_VER :=$(shell $(GCC) -dumpversion 2>&1 )
    1.50 +    GCC_VER  :=$(call GetVersion,"$(_GCC_VER)")
    1.51 +  endif
    1.52 +endif
    1.53 +
    1.54 +# Sun Studio Compiler settings specific to Linux
    1.55 +ifeq ($(PLATFORM), linux)
    1.56 +  # This has not been tested
    1.57 +  COMPILER_VERSION=SS11
    1.58 +  REQUIRED_CC_VER=5.8
    1.59 +  CC             = $(COMPILER_PATH)cc
    1.60 +  CPP            = $(COMPILER_PATH)cc -E
    1.61 +  CXX            = $(COMPILER_PATH)CC
    1.62 +  LINT           = $(COMPILER_PATH)lint
    1.63 +  # statically link libstdc++ before C++ ABI is stablized on Linux
    1.64 +  STATIC_CXX     = true
    1.65 +  ifeq ($(STATIC_CXX),true)
    1.66 +    # CC always dynamically links libstdc++, even we use "-Wl,-Bstatic -lstdc++"
    1.67 +    # We need to use cc to statically link the C++ runtime.
    1.68 +    CXX            = $(COMPILER_PATH)cc
    1.69 +  else
    1.70 +    CXX            = $(COMPILER_PATH)CC
    1.71 +  endif
    1.72 +  # Option used to create a shared library
    1.73 +  SHARED_LIBRARY_FLAG = -G
    1.74 +endif
    1.75 +
    1.76 +# Get compiler version
    1.77 +_CC_VER :=$(shell $(CC) -V 2>&1 | $(HEAD) -n 1)
    1.78 +CC_VER  :=$(call GetVersion,"$(_CC_VER)")
    1.79 +

mercurial