make/solaris/makefiles/defs.make

Print this page




   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 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
  30 SLASH_JAVA ?= /java
  31 ARCH:=$(shell uname -p)
  32 PATH_SEP = :
  33 ifeq ($(LP64), 1)
  34   ARCH_DATA_MODEL=64
  35 else
  36   ARCH_DATA_MODEL=32
  37 endif
  38 
  39 ifeq ($(ARCH),sparc)
  40   ifeq ($(ARCH_DATA_MODEL), 64)
  41     MAKE_ARGS += LP64=1
  42     PLATFORM=solaris-sparcv9
  43     VM_PLATFORM=solaris_sparcv9
  44   else
  45     PLATFORM=solaris-sparc
  46     VM_PLATFORM=solaris_sparc
  47   endif
  48   HS_ARCH=sparc


 103   # prevents strange behaviours. For example, in a BUILD_FLAVOR !=
 104   # product build, the FULL_DEBUG_SYMBOLS environment variable will be
 105   # 0, but the ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If
 106   # the same variable name is used, then different values can be picked
 107   # up by different parts of the build. Just to be clear, we only need
 108   # two variable names because the incoming option value can be
 109   # overridden in some situations, e.g., a BUILD_FLAVOR != product
 110   # build.
 111 
 112   # Due to the multiple sub-make processes that occur this logic gets
 113   # executed multiple times. We reduce the noise by at least checking that
 114   # BUILD_FLAVOR has been set.
 115   ifneq ($(BUILD_FLAVOR),)
 116     ifeq ($(BUILD_FLAVOR), product)
 117       FULL_DEBUG_SYMBOLS ?= 1
 118       ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
 119     else
 120       # debug variants always get Full Debug Symbols (if available)
 121       ENABLE_FULL_DEBUG_SYMBOLS = 1
 122     endif
 123     _JUNK_ := $(shell \
 124       echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
 125     # since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
 126 
 127     ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 128       # Default OBJCOPY comes from the SUNWbinutils package:
 129       DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
 130       OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
 131       ifneq ($(ALT_OBJCOPY),)
 132         _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
 133         OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
 134       endif
 135 
 136       ifeq ($(OBJCOPY),)
 137         _JUNK_ := $(shell \
 138           echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
 139         ENABLE_FULL_DEBUG_SYMBOLS=0
 140         _JUNK_ := $(shell \
 141           echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
 142       else
 143         _JUNK_ := $(shell \
 144           echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
 145 
 146         # Library stripping policies for .debuginfo configs:
 147         #   all_strip - strips everything from the library
 148         #   min_strip - strips most stuff from the library; leaves minimum symbols
 149         #   no_strip  - does not strip the library at all
 150         #
 151         # Oracle security policy requires "all_strip". A waiver was granted on
 152         # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
 153         #
 154         # Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
 155         #
 156         STRIP_POLICY ?= min_strip
 157 
 158         _JUNK_ := $(shell \
 159           echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
 160 
 161         ZIP_DEBUGINFO_FILES ?= 1
 162 
 163         _JUNK_ := $(shell \
 164           echo >&2 "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




   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


 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