make/solaris/makefiles/defs.make

Print this page




  57     VM_PLATFORM=solaris_i486
  58     HS_ARCH=x86
  59   endif
  60 endif
  61 
  62 # determine if HotSpot is being built in JDK6 or earlier version
  63 JDK6_OR_EARLIER=0
  64 ifeq "$(shell expr \( '$(JDK_MAJOR_VERSION)' != '' \& '$(JDK_MINOR_VERSION)' != '' \& '$(JDK_MICRO_VERSION)' != '' \))" "1"
  65   # if the longer variable names (newer build style) are set, then check those
  66   ifeq "$(shell expr \( $(JDK_MAJOR_VERSION) = 1 \& $(JDK_MINOR_VERSION) \< 7 \))" "1"
  67     JDK6_OR_EARLIER=1
  68   endif
  69 else
  70   # the longer variables aren't set so check the shorter variable names
  71   ifeq "$(shell expr \( '$(JDK_MAJOR_VER)' = 1 \& '$(JDK_MINOR_VER)' \< 7 \))" "1"
  72     JDK6_OR_EARLIER=1
  73   endif
  74 endif
  75 
  76 ifeq ($(JDK6_OR_EARLIER),0)
  77   # Full Debug Symbols is supported on JDK7 or newer

  78 
  79 ifdef ENABLE_FULL_DEBUG_SYMBOLS
  80   # Only check for Full Debug Symbols support on Solaris if it is
  81   # specifically enabled. Hopefully, it can be enabled by default
  82   # once the .debuginfo size issues are worked out.
  83   

  84   # Default OBJCOPY comes from the SUNWbinutils package:
  85   DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
  86   ifeq ($(VM_PLATFORM),solaris_amd64)
  87     # On Solaris AMD64/X64, gobjcopy is not happy and fails:
  88     #
  89     # usr/sfw/bin/gobjcopy --add-gnu-debuglink=<lib>.debuginfo <lib>.so
  90     # BFD: stKPaiop: Not enough room for program headers, try linking with -N
  91     # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
  92     # BFD: stKPaiop: Not enough room for program headers, try linking with -N
  93     # /usr/sfw/bin/gobjcopy: libsaproc.debuginfo: Bad value
  94     # BFD: stKPaiop: Not enough room for program headers, try linking with -N
  95     # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
  96     _JUNK_ := $(shell \
  97       echo >&2 "INFO: $(DEF_OBJCOPY) is not working on Solaris AMD64/X64")
  98     OBJCOPY=
  99   else
 100     OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
 101     ifneq ($(ALT_OBJCOPY),)
 102       _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
 103       # disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
 104       OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
 105     endif
 106   endif
 107 endif


 108   
 109   ifeq ($(OBJCOPY),)
 110     _JUNK_ := $(shell \
 111       echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")

 112   else
 113     _JUNK_ := $(shell \
 114       echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
 115   
 116     # Library stripping policies for .debuginfo configs:
 117     #   all_strip - strips everything from the library
 118     #   min_strip - strips most stuff from the library; leaves minimum symbols
 119     #   no_strip  - does not strip the library at all
 120     #
 121     # Oracle security policy requires "all_strip". A waiver was granted on
 122     # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
 123     #
 124     DEF_STRIP_POLICY="min_strip"
 125     ifeq ($(ALT_STRIP_POLICY),)
 126       STRIP_POLICY=$(DEF_STRIP_POLICY)
 127     else
 128       STRIP_POLICY=$(ALT_STRIP_POLICY)
 129     endif
 130     _JUNK_ := $(shell \
 131       echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")





 132   endif
 133 endif
 134 
 135 JDK_INCLUDE_SUBDIR=solaris
 136 
 137 # Library suffix
 138 LIBRARY_SUFFIX=so
 139 
 140 # FIXUP: The subdirectory for a debug build is NOT the same on all platforms
 141 VM_DEBUG=jvmg
 142 
 143 EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
 144 
 145 # client and server subdirectories have symbolic links to ../libjsig.$(LIBRARY_SUFFIX)
 146 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
 147 ifneq ($(OBJCOPY),)



 148   EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo

 149 endif
 150 
 151 EXPORT_LIST += $(EXPORT_JRE_LIB_DIR)/wb.jar
 152 
 153 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
 154 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
 155 
 156 ifneq ($(BUILD_CLIENT_ONLY),true)
 157 EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
 158 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
 159 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
 160 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
 161   ifneq ($(OBJCOPY),)





 162     EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
 163     EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.debuginfo
 164     EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.debuginfo
 165   endif

 166 endif
 167 ifeq ($(ARCH_DATA_MODEL), 32)
 168   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
 169   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX) 
 170   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.$(LIBRARY_SUFFIX) 
 171   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
 172   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
 173   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
 174   ifneq ($(OBJCOPY),)







 175     EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
 176     EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.debuginfo
 177     EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.debuginfo
 178     EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.debuginfo
 179     EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.debuginfo
 180   endif

 181   ifneq ($(BUILD_CLIENT_ONLY), true)
 182     EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
 183     EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
 184     ifneq ($(OBJCOPY),)




 185       EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.debuginfo
 186       EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.debuginfo
 187     endif
 188   endif

 189 endif
 190 
 191 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX)
 192 ifneq ($(OBJCOPY),)



 193   EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo

 194 endif
 195 EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar 


  57     VM_PLATFORM=solaris_i486
  58     HS_ARCH=x86
  59   endif
  60 endif
  61 
  62 # determine if HotSpot is being built in JDK6 or earlier version
  63 JDK6_OR_EARLIER=0
  64 ifeq "$(shell expr \( '$(JDK_MAJOR_VERSION)' != '' \& '$(JDK_MINOR_VERSION)' != '' \& '$(JDK_MICRO_VERSION)' != '' \))" "1"
  65   # if the longer variable names (newer build style) are set, then check those
  66   ifeq "$(shell expr \( $(JDK_MAJOR_VERSION) = 1 \& $(JDK_MINOR_VERSION) \< 7 \))" "1"
  67     JDK6_OR_EARLIER=1
  68   endif
  69 else
  70   # the longer variables aren't set so check the shorter variable names
  71   ifeq "$(shell expr \( '$(JDK_MAJOR_VER)' = 1 \& '$(JDK_MINOR_VER)' \< 7 \))" "1"
  72     JDK6_OR_EARLIER=1
  73   endif
  74 endif
  75 
  76 ifeq ($(JDK6_OR_EARLIER),0)
  77   # Full Debug Symbols is supported on JDK7 or newer.
  78   # Default is enabled with .debuginfo files ZIP'ed to save space.
  79 
  80   ENABLE_FULL_DEBUG_SYMBOLS ?= 1
  81   # since objcopy is optional, we set ZIP_DEBUGINFO_FILES later


  82 
  83   ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
  84     # Default OBJCOPY comes from the SUNWbinutils package:
  85     DEF_OBJCOPY=/usr/sfw/bin/gobjcopy
  86     ifeq ($(VM_PLATFORM),solaris_amd64)
  87       # On Solaris AMD64/X64, gobjcopy is not happy and fails:
  88       #
  89       # usr/sfw/bin/gobjcopy --add-gnu-debuglink=<lib>.debuginfo <lib>.so
  90       # BFD: stKPaiop: Not enough room for program headers, try linking with -N
  91       # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
  92       # BFD: stKPaiop: Not enough room for program headers, try linking with -N
  93       # /usr/sfw/bin/gobjcopy: libsaproc.debuginfo: Bad value
  94       # BFD: stKPaiop: Not enough room for program headers, try linking with -N
  95       # /usr/sfw/bin/gobjcopy: stKPaiop: Bad value
  96       _JUNK_ := $(shell \
  97         echo >&2 "INFO: $(DEF_OBJCOPY) is not working on Solaris AMD64/X64")
  98       OBJCOPY=
  99     else
 100       OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
 101       ifneq ($(ALT_OBJCOPY),)
 102         _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")

 103         OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
 104       endif
 105     endif
 106   else
 107     OBJCOPY=
 108   endif
 109 
 110   ifeq ($(OBJCOPY),)
 111     _JUNK_ := $(shell \
 112       echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files.")
 113     ENABLE_FULL_DEBUG_SYMBOLS=0
 114   else
 115     _JUNK_ := $(shell \
 116       echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
 117 
 118     # Library stripping policies for .debuginfo configs:
 119     #   all_strip - strips everything from the library
 120     #   min_strip - strips most stuff from the library; leaves minimum symbols
 121     #   no_strip  - does not strip the library at all
 122     #
 123     # Oracle security policy requires "all_strip". A waiver was granted on
 124     # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
 125     #
 126     # Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
 127     #
 128     STRIP_POLICY ?= min_strip
 129 


 130     _JUNK_ := $(shell \
 131       echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
 132 
 133     ZIP_DEBUGINFO_FILES ?= 1
 134 
 135     _JUNK_ := $(shell \
 136       echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
 137   endif
 138 endif
 139 
 140 JDK_INCLUDE_SUBDIR=solaris
 141 
 142 # Library suffix
 143 LIBRARY_SUFFIX=so
 144 
 145 # FIXUP: The subdirectory for a debug build is NOT the same on all platforms
 146 VM_DEBUG=jvmg
 147 
 148 EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
 149 
 150 # client and server subdirectories have symbolic links to ../libjsig.$(LIBRARY_SUFFIX)
 151 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.$(LIBRARY_SUFFIX)
 152 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 153   ifeq ($(ZIP_DEBUGINFO_FILES),1)
 154     EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.diz
 155   else
 156     EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.debuginfo
 157   endif
 158 endif
 159 
 160 EXPORT_LIST += $(EXPORT_JRE_LIB_DIR)/wb.jar
 161 
 162 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
 163 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
 164 
 165 ifneq ($(BUILD_CLIENT_ONLY),true)
 166 EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
 167 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.$(LIBRARY_SUFFIX)
 168 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.$(LIBRARY_SUFFIX)
 169 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
 170   ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 171     ifeq ($(ZIP_DEBUGINFO_FILES),1)
 172       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.diz
 173       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.diz
 174       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.diz
 175     else
 176       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.debuginfo
 177       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.debuginfo
 178       EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.debuginfo
 179     endif
 180   endif
 181 endif
 182 ifeq ($(ARCH_DATA_MODEL), 32)
 183   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
 184   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.$(LIBRARY_SUFFIX) 
 185   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.$(LIBRARY_SUFFIX) 
 186   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.$(LIBRARY_SUFFIX)
 187   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
 188   EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
 189   ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 190     ifeq ($(ZIP_DEBUGINFO_FILES),1)
 191       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.diz
 192       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.diz
 193       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.diz
 194       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.diz
 195       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.diz
 196     else
 197       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.debuginfo
 198       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.debuginfo
 199       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.debuginfo
 200       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.debuginfo
 201       EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.debuginfo
 202     endif
 203   endif
 204   ifneq ($(BUILD_CLIENT_ONLY), true)
 205     EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
 206     EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
 207     ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 208       ifeq ($(ZIP_DEBUGINFO_FILES),1)
 209         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.diz
 210         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.diz
 211       else
 212         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.debuginfo
 213         EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.debuginfo
 214       endif
 215     endif
 216   endif
 217 endif
 218 
 219 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX)
 220 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
 221   ifeq ($(ZIP_DEBUGINFO_FILES),1)
 222   EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz
 223   else
 224     EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
 225   endif
 226 endif
 227 EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar