common/autoconf/hotspot-spec.gmk.in
changeset 35032 c2f315819691
parent 34103 d03d49538b76
child 36535 141db8da8c18
equal deleted inserted replaced
35031:a48004d61a37 35032:c2f315819691
   116 
   116 
   117 USE_PRECOMPILED_HEADER=@USE_PRECOMPILED_HEADER@
   117 USE_PRECOMPILED_HEADER=@USE_PRECOMPILED_HEADER@
   118 
   118 
   119 # Hotspot expects the variable FULL_DEBUG_SYMBOLS=1/0 to control debug symbols
   119 # Hotspot expects the variable FULL_DEBUG_SYMBOLS=1/0 to control debug symbols
   120 # creation.
   120 # creation.
   121 ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
   121 ifeq ($(COPY_DEBUG_SYMBOLS), true)
   122   FULL_DEBUG_SYMBOLS=1
   122   FULL_DEBUG_SYMBOLS=1
   123   # Ensure hotspot uses the objcopy that configure located
   123   # Ensure hotspot uses the objcopy that configure located
   124   ALT_OBJCOPY:=$(OBJCOPY)
   124   ALT_OBJCOPY:=$(OBJCOPY)
   125 else
   125 else
   126   FULL_DEBUG_SYMBOLS=0
   126   FULL_DEBUG_SYMBOLS=0
   127 endif
   127 endif
   128 
   128 
   129 # Hotspot expects the variable ZIP_DEBUGINFO_FILES=1/0 and not true/false.
   129 # Hotspot expects the variable ZIP_DEBUGINFO_FILES=1/0 and not true/false.
   130 ifeq ($(ZIP_DEBUGINFO_FILES)$(ENABLE_DEBUG_SYMBOLS), truetrue)
   130 ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), true)
   131   ZIP_DEBUGINFO_FILES:=1
   131   ZIP_DEBUGINFO_FILES:=1
   132 else
   132 else
   133   ZIP_DEBUGINFO_FILES:=0
   133   ZIP_DEBUGINFO_FILES:=0
   134 endif
   134 endif
       
   135 
       
   136 DEBUG_BINARIES := @DEBUG_BINARIES@
       
   137 STRIP_POLICY := @STRIP_POLICY@
   135 
   138 
   136 ifeq ($(OPENJDK_TARGET_OS), windows)
   139 ifeq ($(OPENJDK_TARGET_OS), windows)
   137   # On Windows, the Visual Studio toolchain needs the LIB and INCLUDE
   140   # On Windows, the Visual Studio toolchain needs the LIB and INCLUDE
   138   # environment variables (in Windows path style).
   141   # environment variables (in Windows path style).
   139   export INCLUDE:=@VS_INCLUDE@
   142   export INCLUDE:=@VS_INCLUDE@