corba/make/common/shared/Compiler-gcc.gmk
author ohair
Tue, 25 May 2010 15:52:11 -0700
changeset 5555 b2b5ed3f0d0d
parent 4124 0493b08f4d56
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
#
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4124
diff changeset
     2
# Copyright (c) 2005, 2009, Oracle and/or its affiliates. All rights reserved.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4124
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4124
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
#
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4124
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4124
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4124
diff changeset
    23
# questions.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
# GCC Compiler settings
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
COMPILER_NAME=GCC
02bb8761fcce Initial load
duke
parents:
diff changeset
    31
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
ifeq ($(PLATFORM), windows)
02bb8761fcce Initial load
duke
parents:
diff changeset
    33
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
  # Settings specific to Windows, pretty stale, hasn't been used
02bb8761fcce Initial load
duke
parents:
diff changeset
    35
  CC           = $(COMPILER_PATH)gcc
02bb8761fcce Initial load
duke
parents:
diff changeset
    36
  CPP          = $(COMPILER_PATH)gcc -E
02bb8761fcce Initial load
duke
parents:
diff changeset
    37
  CXX          = $(COMPILER_PATH)g++
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
  CCC          = $(COMPILER_PATH)g++
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
  LIBEXE       = $(COMPILER_PATH)lib
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
  LINK         = $(COMPILER_PATH)link
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
  RC           = $(MSDEVTOOLS_PATH)link
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
  LINK32       = $(LINK)
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
  RSC          = $(RC)
02bb8761fcce Initial load
duke
parents:
diff changeset
    44
  # unset any GNU Make settings of MFLAGS and MAKEFLAGS which may mess up nmake
02bb8761fcce Initial load
duke
parents:
diff changeset
    45
  NMAKE          = MFLAGS= MAKEFLAGS= $(COMPILER_PATH)nmake -nologo
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
  ifeq ($(ARCH_DATA_MODEL), 32)
02bb8761fcce Initial load
duke
parents:
diff changeset
    47
    CC_VER  = UNKNOWN
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
    CC_TYPE = UNKNOWN
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
  else
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
    CC_VER  = UNKNOWN
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
    CC_TYPE = UNKNOWN
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
  endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
  _LINK_VER :=$(shell $(LINK) 2>&1 | $(HEAD) -n 1)
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
  LINK_VER  :=$(call GetVersion,"$(_LINK_VER)")
02bb8761fcce Initial load
duke
parents:
diff changeset
    55
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
ifeq ($(PLATFORM), linux)
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
  # Settings specific to Linux
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
  CC             = $(COMPILER_PATH)gcc
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
  CPP            = $(COMPILER_PATH)gcc -E
02bb8761fcce Initial load
duke
parents:
diff changeset
    63
  # statically link libstdc++ before C++ ABI is stablized on Linux
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
  STATIC_CXX     = true
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
  ifeq ($(STATIC_CXX),true)
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
    # g++ always dynamically links libstdc++, even we use "-Wl,-Bstatic -lstdc++"
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
    # We need to use gcc to statically link the C++ runtime. gcc and g++ use
02bb8761fcce Initial load
duke
parents:
diff changeset
    68
    # the same subprocess to compile C++ files, so it is OK to build using gcc.
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
    CXX            = $(COMPILER_PATH)gcc
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
  else
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
    CXX            = $(COMPILER_PATH)g++
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
  endif
4124
0493b08f4d56 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3291
diff changeset
    73
  ifeq ($(ZERO_BUILD), true)
0493b08f4d56 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3291
diff changeset
    74
    # zero
0493b08f4d56 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3291
diff changeset
    75
    REQUIRED_CC_VER = 3.2
0493b08f4d56 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3291
diff changeset
    76
    REQUIRED_GCC_VER = 3.2.*
0493b08f4d56 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3291
diff changeset
    77
  else
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    78
  ifneq ("$(findstring sparc,$(ARCH))", "")
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
    # sparc or sparcv9
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
    REQUIRED_CC_VER = 4.0
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
  else
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
  ifeq ($(ARCH_DATA_MODEL), 32)
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
    # i586
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
    REQUIRED_CC_VER = 3.2
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
  else
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
  ifeq ($(ARCH), amd64)
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
    # amd64
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
    REQUIRED_CC_VER = 3.2
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
  endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
  ifeq ($(ARCH), ia64)
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
    # ia64
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
    REQUIRED_CC_VER = 3.2
02bb8761fcce Initial load
duke
parents:
diff changeset
    93
  endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
  endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
  endif
4124
0493b08f4d56 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3291
diff changeset
    96
  endif
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
  # Option used to create a shared library
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
  SHARED_LIBRARY_FLAG = -shared -mimpure-text
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
  SUN_COMP_VER := $(shell $(CC) --verbose 2>&1 )
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
02bb8761fcce Initial load
duke
parents:
diff changeset
   103
ifeq ($(PLATFORM), solaris)
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
  # Settings specific to Solaris
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
  CC             = $(COMPILER_PATH)gcc
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
  CPP            = $(COMPILER_PATH)gcc -E
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
  CXX            = $(COMPILER_PATH)g++
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
  REQUIRED_CC_VER = 3.2
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
  # Option used to create a shared library
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
  SHARED_LIBRARY_FLAG = -G
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
# Get gcc version
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
_CC_VER :=$(shell $(CC) -dumpversion 2>&1 )
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
CC_VER  :=$(call GetVersion,"$(_CC_VER)")
02bb8761fcce Initial load
duke
parents:
diff changeset
   119