< prev index next >

make/ide/visualstudio/hotspot/CreateVSProject.gmk

Print this page




  76       -ignorePath_client opto \
  77       #
  78 
  79   IGNORED_PLATFORMS_ARGS := \
  80     -ignorePath aarch64 \
  81     -ignorePath aix \
  82     -ignorePath arm \
  83     -ignorePath bsd \
  84     -ignorePath linux \
  85     -ignorePath posix \
  86     -ignorePath ppc \
  87     -ignorePath solaris \
  88     -ignorePath sparc \
  89     -ignorePath x86_32 \
  90     -ignorePath zero \
  91       #
  92 
  93   ################################################################################
  94   # Build the ProjectCreator java tool.
  95 
  96   TOOLS_OUTPUTDIR := $(HOTSPOT_OUTPUTDIR)/support/tools_classes
  97 
  98   $(eval $(call SetupJavaCompilation, BUILD_PROJECT_CREATOR, \
  99       TARGET_RELEASE := $(TARGET_RELEASE_BOOTJDK), \
 100       DISABLED_WARNINGS := auxiliaryclass deprecation rawtypes unchecked cast options, \
 101       SRC := $(TOPDIR)/make/hotspot/src/classes, \
 102       BIN := $(TOOLS_OUTPUTDIR), \
 103       JAVAC_FLAGS := -XDstringConcat=inline, \
 104   ))
 105 
 106   TARGETS += $(BUILD_PROJECT_CREATOR)
 107 
 108   # Run the ProjectCreator tool
 109   PROJECT_CREATOR_TOOL := $(JAVA_SMALL) -cp $(TOOLS_OUTPUTDIR) build.tools.projectcreator.ProjectCreator
 110 
 111   IDE_OUTPUTDIR := $(OUTPUTDIR)/ide/hotspot-visualstudio
 112 
 113   VCPROJ_FILE := $(IDE_OUTPUTDIR)/jvm.vcxproj
 114 
 115   PROJECT_CREATOR_CLASS := build.tools.projectcreator.WinGammaPlatformVC10
 116 
 117   # We hard-code gensrc dir to server (since this includes adfiles)
 118   PROJECT_CREATOR_ARGS := \
 119       -sourceBase $(call FixPath, $(TOPDIR)/src) \
 120       -startAt hotspot \
 121       -relativeSrcInclude hotspot \




  76       -ignorePath_client opto \
  77       #
  78 
  79   IGNORED_PLATFORMS_ARGS := \
  80     -ignorePath aarch64 \
  81     -ignorePath aix \
  82     -ignorePath arm \
  83     -ignorePath bsd \
  84     -ignorePath linux \
  85     -ignorePath posix \
  86     -ignorePath ppc \
  87     -ignorePath solaris \
  88     -ignorePath sparc \
  89     -ignorePath x86_32 \
  90     -ignorePath zero \
  91       #
  92 
  93   ################################################################################
  94   # Build the ProjectCreator java tool.
  95 
  96   TOOLS_OUTPUTDIR := $(HOTSPOT_OUTPUTDIR)/support/ide_classes
  97 
  98   $(eval $(call SetupJavaCompilation, BUILD_PROJECT_CREATOR, \
  99       TARGET_RELEASE := $(TARGET_RELEASE_BOOTJDK), \
 100       DISABLED_WARNINGS := auxiliaryclass deprecation rawtypes unchecked cast options, \
 101       SRC := $(TOPDIR)/make/ide/visualstudio/hotspot/src/classes, \
 102       BIN := $(TOOLS_OUTPUTDIR), \
 103       JAVAC_FLAGS := -XDstringConcat=inline, \
 104   ))
 105 
 106   TARGETS += $(BUILD_PROJECT_CREATOR)
 107 
 108   # Run the ProjectCreator tool
 109   PROJECT_CREATOR_TOOL := $(JAVA_SMALL) -cp $(TOOLS_OUTPUTDIR) build.tools.projectcreator.ProjectCreator
 110 
 111   IDE_OUTPUTDIR := $(OUTPUTDIR)/ide/hotspot-visualstudio
 112 
 113   VCPROJ_FILE := $(IDE_OUTPUTDIR)/jvm.vcxproj
 114 
 115   PROJECT_CREATOR_CLASS := build.tools.projectcreator.WinGammaPlatformVC10
 116 
 117   # We hard-code gensrc dir to server (since this includes adfiles)
 118   PROJECT_CREATOR_ARGS := \
 119       -sourceBase $(call FixPath, $(TOPDIR)/src) \
 120       -startAt hotspot \
 121       -relativeSrcInclude hotspot \


< prev index next >