hotspot/make/solaris/makefiles/defs.make
author ohrstrom
Tue, 31 Jan 2012 13:12:39 +0100
changeset 11720 b20268d74484
parent 10571 956e26fdfc4f
child 12501 ea7feae692ae
child 12095 cc3d6f08a4c4
permissions -rw-r--r--
7132779: build-infra merge: Enable ccache to work for most developer builds. Summary: When a build number is not specified, the JRE_RELEASE_VERSION define contains a date and timestamp. Thus ccache cannot cache the object files for longer than a minute since the define is passed to the compilation of all source files. This change passes JRE_RELEASE_VERSION only to vm_version.cpp and adds a function jre_release_version() to Abstract_VM_Version. This allows all other source files to be ccached. Reviewed-by: ohair, rottenha Contributed-by: fredrik.ohrstrom@oracle.com
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 solaris 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
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
SLASH_JAVA ?= /java
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
ARCH:=$(shell uname -p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
PATH_SEP = :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
ifeq ($(LP64), 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  ARCH_DATA_MODEL=64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  ARCH_DATA_MODEL=32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
ifeq ($(ARCH),sparc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  ifeq ($(ARCH_DATA_MODEL), 64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    MAKE_ARGS += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    PLATFORM=solaris-sparcv9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    VM_PLATFORM=solaris_sparcv9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    PLATFORM=solaris-sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    VM_PLATFORM=solaris_sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  HS_ARCH=sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  ifeq ($(ARCH_DATA_MODEL), 64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    MAKE_ARGS += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    PLATFORM=solaris-amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    VM_PLATFORM=solaris_amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    HS_ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    PLATFORM=solaris-i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    VM_PLATFORM=solaris_i486
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    HS_ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    62
# determine if HotSpot is being built in JDK6 or earlier version
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    63
JDK6_OR_EARLIER=0
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    64
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
    65
  # 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
    66
  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
    67
    JDK6_OR_EARLIER=1
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    68
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    69
else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    70
  # 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
    71
  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
    72
    JDK6_OR_EARLIER=1
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    73
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    74
endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    75
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    76
ifeq ($(JDK6_OR_EARLIER),0)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    77
  # Full Debug Symbols is supported on JDK7 or newer
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    78
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    79
ifdef ENABLE_FULL_DEBUG_SYMBOLS
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    80
  # Only check for Full Debug Symbols support on Solaris if it is
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    81
  # specifically enabled. Hopefully, it can be enabled by default
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    82
  # once the .debuginfo size issues are worked out.
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    83
  
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    84
  # Default OBJCOPY comes from the SUNWbinutils package:
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    85
  DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    86
  ifeq ($(VM_PLATFORM),solaris_amd64)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    87
    # On Solaris AMD64/X64, gobjcopy is not happy and fails:
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    88
    #
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    89
    # usr/sfw/bin/gobjcopy --add-gnu-debuglink=<lib>.debuginfo <lib>.so
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    90
    # BFD: stKPaiop: Not enough room for program headers, try linking with -N
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    91
    # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    92
    # BFD: stKPaiop: Not enough room for program headers, try linking with -N
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    93
    # /usr/sfw/bin/gobjcopy: libsaproc.debuginfo: Bad value
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    94
    # BFD: stKPaiop: Not enough room for program headers, try linking with -N
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    95
    # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    96
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    97
      echo >&2 "INFO: $(DEF_OBJCOPY) is not working on Solaris AMD64/X64")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    98
    OBJCOPY=
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
    99
  else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   100
    OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   101
    ifneq ($(ALT_OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   102
      _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   103
      # 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
   104
      OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   105
    endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   106
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   107
endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   108
  
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   109
  ifeq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   110
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   111
      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
   112
  else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   113
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   114
      echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   115
  
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   116
    # Library stripping policies for .debuginfo configs:
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   117
    #   all_strip - strips everything from the library
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   118
    #   min_strip - strips most stuff from the library; leaves minimum symbols
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   119
    #   no_strip  - does not strip the library at all
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   120
    #
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   121
    # Oracle security policy requires "all_strip". A waiver was granted on
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   122
    # 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
   123
    #
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   124
    DEF_STRIP_POLICY="min_strip"
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   125
    ifeq ($(ALT_STRIP_POLICY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   126
      STRIP_POLICY=$(DEF_STRIP_POLICY)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   127
    else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   128
      STRIP_POLICY=$(ALT_STRIP_POLICY)
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
    _JUNK_ := $(shell \
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   131
      echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   132
  endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   133
endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   134
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
JDK_INCLUDE_SUBDIR=solaris
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   137
# Library suffix
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   138
LIBRARY_SUFFIX=so
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   139
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
# FIXUP: The subdirectory for a debug build is NOT the same on all platforms
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
VM_DEBUG=jvmg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
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: 670
diff changeset
   144
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   145
# client and server subdirectories have symbolic links to ../libjsig.$(LIBRARY_SUFFIX)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   146
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   147
ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   148
  EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   149
endif
4018
a73b8aa8e89d 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 670
diff changeset
   150
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
10259
fc6e02d351c4 7075559: JPRT windows_x64 build failure
kvn
parents: 7662
diff changeset
   152
EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
fc6e02d351c4 7075559: JPRT windows_x64 build failure
kvn
parents: 7662
diff changeset
   153
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
   154
ifneq ($(BUILD_CLIENT_ONLY),true)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   156
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   157
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   158
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   159
  ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   160
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   161
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   162
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   163
  endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
   164
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
ifeq ($(ARCH_DATA_MODEL), 32)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   167
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX) 
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   168
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.$(LIBRARY_SUFFIX) 
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   169
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   170
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   171
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   172
  ifneq ($(OBJCOPY),)
10571
iveresov
parents: 10559 10565
diff changeset
   173
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
iveresov
parents: 10559 10565
diff changeset
   174
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.debuginfo
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   175
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   176
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   177
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   178
  endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
   179
  ifneq ($(BUILD_CLIENT_ONLY), true)
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   180
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   181
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   182
    ifneq ($(OBJCOPY),)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   183
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   184
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   185
    endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
   186
  endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   189
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(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)/libsaproc.debuginfo
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   192
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar