1 #
   2 # Copyright (c) 1999, 2009, 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.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 # Makefile to specify compiler flags for programs and libraries
  28 # targeted to Windows builds.  Should not contain any rules.
  29 #
  30 # WARNING: This file is shared with other workspaces. 
  31 #          So when it includes other files, it must use JDK_TOPDIR.
  32 #
  33 
  34 # Get shared JDK settings
  35 include $(JDK_MAKE_SHARED_DIR)/Defs.gmk
  36 
  37 # CC compiler object code output directive flag value
  38 CC_OBJECT_OUTPUT_FLAG = -Fo
  39 CC_PROGRAM_OUTPUT_FLAG = -Fe
  40 
  41 # The suffix applied to the library name for FDLIBM
  42 FDDLIBM_SUFFIX = lib
  43 # The suffix applied to scripts (.bat for windows, nothing for unix)
  44 SCRIPT_SUFFIX = .bat
  45 
  46 HPIS = windows
  47 # LIB_LOCATION, which for windows identifies where .exe files go, may be
  48 # set by each GNUmakefile. The default is BINDIR.
  49 ifndef LIB_LOCATION
  50   LIB_LOCATION = $(BINDIR)
  51 endif # LIB_LOCATION
  52 
  53 ifndef PLATFORM_SRC
  54   PLATFORM_SRC  = $(BUILDDIR)/../src/windows
  55 endif # PLATFORM_SRC
  56 
  57 # Platform specific closed sources
  58 ifndef OPENJDK
  59   ifndef CLOSED_PLATFORM_SRC
  60     CLOSED_PLATFORM_SRC  = $(BUILDDIR)/../src/closed/windows
  61   endif
  62 endif
  63 
  64 # for backwards compatability, the old "win32" is used here instead of 
  65 # the more proper "windows"
  66 PLATFORM_INCLUDE_NAME = win32
  67 PLATFORM_INCLUDE      = $(INCLUDEDIR)/$(PLATFORM_INCLUDE_NAME)
  68 
  69 # The following DLL's are considered MS runtime libraries and should
  70 #     not to be REBASEd, see deploy/make/common/Release.gmk.
  71 #     msvcrt.dll, msvcrnn.dll [msvcr71 or msvcr80 or msvcr90] : Microsoft runtimes
  72 MS_RUNTIME_LIBRARIES = msvcrt.dll
  73 ifeq ($(ARCH_DATA_MODEL), 32)
  74   ifeq ($(COMPILER_VERSION), VS2003)
  75     MSVCRNN_DLL = msvcr71.dll
  76     MSVCPNN_DLL = msvcp71.dll
  77     MS_RUNTIME_LIBRARIES += $(MSVCRNN_DLL)
  78   endif
  79   ifeq ($(COMPILER_VERSION), VS2005)
  80     MSVCRNN_DLL = msvcr80.dll
  81     MSVCPNN_DLL = msvcp80.dll
  82     MS_RUNTIME_LIBRARIES += $(MSVCRNN_DLL)
  83   endif
  84   ifeq ($(COMPILER_VERSION), VS2008)
  85     MSVCRNN_DLL = msvcr90.dll
  86     MSVCPNN_DLL = msvcp90.dll
  87     MS_RUNTIME_LIBRARIES += $(MSVCRNN_DLL)
  88   endif
  89   ifeq ($(COMPILER_VERSION), VS2010)
  90     MSVCRNN_DLL = msvcr100.dll
  91     MSVCPNN_DLL = msvcp100.dll
  92     MS_RUNTIME_LIBRARIES += $(MSVCRNN_DLL)
  93   endif
  94 endif
  95 
  96 ifeq ($(ARCH_DATA_MODEL), 64)
  97   ifeq ($(COMPILER_VERSION), VS2008)
  98     MSVCRNN_DLL = msvcr90.dll
  99     MSVCPNN_DLL = msvcp90.dll
 100     MS_RUNTIME_LIBRARIES += $(MSVCRNN_DLL)
 101   endif
 102   ifeq ($(COMPILER_VERSION), VS2010)
 103     MSVCRNN_DLL = msvcr100.dll
 104     MSVCPNN_DLL = msvcp100.dll
 105     MS_RUNTIME_LIBRARIES += $(MSVCRNN_DLL)
 106   endif
 107 endif
 108 
 109 EXTRA_LFLAGS += /LIBPATH:$(DXSDK_LIB_PATH)
 110 
 111 # C Compiler flag definitions
 112 
 113 #
 114 # Default optimization
 115 #
 116 
 117 ifndef OPTIMIZATION_LEVEL
 118   ifeq ($(PRODUCT), java)
 119     OPTIMIZATION_LEVEL = HIGHER
 120   else
 121     OPTIMIZATION_LEVEL = LOWER
 122   endif
 123 endif
 124 ifndef FASTDEBUG_OPTIMIZATION_LEVEL
 125   FASTDEBUG_OPTIMIZATION_LEVEL = LOWER
 126 endif
 127 
 128 ifeq ($(CC_VERSION),msvc)
 129   # Visual Studio .NET 2003 or VS2003 compiler option definitions:
 130   #   -O1      Favors reduced size over speed (-Og     -Os -Oy -Ob2 -Gs -GF -Gy)
 131   #   -O2      Favors speed over reduced size (-Og -Oi -Ot -Oy -Ob2 -Gs -GF -Gy)
 132   #   -Ox      Full optimization (use -O2)    (-Og -Oi -Ot -Oy -Ob2)
 133   #              (Removed in Visual Studio 2005 or VS2005)
 134   #   -Ob2     More aggressive inlining
 135   #   -Og      Global optimizations
 136   #   -Oi      Replace some functions with intrinsic or special forms
 137   #   -Op      Improve floating point calculations (disables some optimizations)
 138   #              (Replaced with -fp:precise in VS2005, /Op is default now)
 139   #   -Os      Favor small code
 140   #   -Ot      Favor faster code
 141   #   -Oy      Frame pointer omission
 142   #   -GB      Optimize for pentium (old VC6 option?)
 143   #   -G6      VS2003 version of -GB?
 144   #   -GF      Pool strings in read-only memory
 145   #   -Gf      Pool strings in read-write memory (the default)
 146   #   -Gs      Controls stack probess
 147   #   -GS      Adds buffer overflow checks on stacks
 148   #              (Default in VS2005)
 149   #   -GX      Enables exception handling 
 150   #              (Replaced with /EHsc in VS2005)
 151   #   -Gy      Function level linking only
 152   #
 153   # NOTE: With VC6, -Ox included -Gs.
 154   # NOTE: With VC6, -Ox, -O1, and -O2 used -Ob1, not -Ob2.
 155   # NOTE: With VC6, -O1 and -O2 used -Gf, not -GF.
 156   #
 157 
 158   CC_OPT/NONE    = -Od
 159   CC_OPT/LOWER   = -O2
 160   CC_OPT/HIGHER  = -O3
 161   CC_OPT/HIGHEST = -O3
 162   
 163   ifeq ($(COMPILER_VERSION), VC6)
 164     # VC6 (6.2) msvc compiler (the way Tiger and early Mustang were built)
 165     # Automatic precompiled header option to use (if COMPILE_APPROACH=batch)
 166     AUTOMATIC_PCH_OPTION =
 167     GX_OPTION = -GX
 168     GZ_OPTION = -GZ
 169     ifeq ($(ARCH_DATA_MODEL), 32)
 170       CC_OPT/HIGHEST = -Ox -Gy -Os -GB
 171       CC_OPT/HIGHER  = -Ox -Gy -Os -GB
 172       CC_OPT/LOWER   = -Ox -Gy -Os -GB
 173     else
 174       CC_OPT/HIGHEST = -Ox -Gy -Op
 175       CC_OPT/HIGHER  = -Ox -Gy -Op
 176       CC_OPT/LOWER   = -Ox -Gy -Op
 177     endif
 178   endif
 179   
 180   ifeq ($(COMPILER_VERSION), VS2003)
 181     # Automatic precompiled header option to use (if COMPILE_APPROACH=batch)
 182     AUTOMATIC_PCH_OPTION = -YX
 183     # Also known as VC7 compiler
 184     GX_OPTION = -GX
 185     GZ_OPTION = -GZ
 186     ifeq ($(ARCH_DATA_MODEL), 32)
 187       # Lowered opt level to try and reduce footprint, dll size especially.
 188       #     Was: CC_OPT/HIGHEST = -O2 -G6
 189       #     Was: CC_OPT/HIGHER  = -O2
 190       CC_OPT/HIGHEST = -O2
 191       CC_OPT/HIGHER  = -O1
 192       CC_OPT/LOWER   = -O1
 193     else
 194       CC_OPT/HIGHEST = -O2 -Op
 195       CC_OPT/HIGHER  = -O2 -Op
 196       CC_OPT/LOWER   = -O1 -Op
 197     endif
 198   endif
 199   
 200   ifeq ($(COMPILER_VERSION), VS2005)
 201     # Automatic precompiled header option to use (if COMPILE_APPROACH=batch)
 202     AUTOMATIC_PCH_OPTION =
 203     # VS2005 compiler, only with Platform SDK right now?
 204     GX_OPTION = -EHsc
 205     GZ_OPTION = -RTC1
 206     ifeq ($(ARCH_DATA_MODEL), 32)
 207       CC_OPT/HIGHEST = -O2
 208       CC_OPT/HIGHER  = -O1
 209       CC_OPT/LOWER   = -O1
 210     else
 211       CC_OPT/HIGHEST = -O2
 212       CC_OPT/HIGHER  = -O1
 213       CC_OPT/LOWER   = -O1
 214     endif
 215   endif
 216   ifeq ($(COMPILER_VERSION), VS2008)
 217     # Automatic precompiled header option to use (if COMPILE_APPROACH=batch)
 218     AUTOMATIC_PCH_OPTION =
 219     GX_OPTION = -EHsc
 220     GZ_OPTION = -RTC1
 221     ifeq ($(ARCH_DATA_MODEL), 32)
 222       CC_OPT/HIGHEST = -O2
 223       CC_OPT/HIGHER  = -O1
 224       CC_OPT/LOWER   = -O1
 225     else
 226       CC_OPT/HIGHEST = -O2
 227       CC_OPT/HIGHER  = -O1
 228       CC_OPT/LOWER   = -O1
 229     endif
 230   endif
 231 
 232   ifeq ($(COMPILER_VERSION), VS2010)
 233     # Automatic precompiled header option to use (if COMPILE_APPROACH=batch)
 234     AUTOMATIC_PCH_OPTION =
 235     GX_OPTION = -EHsc
 236     GZ_OPTION = -RTC1
 237     ifeq ($(ARCH_DATA_MODEL), 32)
 238       CC_OPT/HIGHEST = -O2
 239       CC_OPT/HIGHER  = -O1
 240       CC_OPT/LOWER   = -O1
 241     else
 242       CC_OPT/HIGHEST = -O2
 243       CC_OPT/HIGHER  = -O1
 244       CC_OPT/LOWER   = -O1
 245     endif
 246   endif
 247 
 248 else # CC_VERSION
 249   # GCC not supported, but left for historical reference...
 250   CC_OPT/NONE     =
 251   CC_OPT/LOWER    = -O2
 252   CC_OPT/HIGHER   = -O2
 253   CC_OPT/HIGHEST  = -O3
 254 
 255 endif
 256 
 257 CC_OPT = $(CC_OPT/$(OPTIMIZATION_LEVEL))
 258 
 259 # Select the runtime support library carefully, need to be consistent
 260 #
 261 # VS2003 compiler option definitions:
 262 #   -MD        Use dynamic multi-threaded runtime library
 263 #   -MDd       Use debug version (don't use, doesn't mix with -MD DLL's)
 264 #   -MT        Use static multi-threaded runtime library (-ML is going away)
 265 #   -MTd       Use static debug version (better than -MDd, no runtime issues)
 266 #   -D_DEBUG   Change use of malloc/free/etc to use special debug ones (-MTd)
 267 #
 268 #      NOTE: We also will use /D _STATIC_CPPLIB  so we don't need msvcpnn.dll
 269 #
 270 # If MS_RUNTIME_STATIC is requested, use -MT only with VS2003.
 271 ifeq ($(MS_RUNTIME_STATIC),true)
 272   ifeq ($(COMPILER_VERSION), VS2003)
 273     MS_RUNTIME_OPTION=-MT
 274   endif
 275 else
 276   MS_RUNTIME_OPTION=-MD
 277 endif
 278 # The _DEBUG macro option (changes things like malloc to use debug version)
 279 MS_RUNTIME_DEBUG_OPTION=
 280 MS_RC_DEBUG_OPTION=
 281 # Externally set environment variable can force any build to use the debug vers
 282 ifeq ($(MFC_DEBUG), true)
 283   ifeq ($(MS_RUNTIME_STATIC),true)
 284     MS_RUNTIME_OPTION=-MTd
 285   else
 286     # This MS debugging flag forces a dependence on the debug
 287     #     version of the runtime library (MSVCRTD.DLL), as does -MDd.
 288     #     We cannot re-distribute this debug runtime.
 289     MS_RUNTIME_OPTION=-MDd
 290   endif
 291   MS_RUNTIME_DEBUG_OPTION= -D_DEBUG
 292   MS_RC_DEBUG_OPTION= -d _DEBUG
 293 endif
 294 
 295 # Always add _STATIC_CPPLIB definition
 296 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB
 297 MS_RUNTIME_OPTION += $(STATIC_CPPLIB_OPTION)
 298 
 299 ifeq ($(CC_VERSION),msvc)
 300   # VS2003 compiler option definitions:
 301   #   -Zi      Cause *.pdb file to be created, full debug information
 302   #   -Z7      Full debug inside the .obj, no .pdb
 303   #   -Zd      Basic debug, no local variables? In the .obj
 304   #   -Zl      Don't add runtime library name to obj file?
 305   #   -Od      Turns off optimization and speeds compilation
 306   #   -YX -Fp/.../foobar.pch   Use precompiled headers (try someday?)
 307   #   -nologo  Don't print out startup message
 308   #   /D _STATIC_CPPLIB  
 309   #            Use static link for the C++ runtime (so msvcpnn.dll not needed)
 310   #   
 311   CFLAGS_COMMON  += -Zi -nologo
 312   CFLAGS_OPT      = $(CC_OPT)
 313   CFLAGS_DBG      = -Od $(MS_RUNTIME_DEBUG_OPTION)
 314 
 315   # REMIND: I don't see where CFLAGS_VS2005 is used. I suspect its
 316   # pulled in as a combined "CFLAGS_$(COMPILER_VERSION)" string
 317   # but the lack of this isn't causing any apparent build problems
 318   # with VS 2010 but it could be causing compiler warnings.
 319   # For now, I  will add it for all cases :
 320   CFLAGS_VS2010 += -Zc:wchar_t-
 321   #
 322   # Starting from VS2005 the wchar_t is handled as a built-in C/C++ data type
 323   # by default. However, we expect the wchar_t to be a typedef to the
 324   # unsigned short data type. The -Zc:wchar_t- option restores the old
 325   # behavior (as seen in VS2003) to avoid massive code modifications.
 326   # When/if our code will be "C/C++ Standard"-compliant (at least in the area
 327   # of handling the wchar_t type), the option won't be necessary.
 328   ifeq ($(ARCH_DATA_MODEL), 32)
 329     CFLAGS_VS2005 += -Zc:wchar_t-
 330   else
 331     # The 64bit Platform SDK we use (April 2005) doesn't like this option
 332     ifneq ($(CC_VER), 14.00.40310.41)
 333       CFLAGS_VS2005 += -Zc:wchar_t-
 334     endif
 335   endif
 336 
 337   # All builds get the same runtime setting
 338   CFLAGS_COMMON += $(MS_RUNTIME_OPTION) $(CFLAGS_$(COMPILER_VERSION))
 339   
 340 
 341   LDEBUG = /debug
 342   
 343   ifeq ($(VTUNE_SUPPORT), true)
 344     OTHER_CFLAGS = -Z7 -Ox 
 345     LDEBUG += /pdb:NONE
 346   endif
 347   
 348   # The new Platform SDK and VS2005 has /GS as a default and requires 
 349   #    bufferoverflowU.lib on the link command line, otherwise 
 350   #    we get missing __security_check_cookie externals at link time. 
 351   BUFFEROVERFLOWLIB = bufferoverflowU.lib
 352   # Always add bufferoverflowU.lib to VS2005 link commands (pack uses LDDFLAGS)
 353   LFLAGS_VS2005 = $(BUFFEROVERFLOWLIB)
 354 
 355   # VS2008 has bufferoverflow baked in:
 356   LFLAGS_VS2008 = 
 357   LFLAGS_VS2010 = 
 358 
 359   # LFLAGS are the flags given to $(LINK) and used to build the actual DLL file
 360   BASELFLAGS = -nologo /opt:REF /incremental:no
 361 ifdef MT
 362     # VS2005, VS2008, and beyond: ask LINK to generate manifests for .dll & .exe
 363     BASELFLAGS += /manifest
 364 endif
 365 
 366   LFLAGS = $(BASELFLAGS) $(LDEBUG) $(EXTRA_LFLAGS) $(LFLAGS_$(COMPILER_VERSION))
 367   LDDFLAGS += $(LFLAGS_$(COMPILER_VERSION))
 368   
 369 endif
 370 
 371 #
 372 # Preprocessor macro definitions
 373 #
 374 CPPFLAGS_COMMON = -DWIN32 -DIAL -D_LITTLE_ENDIAN
 375 ifeq ($(ARCH), amd64)
 376   CPPFLAGS_COMMON += -D_AMD64_ -Damd64
 377 else
 378   CPPFLAGS_COMMON += -D_X86_ -Dx86 
 379 endif
 380 CPPFLAGS_COMMON += -DWIN32_LEAN_AND_MEAN
 381 
 382 #
 383 # Output options (use specific filenames to avoid parallel compile errors)
 384 #
 385 CFLAGS_COMMON += -Fd$(OBJDIR)/$(basename $(@F)).pdb -Fm$(OBJDIR)/$(basename $(@F)).map
 386 
 387 #
 388 # Use -wdNNNN to disable warning NNNN.
 389 #   C4800 is a warning about bool performance casts (can't make go away)
 390 #
 391 COMPILER_WARNINGS_TO_IGNORE = 4800
 392 CFLAGS_COMMON += $(COMPILER_WARNINGS_TO_IGNORE:%=-wd%)
 393 
 394 #
 395 # Treat compiler warnings as errors, if requested
 396 #
 397 CFLAGS_COMMON += -W$(COMPILER_WARNING_LEVEL)
 398 # Turn off security warnings about using the standard C library function strcpy
 399 CFLAGS_COMMON += -D _CRT_SECURE_NO_DEPRECATE
 400 ifeq ($(COMPILER_WARNINGS_FATAL),true)
 401   CFLAGS_COMMON += -WX
 402 endif
 403 
 404 CPPFLAGS_OPT    = -DNDEBUG
 405 CPPFLAGS_DBG    = -DDEBUG -DLOGGING
 406 
 407 CXXFLAGS_COMMON = $(CFLAGS_COMMON)
 408 CXXFLAGS_OPT    = $(CFLAGS_OPT)
 409 CXXFLAGS_DBG    = $(CFLAGS_DBG)
 410 
 411 ifneq ($(LIBRARY),fdlibm)
 412   EXTRA_LIBS += advapi32.lib
 413 endif
 414 
 415 #
 416 # Path and option to link against the VM, if you have to. 
 417 #
 418 JVMLIB = $(LIBDIR)/jvm.lib
 419 JAVALIB = $(LIBDIR)/java.lib
 420 
 421 ifeq ($(CC_VERSION), msvc)
 422   CC_DEPEND        = -FD
 423   CC_DEPEND_FILTER = 
 424 else # CC_VERSION
 425 # not supported, but left for historical reference...
 426   CC_DEPEND        = -MM
 427   CC_DEPEND_FILTER = $(SED) -e 's!$*\.$(OBJECT_SUFFIX)!$(dir $@)&!g'
 428 endif # CC_VERSION
 429 
 430 LIBRARY_SUFFIX = dll
 431 LIB_SUFFIX     = lib
 432 
 433 # Settings for the JDI - Serviceability Agent binding.
 434 HOTSPOT_SALIB_PATH   = $(HOTSPOT_IMPORT_PATH)/jre/bin
 435 SALIB_NAME = $(LIB_PREFIX)sawindbg.$(LIBRARY_SUFFIX)
 436 SAMAP_NAME = $(LIB_PREFIX)sawindbg.map
 437 SAPDB_NAME = $(LIB_PREFIX)sawindbg.pdb
 438 
 439 ifeq ($(ARCH), ia64)
 440   # SA will never be supported here.
 441   INCLUDE_SA = false
 442 else
 443   INCLUDE_SA = true
 444 endif
 445 
 446 # Settings for the VERSIONINFO tap on windows. 
 447 VERSIONINFO_RESOURCE = $(BUILDDIR)/../src/windows/resource/version.rc
 448 
 449 ifneq ($(JDK_BUILD_NUMBER),)
 450  COOKED_BUILD_NUMBER = $(shell $(ECHO) $(JDK_BUILD_NUMBER) | $(SED) -e 's/^b//' -e 's/^0//')
 451 else
 452  COOKED_BUILD_NUMBER = 0
 453 endif
 454 
 455 # If the update version contains non-numeric characters, we need
 456 # to massage it into a numeric format. 
 457 # We use the following formula:
 458 # JDK_UPDATE_VER = JDK_UPDATE_VERSION * 10 + EXCEPTION_VERSION
 459 #
 460 # Here are some examples:
 461 #     1.5.0    b01  ->  5,0,0,1
 462 #     1.5.0_10 b01  ->  5,0,100,1
 463 #     1.4.2 b01     ->  4,2,0,1
 464 #     1.4.2_02 b01  ->  4,2,20,1
 465 #     1.4.2_02a b01 ->  4,2,21,1
 466 #     1.4.2_02b b01 ->  4,2,22,1
 467 ifdef JDK_UPDATE_VERSION
 468   VTMP := $(shell $(ECHO) $(JDK_UPDATE_VERSION) | $(TR) "abcde" "12345")
 469   CAB_CHAR1 := $(shell $(ECHO) $(VTMP) | $(NAWK) '{print substr($$1, 1, 1);}')
 470   CAB_CHAR2 := $(shell $(ECHO) $(VTMP) | $(NAWK) '{print substr($$1, 2, 1);}')
 471   CAB_CHAR3 := $(shell $(ECHO) $(VTMP) | $(NAWK) '{print substr($$1, 3, 1);}')
 472   JDK_UPDATE_META_TAG := U$(MARKETING_NUMBER)
 473   ifeq ($(CAB_CHAR3),)
 474     CAB_CHAR3 := 0
 475   endif
 476   ifeq ($(CAB_CHAR1), 0)
 477     JDK_UPDATE_VER := $(CAB_CHAR2)$(CAB_CHAR3)
 478   else
 479     JDK_UPDATE_VER := $(CAB_CHAR1)$(CAB_CHAR2)$(CAB_CHAR3)
 480   endif
 481 else
 482   JDK_UPDATE_VER := 0
 483 endif
 484 
 485 RC_FLAGS = /l 0x409 /r
 486 
 487 ifeq ($(VARIANT), OPT)
 488   RC_FLAGS += -d NDEBUG 
 489 else
 490   RC_FLAGS += $(MS_RC_DEBUG_OPTION)
 491 endif 
 492 
 493 # Values for the RC variables defined in RC_FLAGS
 494 JDK_RC_BUILD_ID = $(FULL_VERSION)
 495 JDK_RC_COMPANY = $(COMPANY_NAME)
 496 JDK_RC_COMPONENT = $(PRODUCT_NAME) $(JDK_RC_PLATFORM_NAME) binary
 497 JDK_RC_VER = \
 498     $(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VER).$(COOKED_BUILD_NUMBER)
 499 JDK_RC_COPYRIGHT = Copyright \xA9 $(COPYRIGHT_YEAR)
 500 JDK_RC_NAME = \
 501     $(PRODUCT_NAME) $(JDK_RC_PLATFORM_NAME) $(JDK_MINOR_VERSION) $(JDK_UPDATE_META_TAG)
 502 JDK_RC_FVER = \
 503     $(JDK_MINOR_VERSION),$(JDK_MICRO_VERSION),$(JDK_UPDATE_VER),$(COOKED_BUILD_NUMBER)
 504 
 505 # JDK name required here
 506 RC_FLAGS += -d "JDK_BUILD_ID=$(JDK_RC_BUILD_ID)" \
 507             -d "JDK_COMPANY=$(JDK_RC_COMPANY)" \
 508             -d "JDK_COMPONENT=$(JDK_RC_COMPONENT)" \
 509             -d "JDK_VER=$(JDK_RC_VER)" \
 510             -d "JDK_COPYRIGHT=$(JDK_RC_COPYRIGHT)" \
 511             -d "JDK_NAME=$(JDK_RC_NAME)" \
 512             -d "JDK_FVER=$(JDK_RC_FVER)"
 513 
 514 # Enable 7-Zip LZMA file (de)compression for Java Kernel if it is available
 515 ifeq ($(ARCH_DATA_MODEL), 32)
 516   ifneq ($(KERNEL), off)
 517     # This is a hack to use until  7-Zip (and UPX) bundles can be put
 518     # under /java/devtools.
 519     ifndef DEPLOY_TOPDIR
 520       DEPLOY_TOPDIR=$(JDK_TOPDIR)/../deploy
 521     endif
 522     # Uncomment this block to cause build failure if above assumption false
 523     #DCHK = $(shell if [ ! -d $(DEPLOY_TOPDIR) ] ; then \
 524     #  $(ECHO) deploy_not_a_peer_of_j2se ; \
 525     #fi )
 526     #ifeq ($(DCHK), deploy_not_a_peer_of_j2se)
 527     #  If a build failure points to control coming here it means
 528     #  it means deploy is not in the same directory
 529     #  as j2se. Java Kernel can't tolerate that for the time being.
 530     #endif
 531     EC_TMP = $(shell if [ -d $(DEPLOY_TOPDIR)/make/lzma ] ; then \
 532       $(ECHO) true ; \
 533     else \
 534       $(ECHO) false ; \
 535     fi )
 536     ifeq ($(EC_TMP), true)
 537       EXTRA_COMP_INSTALL_PATH = lib\\\\deploy\\\\lzma.dll
 538       # Crazy but true: deploy/make/plugin/jinstall/Makefile.jkernel does
 539       # not include deploy/make/common/Defs-windows.gmk, either directly
 540       # or indirectly. But it does include this file, so redundantly declare
 541       # these variables that are in deploy/make/common/Defs-windows.gmk for
 542       # the sake of the Java Kernel part of the deploy build. Whew!
 543       EXTRA_COMP_LIB_NAME = lzma.dll
 544       EXTRA_COMP_PATH = $(OUTPUTDIR)/tmp/deploy/lzma/win32/obj
 545       EXTRA_COMP_CMD_PATH = $(EXTRA_COMP_PATH)/lzma.exe
 546       EXTRA_COMP_LIB_PATH = $(EXTRA_COMP_PATH)/$(EXTRA_COMP_LIB_NAME)
 547     endif
 548   endif
 549 endif