hotspot/make/solaris/makefiles/defs.make
author ihse
Fri, 12 Jun 2015 08:31:01 +0200
changeset 33957 39113ae98993
parent 30113 3f6beb804b02
child 34319 9d6dd3c5ca23
permissions -rw-r--r--
8085822: JEP 223: New Version-String Scheme (initial integration) Reviewed-by: erikj, dcubed, dholmes, alanb Contributed-by: Magnus Ihse Bursie <magnus.ihse.bursie@oracle.com>, Alejandro E Murillo <alejandro.murillo@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
     2
# Copyright (c) 2006, 2015, 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.
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 15793
diff changeset
    22
#
1
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
26691
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 17006
diff changeset
    29
define print_info
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 17006
diff changeset
    30
  ifneq ($$(LOG_LEVEL), warn)
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 17006
diff changeset
    31
    $$(shell echo >&2 "INFO: $1")
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 17006
diff changeset
    32
  endif
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 17006
diff changeset
    33
endef
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 17006
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
SLASH_JAVA ?= /java
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
ARCH:=$(shell uname -p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
PATH_SEP = :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
ifeq ($(LP64), 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  ARCH_DATA_MODEL=64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  ARCH_DATA_MODEL=32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
ifeq ($(ARCH),sparc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  ifeq ($(ARCH_DATA_MODEL), 64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    MAKE_ARGS += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    PLATFORM=solaris-sparcv9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    VM_PLATFORM=solaris_sparcv9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    PLATFORM=solaris-sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    VM_PLATFORM=solaris_sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  HS_ARCH=sparc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  ifeq ($(ARCH_DATA_MODEL), 64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    MAKE_ARGS += LP64=1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    PLATFORM=solaris-amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    VM_PLATFORM=solaris_amd64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    HS_ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    PLATFORM=solaris-i586
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    VM_PLATFORM=solaris_i486
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    HS_ARCH=x86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
12156
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    68
# On 32 bit solaris we build server and client, on 64 bit just server.
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    69
ifeq ($(JVM_VARIANTS),)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    70
  ifeq ($(ARCH_DATA_MODEL), 32)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    71
    JVM_VARIANTS:=client,server
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    72
    JVM_VARIANT_CLIENT:=true
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    73
    JVM_VARIANT_SERVER:=true
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    74
  else
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    75
    JVM_VARIANTS:=server
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    76
    JVM_VARIANT_SERVER:=true
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    77
  endif
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    78
endif
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
    79
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    80
# The Full Debug Symbols (FDS) default for BUILD_FLAVOR == product
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    81
# builds is enabled with debug info files ZIP'ed to save space. For
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    82
# BUILD_FLAVOR != product builds, FDS is always enabled, after all a
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    83
# debug build without debug info isn't very useful.
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    84
# The ZIP_DEBUGINFO_FILES option only has meaning when FDS is enabled.
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    85
#
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    86
# If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    87
# disabled for a BUILD_FLAVOR == product build.
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    88
#
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    89
# Note: Use of a different variable name for the FDS override option
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    90
# versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    91
# versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    92
# in options via environment variables, use of distinct variables
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    93
# prevents strange behaviours. For example, in a BUILD_FLAVOR !=
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    94
# product build, the FULL_DEBUG_SYMBOLS environment variable will be
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    95
# 0, but the ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    96
# the same variable name is used, then different values can be picked
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    97
# up by different parts of the build. Just to be clear, we only need
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    98
# two variable names because the incoming option value can be
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
    99
# overridden in some situations, e.g., a BUILD_FLAVOR != product
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   100
# build.
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   101
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   102
# Due to the multiple sub-make processes that occur this logic gets
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   103
# executed multiple times. We reduce the noise by at least checking that
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   104
# BUILD_FLAVOR has been set.
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   105
ifneq ($(BUILD_FLAVOR),)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   106
  ifeq ($(BUILD_FLAVOR), product)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   107
    FULL_DEBUG_SYMBOLS ?= 1
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   108
    ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   109
  else
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   110
    # debug variants always get Full Debug Symbols (if available)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   111
    ENABLE_FULL_DEBUG_SYMBOLS = 1
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   112
  endif
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   113
  $(eval $(call print_info, "ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)"))
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   114
  # since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   115
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   116
  ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   117
    # Default OBJCOPY comes from the SUNWbinutils package:
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   118
    DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   119
    OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   120
    ifneq ($(ALT_OBJCOPY),)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   121
      $(eval $(call print_info, "ALT_OBJCOPY=$(ALT_OBJCOPY)"))
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   122
      OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   123
    endif
14383
f31aacbd0f36 8002034: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 13093
diff changeset
   124
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   125
    ifneq ($(OBJCOPY),)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   126
      # OBJCOPY version check:
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   127
      # - version number is last blank separate word on first line
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   128
      # - version number formats that have been seen:
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   129
      #   - <major>.<minor>
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   130
      #   - <major>.<minor>.<micro>
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   131
      #
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   132
      # Full Debug Symbols on Solaris needs version 2.21.1 or newer.
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   133
      #
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   134
      OBJCOPY_VERS_CHK := $(shell \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   135
        $(OBJCOPY) --version \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   136
          | sed -n \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   137
                -e 's/.* //' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   138
                -e '/^[01]\./b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   139
                -e '/^2\./{' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   140
                -e '  s/^2\.//' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   141
                -e '  /^[0-9]$$/b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   142
                -e '  /^[0-9]\./b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   143
                -e '  /^1[0-9]$$/b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   144
                -e '  /^1[0-9]\./b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   145
                -e '  /^20\./b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   146
                -e '  /^21\.0$$/b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   147
                -e '  /^21\.0\./b bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   148
                -e '}' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   149
                -e ':good' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   150
                -e 's/.*/VALID_VERSION/p' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   151
                -e 'q' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   152
                -e ':bad' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   153
                -e 's/.*/BAD_VERSION/p' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   154
                -e 'q' \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   155
        )
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   156
      ifeq ($(OBJCOPY_VERS_CHK),BAD_VERSION)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   157
        _JUNK_ := $(shell \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   158
          echo >&2 "WARNING: $(OBJCOPY) --version info:"; \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   159
          $(OBJCOPY) --version | sed -n -e 's/^/WARNING: /p' -e 'q' >&2; \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   160
          echo >&2 "WARNING: an objcopy version of 2.21.1 or newer" \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   161
            "is needed to create valid .debuginfo files."; \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   162
          echo >&2 "WARNING: ignoring above objcopy command."; \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   163
          echo >&2 "WARNING: patch 149063-01 or newer contains the" \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   164
            "correct Solaris 10 SPARC version."; \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   165
          echo >&2 "WARNING: patch 149064-01 or newer contains the" \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   166
            "correct Solaris 10 X86 version."; \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   167
          echo >&2 "WARNING: Solaris 11 Update 1 contains the" \
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   168
            "correct version."; \
27657
f4fcaa1bb2d4 8033602: wrong stabs data in libjvm.debuginfo on JDK 8 - SPARC
dcubed
parents: 26691
diff changeset
   169
          )
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   170
        OBJCOPY=
27657
f4fcaa1bb2d4 8033602: wrong stabs data in libjvm.debuginfo on JDK 8 - SPARC
dcubed
parents: 26691
diff changeset
   171
      endif
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   172
    endif
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   173
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   174
    ifeq ($(OBJCOPY),)
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   175
      $(eval $(call print_info, "no objcopy cmd found so cannot create .debuginfo files."))
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   176
      ENABLE_FULL_DEBUG_SYMBOLS=0
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   177
      $(eval $(call print_info, "ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)"))
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   178
    else
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   179
      $(eval $(call print_info, "$(OBJCOPY) cmd found so will create .debuginfo files."))
27657
f4fcaa1bb2d4 8033602: wrong stabs data in libjvm.debuginfo on JDK 8 - SPARC
dcubed
parents: 26691
diff changeset
   180
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   181
      # Library stripping policies for .debuginfo configs:
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   182
      #   all_strip - strips everything from the library
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   183
      #   min_strip - strips most stuff from the library; leaves minimum symbols
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   184
      #   no_strip  - does not strip the library at all
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   185
      #
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   186
      # Oracle security policy requires "all_strip". A waiver was granted on
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   187
      # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   188
      #
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   189
      # Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   190
      #
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   191
      STRIP_POLICY ?= min_strip
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   192
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   193
      $(eval $(call print_info, "STRIP_POLICY=$(STRIP_POLICY)"))
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   194
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   195
      ZIP_DEBUGINFO_FILES ?= 1
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   196
33957
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   197
      $(eval $(call print_info, "ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)"))
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   198
    endif
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   199
  endif # ENABLE_FULL_DEBUG_SYMBOLS=1
39113ae98993 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 30113
diff changeset
   200
endif # BUILD_FLAVOR
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
JDK_INCLUDE_SUBDIR=solaris
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   204
# Library suffix
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   205
LIBRARY_SUFFIX=so
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   206
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
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
   208
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   209
# client and server subdirectories have symbolic links to ../libjsig.$(LIBRARY_SUFFIX)
30113
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   210
EXPORT_LIST += $(EXPORT_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   211
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   212
  ifeq ($(ZIP_DEBUGINFO_FILES),1)
30113
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   213
    EXPORT_LIST += $(EXPORT_LIB_ARCH_DIR)/libjsig.diz
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   214
  else
30113
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   215
    EXPORT_LIST += $(EXPORT_LIB_ARCH_DIR)/libjsig.debuginfo
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   216
  endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   217
endif
4018
a73b8aa8e89d 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 670
diff changeset
   218
30113
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   219
EXPORT_SERVER_DIR = $(EXPORT_LIB_ARCH_DIR)/server
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   220
EXPORT_CLIENT_DIR = $(EXPORT_LIB_ARCH_DIR)/client
10259
fc6e02d351c4 7075559: JPRT windows_x64 build failure
kvn
parents: 7662
diff changeset
   221
12156
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   222
ifeq ($(JVM_VARIANT_SERVER),true)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   223
  EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   224
  EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   225
  EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   226
  EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   227
  ifeq ($(ARCH_DATA_MODEL),32)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   228
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   229
    EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   230
  endif
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   231
  ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   232
    ifeq ($(ZIP_DEBUGINFO_FILES),1)
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   233
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.diz
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   234
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.diz
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   235
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.diz
13093
dcubed
parents: 12768
diff changeset
   236
      ifeq ($(ARCH_DATA_MODEL),32)
dcubed
parents: 12768
diff changeset
   237
        EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.diz
dcubed
parents: 12768
diff changeset
   238
        EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.diz
dcubed
parents: 12768
diff changeset
   239
      endif
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   240
    else
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   241
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   242
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.debuginfo
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   243
      EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.debuginfo
13093
dcubed
parents: 12768
diff changeset
   244
      ifeq ($(ARCH_DATA_MODEL),32)
dcubed
parents: 12768
diff changeset
   245
        EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.debuginfo
dcubed
parents: 12768
diff changeset
   246
        EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.debuginfo
dcubed
parents: 12768
diff changeset
   247
      endif
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   248
    endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   249
  endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
   250
endif
12156
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   251
ifeq ($(JVM_VARIANT_CLIENT),true)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 15793
diff changeset
   253
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX)
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 15793
diff changeset
   254
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10259
diff changeset
   255
  EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
12156
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   256
  ifeq ($(ARCH_DATA_MODEL),32)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   257
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   258
    EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
fb31de03f649 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 12095
diff changeset
   259
  endif
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   260
  ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   261
    ifeq ($(ZIP_DEBUGINFO_FILES),1)
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   262
      EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.diz
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   263
      EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.diz
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   264
      EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.diz
12503
dcubed
parents: 12156 12502
diff changeset
   265
      ifeq ($(ARCH_DATA_MODEL),32)
dcubed
parents: 12156 12502
diff changeset
   266
        EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.diz
dcubed
parents: 12156 12502
diff changeset
   267
        EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.diz
dcubed
parents: 12156 12502
diff changeset
   268
      endif
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   269
    else
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   270
      EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   271
      EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.debuginfo
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   272
      EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.debuginfo
12503
dcubed
parents: 12156 12502
diff changeset
   273
      ifeq ($(ARCH_DATA_MODEL),32)
dcubed
parents: 12156 12502
diff changeset
   274
        EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.debuginfo
dcubed
parents: 12156 12502
diff changeset
   275
        EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.debuginfo
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   276
      endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   277
    endif
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5702
diff changeset
   278
  endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
30113
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   281
EXPORT_LIST += $(EXPORT_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX)
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   282
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   283
  ifeq ($(ZIP_DEBUGINFO_FILES),1)
30113
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   284
    EXPORT_LIST += $(EXPORT_LIB_ARCH_DIR)/libsaproc.diz
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   285
  else
30113
3f6beb804b02 8075725: Remove /jre subdir in hotspot dist dir
erikj
parents: 27657
diff changeset
   286
    EXPORT_LIST += $(EXPORT_LIB_ARCH_DIR)/libsaproc.debuginfo
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 10571
diff changeset
   287
  endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 10259
diff changeset
   288
endif
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 15793
diff changeset
   289
EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar