hotspot/make/linux/makefiles/defs.make
author yhuang
Mon, 12 Dec 2011 18:21:42 -0800
changeset 11290 a5d429b1642b
parent 10571 956e26fdfc4f
child 12501 ea7feae692ae
child 12095 cc3d6f08a4c4
permissions -rw-r--r--
7003124: In Bulgarian Locale DateFormat is wrong Reviewed-by: naoto, peytoia
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
     2
# Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4018
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4018
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4018
diff changeset
    21
# questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# The common definitions for hotspot linux builds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# Include the top level defs.make under make directory instead of this one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
# This file is included into make/defs.make.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
SLASH_JAVA ?= /java
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
ARCH:=$(shell uname -m)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
PATH_SEP = :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
ifeq ($(LP64), 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  ARCH_DATA_MODEL ?= 64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  ARCH_DATA_MODEL ?= 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    40
# zero
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    41
ifeq ($(ZERO_BUILD), true)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    42
  ifeq ($(ARCH_DATA_MODEL), 64)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    43
    MAKE_ARGS      += LP64=1
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    44
  endif
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    45
  PLATFORM         = linux-zero
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    46
  VM_PLATFORM      = linux_$(subst i386,i486,$(ZERO_LIBARCH))
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    47
  HS_ARCH          = zero
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    48
  ARCH             = zero
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    49
endif
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
    50
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
# ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
ifeq ($(ARCH), ia64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  ARCH_DATA_MODEL = 64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  MAKE_ARGS      += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  PLATFORM        = linux-ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  VM_PLATFORM     = linux_ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  HS_ARCH         = ia64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
# sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
ifeq ($(ARCH), sparc64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  ifeq ($(ARCH_DATA_MODEL), 64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    ARCH_DATA_MODEL  = 64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    MAKE_ARGS        += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    PLATFORM         = linux-sparcv9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    VM_PLATFORM      = linux_sparcv9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    ARCH_DATA_MODEL  = 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    PLATFORM         = linux-sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    VM_PLATFORM      = linux_sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  HS_ARCH            = sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
# x86_64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
ifeq ($(ARCH), x86_64) 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  ifeq ($(ARCH_DATA_MODEL), 64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    ARCH_DATA_MODEL = 64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    MAKE_ARGS       += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    PLATFORM        = linux-amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    VM_PLATFORM     = linux_amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    HS_ARCH         = x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    ARCH_DATA_MODEL = 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    PLATFORM        = linux-i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    VM_PLATFORM     = linux_i486
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    HS_ARCH         = x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    # We have to reset ARCH to i686 since SRCARCH relies on it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    ARCH            = i686   
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
# i686
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
ifeq ($(ARCH), i686)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  ARCH_DATA_MODEL  = 32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  PLATFORM         = linux-i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  VM_PLATFORM      = linux_i486
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  HS_ARCH          = x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   101
# ARM
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   102
ifeq ($(ARCH), arm)
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   103
  ARCH_DATA_MODEL  = 32
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   104
  PLATFORM         = linux-arm
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   105
  VM_PLATFORM      = linux_arm
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   106
  HS_ARCH          = arm
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   107
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   108
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   109
# PPC
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   110
ifeq ($(ARCH), ppc)
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   111
  ARCH_DATA_MODEL  = 32
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   112
  PLATFORM         = linux-ppc
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   113
  VM_PLATFORM      = linux_ppc
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   114
  HS_ARCH          = ppc
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   115
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   116
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   117
# determine if HotSpot is being built in JDK6 or earlier version
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   118
JDK6_OR_EARLIER=0
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   119
ifeq "$(shell expr \( '$(JDK_MAJOR_VERSION)' != '' \& '$(JDK_MINOR_VERSION)' != '' \& '$(JDK_MICRO_VERSION)' != '' \))" "1"
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   120
  # if the longer variable names (newer build style) are set, then check those
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   121
  ifeq "$(shell expr \( $(JDK_MAJOR_VERSION) = 1 \& $(JDK_MINOR_VERSION) \< 7 \))" "1"
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   122
    JDK6_OR_EARLIER=1
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   123
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   124
else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   125
  # the longer variables aren't set so check the shorter variable names
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   126
  ifeq "$(shell expr \( '$(JDK_MAJOR_VER)' = 1 \& '$(JDK_MINOR_VER)' \< 7 \))" "1"
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   127
    JDK6_OR_EARLIER=1
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   128
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   129
endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   130
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   131
ifeq ($(JDK6_OR_EARLIER),0)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   132
  # Full Debug Symbols is supported on JDK7 or newer
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   133
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   134
  # Default OBJCOPY comes from GNU Binutils on Linux:
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   135
  DEF_OBJCOPY=/usr/bin/objcopy
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   136
  ifdef CROSS_COMPILE_ARCH
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   137
    # don't try to generate .debuginfo files when cross compiling
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   138
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   139
      echo >&2 "INFO: cross compiling for ARCH $(CROSS_COMPILE_ARCH)," \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   140
        "skipping .debuginfo generation.")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   141
    OBJCOPY=
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   142
  else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   143
    OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   144
    ifneq ($(ALT_OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   145
      _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   146
      # disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   147
      OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   148
    endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   149
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   150
  
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   151
  ifeq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   152
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   153
      echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   154
  else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   155
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   156
      echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   157
  
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   158
    # Library stripping policies for .debuginfo configs:
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   159
    #   all_strip - strips everything from the library
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   160
    #   min_strip - strips most stuff from the library; leaves minimum symbols
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   161
    #   no_strip  - does not strip the library at all
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   162
    #
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   163
    # Oracle security policy requires "all_strip". A waiver was granted on
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   164
    # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   165
    #
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   166
    DEF_STRIP_POLICY="min_strip"
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   167
    ifeq ($(ALT_STRIP_POLICY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   168
      STRIP_POLICY=$(DEF_STRIP_POLICY)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   169
    else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   170
      STRIP_POLICY=$(ALT_STRIP_POLICY)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   171
    endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   172
  
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   173
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   174
      echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   175
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   176
endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   177
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
JDK_INCLUDE_SUBDIR=linux
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   180
# Library suffix
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   181
LIBRARY_SUFFIX=so
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   182
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
# FIXUP: The subdirectory for a debug build is NOT the same on all platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
VM_DEBUG=jvmg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
4018
a73b8aa8e89d 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 4013
diff changeset
   187
a73b8aa8e89d 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 4013
diff changeset
   188
# client and server subdirectories have symbolic links to ../libjsig.so
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   189
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   190
ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   191
  EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   192
endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   193
EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
10259
fc6e02d351c4 7075559: JPRT windows_x64 build failure
kvn
parents: 7662
diff changeset
   194
EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
4018
a73b8aa8e89d 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 4013
diff changeset
   195
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   196
ifndef BUILD_CLIENT_ONLY
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   198
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   199
  ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   200
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   201
  endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   202
endif
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   203
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   204
ifneq ($(ZERO_BUILD), true)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   205
  ifeq ($(ARCH_DATA_MODEL), 32)
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   206
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   207
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   208
    ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   209
      EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   210
    endif
4013
b154310845de 6890308: integrate zero assembler hotspot changes
never
parents: 670
diff changeset
   211
  endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   213
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   214
# Serviceability Binaries
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   215
# No SA Support for PPC, IA64, ARM or zero
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   216
ADD_SA_BINARIES/x86   = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   217
                        $(EXPORT_LIB_DIR)/sa-jdi.jar 
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   218
ADD_SA_BINARIES/sparc = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   219
                        $(EXPORT_LIB_DIR)/sa-jdi.jar 
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   220
ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   221
  ADD_SA_BINARIES/x86   += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   222
  ADD_SA_BINARIES/sparc += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   223
endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   224
ADD_SA_BINARIES/ppc   = 
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   225
ADD_SA_BINARIES/ia64  = 
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   226
ADD_SA_BINARIES/arm   = 
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   227
ADD_SA_BINARIES/zero  = 
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   228
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   229
EXPORT_LIST += $(ADD_SA_BINARIES/$(HS_ARCH))
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   230
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5547
diff changeset
   231