make/windows/makefiles/vm.make

Print this page




  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 # Resource file containing VERSIONINFO
  26 Res_Files=.\version.res
  27 
  28 !include ..\generated\objfiles.make
  29 
  30 COMMONSRC=$(WorkSpace)\src
  31 ALTSRC=$(WorkSpace)\src\closed
  32 
  33 !ifdef RELEASE
  34 CXX_FLAGS=$(CXX_FLAGS) /D "PRODUCT"
  35 !else
  36 CXX_FLAGS=$(CXX_FLAGS) /D "ASSERT"
  37 !endif
  38 
  39 !if "$(Variant)" == "core"
  40 # No need to define anything, CORE is defined as !COMPILER1 && !COMPILER2
  41 !endif
  42 
  43 !if "$(Variant)" == "compiler1"
  44 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER1"
  45 !endif
  46 
  47 !if "$(Variant)" == "compiler2"
  48 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER2"
  49 !endif
  50 
  51 !if "$(Variant)" == "tiered"
  52 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER1" /D "COMPILER2"
  53 !endif
  54 
  55 !if "$(BUILDARCH)" == "i486"
  56 HOTSPOT_LIB_ARCH=i386
  57 !else
  58 HOTSPOT_LIB_ARCH=$(BUILDARCH)
  59 !endif
  60 
  61 # The following variables are defined in the generated local.make file.
  62 CXX_FLAGS=$(CXX_FLAGS) /D "HOTSPOT_RELEASE_VERSION=\"$(HS_BUILD_VER)\""




  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 # Resource file containing VERSIONINFO
  26 Res_Files=.\version.res
  27 
  28 !include ..\generated\objfiles.make
  29 
  30 COMMONSRC=$(WorkSpace)\src
  31 ALTSRC=$(WorkSpace)\src\closed
  32 
  33 !ifdef RELEASE
  34 CXX_FLAGS=$(CXX_FLAGS) /D "PRODUCT"
  35 !else
  36 CXX_FLAGS=$(CXX_FLAGS) /D "ASSERT"
  37 !endif
  38 




  39 !if "$(Variant)" == "compiler1"
  40 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER1"
  41 !endif
  42 
  43 !if "$(Variant)" == "compiler2"
  44 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER2"
  45 !endif
  46 
  47 !if "$(Variant)" == "tiered"
  48 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER1" /D "COMPILER2"
  49 !endif
  50 
  51 !if "$(BUILDARCH)" == "i486"
  52 HOTSPOT_LIB_ARCH=i386
  53 !else
  54 HOTSPOT_LIB_ARCH=$(BUILDARCH)
  55 !endif
  56 
  57 # The following variables are defined in the generated local.make file.
  58 CXX_FLAGS=$(CXX_FLAGS) /D "HOTSPOT_RELEASE_VERSION=\"$(HS_BUILD_VER)\""