< prev index next >

make/windows/makefiles/projectcreator.make

Print this page
rev 9742 : imported patch jvmci

@@ -68,10 +68,11 @@
         -ignorePath arm \
         -ignorePath ppc \
         -ignorePath zero \
         -ignorePath aix \
         -ignorePath aarch64 \
+        -ignorePath jdk.vm.ci \
         -hidePath .hg
 
 
 # This is referenced externally by both the IDE and batch builds
 ProjectCreatorOptions=

@@ -119,34 +120,34 @@
 
 # Add in build-specific options
 !if "$(BUILDARCH)" == "i486"
 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
         -platformName Win32 \
-        -define IA32 \
         -ignorePath x86_64 \
+        -ignorePath src\share\vm\jvmci \
+        -ignoreFile jvmciCodeInstaller_x86.cpp \
+        -define IA32 \
+        -define INCLUDE_JVMCI=0 \
         -define TARGET_ARCH_MODEL_x86_32
 !else
 !if "$(BUILDARCH)" == "amd64"
 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
         -platformName x64 \
+        -ignorePath x86_32 \
         -define AMD64 \
         -define _LP64 \
-        -ignorePath x86_32 \
+        -define INCLUDE_JVMCI=1 \
         -define TARGET_ARCH_MODEL_x86_64 \
         -define TARGET_OS_ARCH_MODEL_windows_x86_64
 !endif
 !endif
 
 ProjectCreatorIDEOptionsIgnoreCompiler1=\
  -ignorePath_TARGET compiler1 \
  -ignorePath_TARGET tiered \
  -ignorePath_TARGET c1_
 
-ProjectCreatorIDEOptionsIgnoreJVMCI=\
- -ignorePath_TARGET src/share/vm/jvmci \
- -ignorePath_TARGET vm/jvmci
-
 ProjectCreatorIDEOptionsIgnoreCompiler2=\
  -ignorePath_TARGET compiler2 \
  -ignorePath_TARGET tiered \
  -ignorePath_TARGET src/share/vm/opto \
  -ignorePath_TARGET src/share/vm/libadt \

@@ -163,12 +164,10 @@
 ##################################################
 # Client(C1) compiler specific options
 ##################################################
 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
  -define_compiler1 COMPILER1 \
- -define_compiler1 INCLUDE_JVMCI=0 \
-$(ProjectCreatorIDEOptionsIgnoreJVMCI:TARGET=compiler1) \
 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=compiler1)
 
 ##################################################
 # Server(C2) compiler specific options
 ##################################################
< prev index next >