annotate make/windows/makefiles/projectcreator.make @ 2393:74e790c48cd4

7031571: Generate native VS2010 project files Reviewed-by: hosterda, stefank, brutisso
author sla
date Mon, 28 Mar 2011 12:48:08 +0200
parents 15d6977f04b0
children 0654ee04b214 c17bc65648de
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
2 # Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 844
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
25 !include $(WorkSpace)/make/windows/makefiles/rules.make
0
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 # This is used externally by both batch and IDE builds, so can't
a61af66fc99e Initial load
duke
parents:
diff changeset
28 # reference any of the HOTSPOTWORKSPACE, HOTSPOTBUILDSPACE,
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # HOTSPOTRELEASEBINDEST, or HOTSPOTDEBUGBINDEST environment variables.
a61af66fc99e Initial load
duke
parents:
diff changeset
30
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 ProjectCreatorSources=\
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 $(WorkSpace)\src\share\tools\ProjectCreator\DirectoryTree.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 $(WorkSpace)\src\share\tools\ProjectCreator\DirectoryTreeNode.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 $(WorkSpace)\src\share\tools\ProjectCreator\FileFormatException.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 $(WorkSpace)\src\share\tools\ProjectCreator\ProjectCreator.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatform.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC6.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC7.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC8.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC9.java \
2393
74e790c48cd4 7031571: Generate native VS2010 project files
sla
parents: 2233
diff changeset
41 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC10.java \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
42 $(WorkSpace)\src\share\tools\ProjectCreator\Util.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
43 $(WorkSpace)\src\share\tools\ProjectCreator\BuildConfig.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
44 $(WorkSpace)\src\share\tools\ProjectCreator\ArgsParser.java
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 # This is only used internally
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
47 ProjectCreatorIncludesPRIVATE=\
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
48 -relativeInclude src\closed\share\vm \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
49 -relativeInclude src\closed\os\windows\vm \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
50 -relativeInclude src\closed\os_cpu\windows_$(Platform_arch)\vm \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
51 -relativeInclude src\closed\cpu\$(Platform_arch)\vm \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
52 -relativeInclude src\share\vm \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53 -relativeInclude src\share\vm\prims \
a61af66fc99e Initial load
duke
parents:
diff changeset
54 -relativeInclude src\os\windows\vm \
a61af66fc99e Initial load
duke
parents:
diff changeset
55 -relativeInclude src\os_cpu\windows_$(Platform_arch)\vm \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
56 -relativeInclude src\cpu\$(Platform_arch)\vm \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
57 -absoluteInclude $(HOTSPOTBUILDSPACE)/%f/generated \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
58 -ignorePath $(HOTSPOTBUILDSPACE)/%f/generated \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
59 -ignorePath src\share\vm\adlc \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
60 -ignorePath src\share\vm\shark
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 # This is referenced externally by both the IDE and batch builds
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
63 ProjectCreatorOptions=
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 # This is used externally, but only by the IDE builds, so we can
a61af66fc99e Initial load
duke
parents:
diff changeset
66 # reference environment variables which aren't defined in the batch
a61af66fc99e Initial load
duke
parents:
diff changeset
67 # build process.
a61af66fc99e Initial load
duke
parents:
diff changeset
68
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
69 ProjectCreatorIDEOptions = \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
70 -useToGeneratePch java.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
71 -disablePch os_windows.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
72 -disablePch os_windows_$(Platform_arch).cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
73 -disablePch osThread_windows.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
74 -disablePch bytecodeInterpreter.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
75 -disablePch bytecodeInterpreterWithChecks.cpp \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
76 -disablePch getThread_windows_$(Platform_arch).cpp \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 -disablePch_compiler2 opcodes.cpp
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 # Common options for the IDE builds for core, c1, and c2
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
80 ProjectCreatorIDEOptions=\
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
81 $(ProjectCreatorIDEOptions) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82 -sourceBase $(HOTSPOTWORKSPACE) \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
83 -buildBase $(HOTSPOTBUILDSPACE)\%f\%b \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 -startAt src \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
85 -compiler $(VcVersion) \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
86 -projectFileName $(HOTSPOTBUILDSPACE)\$(ProjectFile) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 -jdkTargetRoot $(HOTSPOTJDKDIST) \
a61af66fc99e Initial load
duke
parents:
diff changeset
88 -define ALIGN_STACK_FRAMES \
a61af66fc99e Initial load
duke
parents:
diff changeset
89 -define VM_LITTLE_ENDIAN \
659
520d43965b1f 6812297: update project creation for Visual Studio 2005-2008
ikrylov
parents: 356
diff changeset
90 -prelink "" "Generating vm.def..." "cd $(HOTSPOTBUILDSPACE)\%f\%b set HOTSPOTMKSHOME=$(HOTSPOTMKSHOME) $(HOTSPOTMKSHOME)\sh $(HOTSPOTWORKSPACE)\make\windows\build_vm_def.sh $(LINK_VER)" \
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1972
diff changeset
91 -postbuild "" "Building hotspot.exe..." "cd $(HOTSPOTBUILDSPACE)\%f\%b set HOTSPOTMKSHOME=$(HOTSPOTMKSHOME) nmake -f $(HOTSPOTWORKSPACE)\make\windows\projectfiles\common\Makefile LOCAL_MAKE=$(HOTSPOTBUILDSPACE)\%f\local.make JAVA_HOME=$(HOTSPOTJDKDIST) launcher" \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
92 -ignoreFile jsig.c \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
93 -ignoreFile jvmtiEnvRecommended.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
94 -ignoreFile jvmtiEnvStub.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
95 -ignoreFile globalDefinitions_gcc.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
96 -ignoreFile globalDefinitions_sparcWorks.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
97 -ignoreFile version.rc \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
98 -ignoreFile Xusage.txt \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
99 -define TARGET_ARCH_x86 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
100 -define TARGET_OS_ARCH_windows_x86 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
101 -define TARGET_OS_FAMILY_windows \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
102 -define TARGET_COMPILER_visCPP \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
103 $(ProjectCreatorIncludesPRIVATE)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 # Add in build-specific options
a61af66fc99e Initial load
duke
parents:
diff changeset
106 !if "$(BUILDARCH)" == "i486"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
107 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
108 -platformName Win32 \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
109 -define IA32 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
110 -ignorePath x86_64 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
111 -define TARGET_ARCH_MODEL_x86_32
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
112 !else
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
113 !if "$(BUILDARCH)" == "amd64"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
114 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
115 -platformName x64 \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
116 -define AMD64 \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
117 -define _LP64 \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
118 -ignorePath x86_32 \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
119 -define TARGET_ARCH_MODEL_x86_64 \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
120 -define TARGET_OS_ARCH_MODEL_windows_x86_64
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
121 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
122 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
123
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
124 ProjectCreatorIDEOptionsIgnoreCompiler1=\
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
125 -ignorePath_TARGET c1_
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
126
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
127 ProjectCreatorIDEOptionsIgnoreCompiler2=\
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
128 -ignorePath_TARGET src/share/vm/opto \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
129 -ignorePath_TARGET src/share/vm/libadt \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
130 -ignorePath_TARGET adfiles \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
131 -ignoreFile_TARGET bcEscapeAnalyzer.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
132 -ignoreFile_TARGET bcEscapeAnalyzer.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
133 -ignorePath_TARGET chaitin \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
134 -ignorePath_TARGET c2_ \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
135 -ignorePath_TARGET runtime_ \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
136 -ignoreFile_TARGET ciTypeFlow.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
137 -ignoreFile_TARGET ciTypeFlow.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
138 -ignoreFile_TARGET $(Platform_arch_model).ad
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
139
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
140 ##################################################
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
141 # Without compiler(core) specific options
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
142 ##################################################
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
143 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
144 $(ProjectCreatorIDEOptionsIgnoreCompiler1:TARGET=core) \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
145 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=core)
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
146
0
a61af66fc99e Initial load
duke
parents:
diff changeset
147 ##################################################
a61af66fc99e Initial load
duke
parents:
diff changeset
148 # JKERNEL specific options
a61af66fc99e Initial load
duke
parents:
diff changeset
149 ##################################################
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
150 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
151 -define_kernel KERNEL \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
152 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=kernel) \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
153 -ignorePath_kernel src/share/vm/gc_implementation/parallelScavenge \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
154 -ignorePath_kernel src/share/vm/gc_implementation/parNew \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
155 -ignorePath_kernel src/share/vm/gc_implementation/concurrentMarkSweep \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
156 -ignorePath_kernel src/share/vm/gc_implementation/g1 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
157 -ignoreFile_kernel attachListener.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
158 -ignoreFile_kernel attachListener_windows.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
159 -ignoreFile_kernel dump.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
160 -ignoreFile_kernel dump_$(Platform_arch_model).cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
161 -ignoreFile_kernel forte.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
162 -ignoreFile_kernel fprofiler.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
163 -ignoreFile_kernel heapDumper.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
164 -ignoreFile_kernel heapInspection.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
165 -ignoreFile_kernel jniCheck.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
166 -ignoreFile_kernel jvmtiCodeBlobEvents.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
167 -ignoreFile_kernel jvmtiExtensions.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
168 -ignoreFile_kernel jvmtiImpl.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
169 -ignoreFile_kernel jvmtiRawMonitor.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
170 -ignoreFile_kernel jvmtiTagMap.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
171 -ignoreFile_kernel jvmtiTrace.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
172 -ignoreFile_kernel jvmtiTrace.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
173 -ignoreFile_kernel restore.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
174 -ignoreFile_kernel serialize.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
175 -ignoreFile_kernel vmStructs.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
176 -ignoreFile_kernel g1MemoryPool.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
177 -ignoreFile_kernel g1MemoryPool.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
178 -ignoreFile_kernel psMemoryPool.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
179 -ignoreFile_kernel psMemoryPool.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
180 -ignoreFile_kernel gcAdaptivePolicyCounters.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
181 -ignoreFile_kernel concurrentGCThread.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
182 -ignoreFile_kernel mutableNUMASpace.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
183 -ignoreFile_kernel ciTypeFlow.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
184 -ignoreFile_kernel ciTypeFlow.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
185 -ignoreFile_kernel oop.pcgc.inline.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
186 -ignoreFile_kernel oop.psgc.inline.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
187 -ignoreFile_kernel allocationStats.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
188 -ignoreFile_kernel allocationStats.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
189 -ignoreFile_kernel concurrentGCThread.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
190 -ignoreFile_kernel gSpaceCounters.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
191 -ignoreFile_kernel gSpaceCounters.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
192 -ignoreFile_kernel gcAdaptivePolicyCounters.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
193 -ignoreFile_kernel immutableSpace.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
194 -ignoreFile_kernel mutableNUMASpace.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
195 -ignoreFile_kernel mutableSpace.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
196 -ignoreFile_kernel spaceCounters.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
197 -ignoreFile_kernel spaceCounters.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
198 -ignoreFile_kernel yieldingWorkgroup.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
199 -ignoreFile_kernel yieldingWorkgroup.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
200 -ignorePath_kernel vmStructs_ \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
201 -ignoreFile_kernel $(Platform_arch_model).ad \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
202 -additionalFile_kernel gcTaskManager.hpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 ##################################################
a61af66fc99e Initial load
duke
parents:
diff changeset
205 # Client(C1) compiler specific options
a61af66fc99e Initial load
duke
parents:
diff changeset
206 ##################################################
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
207 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
208 -define_compiler1 COMPILER1 \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
209 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=compiler1)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 ##################################################
a61af66fc99e Initial load
duke
parents:
diff changeset
212 # Server(C2) compiler specific options
a61af66fc99e Initial load
duke
parents:
diff changeset
213 ##################################################
a61af66fc99e Initial load
duke
parents:
diff changeset
214 #NOTE! This list must be kept in sync with GENERATED_NAMES in adlc.make.
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
215 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 -define_compiler2 COMPILER2 \
a61af66fc99e Initial load
duke
parents:
diff changeset
217 -additionalFile_compiler2 $(Platform_arch_model).ad \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
218 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model).cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
219 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model).hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
220 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_clone.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
221 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_expand.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
222 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_format.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
223 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_gen.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
224 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_misc.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
225 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_peephole.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
226 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles ad_$(Platform_arch_model)_pipeline.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
227 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles adGlobals_$(Platform_arch_model).hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
228 -additionalGeneratedFile_compiler2 $(HOTSPOTBUILDSPACE)/%f/generated/adfiles dfa_$(Platform_arch_model).cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
229 $(ProjectCreatorIDEOptionsIgnoreCompiler1:TARGET=compiler2)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 # Add in the jvmti (JSR-163) options
a61af66fc99e Initial load
duke
parents:
diff changeset
232 # NOTE: do not pull in jvmtiEnvRecommended.cpp. This file is generated
a61af66fc99e Initial load
duke
parents:
diff changeset
233 # so the programmer can diff it with jvmtiEnv.cpp to be sure the
a61af66fc99e Initial load
duke
parents:
diff changeset
234 # code merge was done correctly (@see jvmti.make and jvmtiEnvFill.java).
a61af66fc99e Initial load
duke
parents:
diff changeset
235 # If so, they would then check it in as a new version of jvmtiEnv.cpp.
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
236 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
237 -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmtiEnv.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
238 -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmtiEnter.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
239 -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmtiEnterTrace.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
240 -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles jvmti.h \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
241 -additionalGeneratedFile $(HOTSPOTBUILDSPACE)/%f/generated/jvmtifiles bytecodeInterpreterWithChecks.cpp