1 #
   2 # Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 #
  24 
  25 # The common definitions for hotspot solaris builds.
  26 # Include the top level defs.make under make directory instead of this one.
  27 # This file is included into make/defs.make.
  28 
  29 define print_info
  30   ifneq ($$(LOG_LEVEL), warn)
  31     $$(shell echo >&2 "INFO: $1")
  32   endif
  33 endef
  34 
  35 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
  36 SLASH_JAVA ?= /java
  37 ARCH:=$(shell uname -p)
  38 PATH_SEP = :
  39 ifeq ($(LP64), 1)
  40   ARCH_DATA_MODEL=64
  41 else
  42   ARCH_DATA_MODEL=32
  43 endif
  44 
  45 ifeq ($(ARCH),sparc)
  46   ifeq ($(ARCH_DATA_MODEL), 64)
  47     MAKE_ARGS += LP64=1
  48     PLATFORM=solaris-sparcv9
  49     VM_PLATFORM=solaris_sparcv9
  50   else
  51     PLATFORM=solaris-sparc
  52     VM_PLATFORM=solaris_sparc
  53   endif
  54   HS_ARCH=sparc
  55 else
  56   ifeq ($(ARCH_DATA_MODEL), 64)
  57     MAKE_ARGS += LP64=1
  58     PLATFORM=solaris-amd64
  59     VM_PLATFORM=solaris_amd64
  60     HS_ARCH=x86
  61   else
  62     PLATFORM=solaris-i586
  63     VM_PLATFORM=solaris_i486
  64     HS_ARCH=x86
  65   endif
  66 endif
  67 
  68 # On 32 bit solaris we build server and client, on 64 bit just server.
  69 ifeq ($(JVM_VARIANTS),)
  70   ifeq ($(ARCH_DATA_MODEL), 32)
  71     JVM_VARIANTS:=client,server
  72     JVM_VARIANT_CLIENT:=true
  73     JVM_VARIANT_SERVER:=true
  74   else
  75     JVM_VARIANTS:=server
  76     JVM_VARIANT_SERVER:=true
  77   endif
  78 endif
  79 
  80 # determine if HotSpot is being built in JDK6 or earlier version
  81 JDK6_OR_EARLIER=0
  82 ifeq "$(shell expr \( '$(JDK_MAJOR_VERSION)' != '' \& '$(JDK_MINOR_VERSION)' != '' \& '$(JDK_MICRO_VERSION)' != '' \))" "1"
  83   # if the longer variable names (newer build style) are set, then check those
  84   ifeq "$(shell expr \( $(JDK_MAJOR_VERSION) = 1 \& $(JDK_MINOR_VERSION) \< 7 \))" "1"
  85     JDK6_OR_EARLIER=1
  86   endif
  87 else
  88   # the longer variables aren't set so check the shorter variable names
  89   ifeq "$(shell expr \( '$(JDK_MAJOR_VER)' = 1 \& '$(JDK_MINOR_VER)' \< 7 \))" "1"
  90     JDK6_OR_EARLIER=1
  91   endif
  92 endif
  93 
  94 ifeq ($(JDK6_OR_EARLIER),0)
  95   # Full Debug Symbols is supported on JDK7 or newer.
  96   # The Full Debug Symbols (FDS) default for BUILD_FLAVOR == product
  97   # builds is enabled with debug info files ZIP'ed to save space. For
  98   # BUILD_FLAVOR != product builds, FDS is always enabled, after all a
  99   # debug build without debug info isn't very useful.
 100   # The ZIP_DEBUGINFO_FILES option only has meaning when FDS is enabled.
 101   #
 102   # If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be
 103   # disabled for a BUILD_FLAVOR == product build.
 104   #
 105   # Note: Use of a different variable name for the FDS override option
 106   # versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS
 107   # versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass
 108   # in options via environment variables, use of distinct variables
 109   # prevents strange behaviours. For example, in a BUILD_FLAVOR !=
 110   # product build, the FULL_DEBUG_SYMBOLS environment variable will be
 111   # 0, but the ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If
 112   # the same variable name is used, then different values can be picked
 113   # up by different parts of the build. Just to be clear, we only need
 114   # two variable names because the incoming option value can be
 115   # overridden in some situations, e.g., a BUILD_FLAVOR != product
 116   # build.
 117 
 118   # Due to the multiple sub-make processes that occur this logic gets
 119   # executed multiple times. We reduce the noise by at least checking that
 120   # BUILD_FLAVOR has been set.
 121   ifneq ($(BUILD_FLAVOR),)
 122     ifeq ($(BUILD_FLAVOR), product)
 123       FULL_DEBUG_SYMBOLS ?= 1
 124       ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
 125     else
 126       # debug variants always get Full Debug Symbols (if available)
 127       ENABLE_FULL_DEBUG_SYMBOLS = 1
 128     endif
 129     $(eval $(call print_info, "ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)"))
 130     # since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
 131 
 132     ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 133       # Default OBJCOPY comes from the SUNWbinutils package:
 134       DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
 135       OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
 136       ifneq ($(ALT_OBJCOPY),)
 137         $(eval $(call print_info, "ALT_OBJCOPY=$(ALT_OBJCOPY)"))
 138         OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
 139       endif
 140 
 141       ifeq ($(OBJCOPY),)
 142         $(eval $(call print_info, "no objcopy cmd found so cannot create .debuginfo files."))
 143         ENABLE_FULL_DEBUG_SYMBOLS=0
 144         $(eval $(call print_info, "ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)"))
 145       else
 146         $(eval $(call print_info, "$(OBJCOPY) cmd found so will create .debuginfo files."))
 147 
 148         # Library stripping policies for .debuginfo configs:
 149         #   all_strip - strips everything from the library
 150         #   min_strip - strips most stuff from the library; leaves minimum symbols
 151         #   no_strip  - does not strip the library at all
 152         #
 153         # Oracle security policy requires "all_strip". A waiver was granted on
 154         # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
 155         #
 156         # Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
 157         #
 158         STRIP_POLICY ?= min_strip
 159 
 160         $(eval $(call print_info, "STRIP_POLICY=$(STRIP_POLICY)"))
 161 
 162         ZIP_DEBUGINFO_FILES ?= 1
 163 
 164         $(eval $(call print_info, "ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)"))
 165       endif
 166     endif # ENABLE_FULL_DEBUG_SYMBOLS=1
 167   endif # BUILD_FLAVOR
 168 endif # JDK_6_OR_EARLIER
 169 
 170 JDK_INCLUDE_SUBDIR=solaris
 171 
 172 # Library suffix
 173 LIBRARY_SUFFIX=so
 174 
 175 EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
 176 
 177 # client and server subdirectories have symbolic links to ../libjsig.$(LIBRARY_SUFFIX)
 178 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
 179 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 180   ifeq ($(ZIP_DEBUGINFO_FILES),1)
 181     EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.diz
 182   else
 183     EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo
 184   endif
 185 endif
 186 
 187 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
 188 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
 189 
 190 ifeq ($(JVM_VARIANT_SERVER),true)
 191   EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
 192   EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
 193   EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
 194   EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
 195   ifeq ($(ARCH_DATA_MODEL),32)
 196     EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
 197     EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
 198   endif
 199   ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 200     ifeq ($(ZIP_DEBUGINFO_FILES),1)
 201       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.diz
 202       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.diz
 203       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.diz
 204       ifeq ($(ARCH_DATA_MODEL),32)
 205         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.diz
 206         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.diz
 207       endif
 208     else
 209       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
 210       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.debuginfo
 211       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.debuginfo
 212       ifeq ($(ARCH_DATA_MODEL),32)
 213         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.debuginfo
 214         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.debuginfo
 215       endif
 216     endif
 217   endif
 218 endif
 219 ifeq ($(JVM_VARIANT_CLIENT),true)
 220   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
 221   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX)
 222   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
 223   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
 224   ifeq ($(ARCH_DATA_MODEL),32)
 225     EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
 226     EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
 227   endif
 228   ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 229     ifeq ($(ZIP_DEBUGINFO_FILES),1)
 230       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.diz
 231       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.diz
 232       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.diz
 233       ifeq ($(ARCH_DATA_MODEL),32)
 234         EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.diz
 235         EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.diz
 236       endif
 237     else
 238       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
 239       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.debuginfo
 240       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.debuginfo
 241       ifeq ($(ARCH_DATA_MODEL),32)
 242         EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.debuginfo
 243         EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.debuginfo
 244       endif
 245     endif
 246   endif
 247 endif
 248 
 249 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX)
 250 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 251   ifeq ($(ZIP_DEBUGINFO_FILES),1)
 252     EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz
 253   else
 254     EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
 255   endif
 256 endif
 257 EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar