annotate make/windows/makefiles/projectcreator.make @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents d8041d695d19
children dffc37fa7157
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 6842
diff changeset
2 # Copyright (c) 1999, 2013, 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.
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
22 #
0
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\ProjectCreator.java \
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
33 $(WorkSpace)\src\share\tools\ProjectCreator\FileTreeCreator.java \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
34 $(WorkSpace)\src\share\tools\ProjectCreator\FileTreeCreatorVC7.java \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
35 $(WorkSpace)\src\share\tools\ProjectCreator\FileTreeCreatorVC10.java \
1972
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\WinGammaPlatformVC7.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC8.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC9.java \
2393
74e790c48cd4 7031571: Generate native VS2010 project files
sla
parents: 2233
diff changeset
40 $(WorkSpace)\src\share\tools\ProjectCreator\WinGammaPlatformVC10.java \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
41 $(WorkSpace)\src\share\tools\ProjectCreator\Util.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
42 $(WorkSpace)\src\share\tools\ProjectCreator\BuildConfig.java \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
43 $(WorkSpace)\src\share\tools\ProjectCreator\ArgsParser.java
0
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 # This is only used internally
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
46 ProjectCreatorIncludesPRIVATE=\
12014
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
47 -relativeAltSrcInclude src\closed \
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
48 -altRelativeInclude share\vm \
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
49 -altRelativeInclude os\windows\vm \
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
50 -altRelativeInclude os_cpu\windows_$(Platform_arch)\vm \
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
51 -altRelativeInclude cpu\$(Platform_arch)\vm \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
52 -relativeInclude src\share\vm \
4084
c17bc65648de 7112308: Fix Visual Studio build for precompiled header
brutisso
parents: 2393
diff changeset
53 -relativeInclude src\share\vm\precompiled \
5978
51612f0c0a79 7148488: Whitebox tests for the Diagnostic Framework Parser
nloodin
parents: 4891
diff changeset
54 -relativeInclude src\share\vm\prims\wbtestmethods \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
55 -relativeInclude src\share\vm\prims \
a61af66fc99e Initial load
duke
parents:
diff changeset
56 -relativeInclude src\os\windows\vm \
a61af66fc99e Initial load
duke
parents:
diff changeset
57 -relativeInclude src\os_cpu\windows_$(Platform_arch)\vm \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
58 -relativeInclude src\cpu\$(Platform_arch)\vm \
9485
62838eadbf56 Windows build fix for PTX code
Andreas Woess <andreas.woess@jku.at>
parents: 8283
diff changeset
59 -relativeInclude src\gpu \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
60 -absoluteInclude $(HOTSPOTBUILDSPACE)/%f/generated \
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
61 -relativeSrcInclude src \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
62 -absoluteSrcInclude $(HOTSPOTBUILDSPACE) \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
63 -ignorePath $(HOTSPOTBUILDSPACE) \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
64 -ignorePath share\vm\adlc \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
65 -ignorePath share\vm\shark \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
66 -ignorePath share\tools \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
67 -ignorePath solaris \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
68 -ignorePath posix \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
69 -ignorePath sparc \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
70 -ignorePath linux \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
71 -ignorePath bsd \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
72 -ignorePath osx \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
73 -ignorePath arm \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
74 -ignorePath ppc \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
75 -ignorePath zero \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
76 -hidePath .hg
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
77
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 # 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
80 ProjectCreatorOptions=
0
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 # This is used externally, but only by the IDE builds, so we can
a61af66fc99e Initial load
duke
parents:
diff changeset
83 # reference environment variables which aren't defined in the batch
a61af66fc99e Initial load
duke
parents:
diff changeset
84 # build process.
a61af66fc99e Initial load
duke
parents:
diff changeset
85
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
86 ProjectCreatorIDEOptions = \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 -useToGeneratePch java.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
88 -disablePch os_windows.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
89 -disablePch os_windows_$(Platform_arch).cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
90 -disablePch osThread_windows.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
91 -disablePch bytecodeInterpreter.cpp \
a61af66fc99e Initial load
duke
parents:
diff changeset
92 -disablePch bytecodeInterpreterWithChecks.cpp \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
93 -disablePch getThread_windows_$(Platform_arch).cpp \
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
94 -disablePch_compiler2 opcodes.cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95
12099
c062a6e1fa33 8023406: make/windows/build_vm_def.sh takes too long even when BUILD_WIN_SA != 1
iklam
parents: 12014
diff changeset
96 !if "$(BUILD_WIN_SA)" != "1"
c062a6e1fa33 8023406: make/windows/build_vm_def.sh takes too long even when BUILD_WIN_SA != 1
iklam
parents: 12014
diff changeset
97 BUILD_VM_DEF_FLAG=-nosa
c062a6e1fa33 8023406: make/windows/build_vm_def.sh takes too long even when BUILD_WIN_SA != 1
iklam
parents: 12014
diff changeset
98 !endif
c062a6e1fa33 8023406: make/windows/build_vm_def.sh takes too long even when BUILD_WIN_SA != 1
iklam
parents: 12014
diff changeset
99
12014
31f3b1e1c5e5 8016601: Unable to build hsx24 on Windows using project creator and Visual Studio
dcubed
parents: 10405
diff changeset
100 # Common options for the IDE builds for c1, and c2
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
101 ProjectCreatorIDEOptions=\
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
102 $(ProjectCreatorIDEOptions) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103 -sourceBase $(HOTSPOTWORKSPACE) \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
104 -buildBase $(HOTSPOTBUILDSPACE)\%f\%b \
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
105 -buildSpace $(HOTSPOTBUILDSPACE) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106 -startAt src \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
107 -compiler $(VcVersion) \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
108 -projectFileName $(HOTSPOTBUILDSPACE)\$(ProjectFile) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109 -jdkTargetRoot $(HOTSPOTJDKDIST) \
a61af66fc99e Initial load
duke
parents:
diff changeset
110 -define ALIGN_STACK_FRAMES \
a61af66fc99e Initial load
duke
parents:
diff changeset
111 -define VM_LITTLE_ENDIAN \
12355
cefad50507d8 Merge with hs25-b53
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12039 12099
diff changeset
112 -prelink "" "Generating vm.def..." "cd %o set HOTSPOTMKSHOME=$(HOTSPOTMKSHOME) set JAVA_HOME=$(HOTSPOTJDKDIST) $(HOTSPOTMKSHOME)\sh $(HOTSPOTWORKSPACE)\make\windows\build_vm_def.sh $(BUILD_VM_DEF_FLAG) $(LD_VER)" \
10510
f40010b67b6e fix windows build directory
Andreas Woess <andreas.woess@jku.at>
parents: 10408
diff changeset
113 -postbuild "" "Building hotspot.exe..." "cd %o 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
114 -ignoreFile jsig.c \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
115 -ignoreFile jvmtiEnvRecommended.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
116 -ignoreFile jvmtiEnvStub.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
117 -ignoreFile globalDefinitions_gcc.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
118 -ignoreFile globalDefinitions_sparcWorks.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
119 -ignoreFile version.rc \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
120 -ignoreFile Xusage.txt \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
121 -define TARGET_ARCH_x86 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
122 -define TARGET_OS_ARCH_windows_x86 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
123 -define TARGET_OS_FAMILY_windows \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
124 -define TARGET_COMPILER_visCPP \
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
125 -define INCLUDE_TRACE=1 \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
126 $(ProjectCreatorIncludesPRIVATE)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 # Add in build-specific options
a61af66fc99e Initial load
duke
parents:
diff changeset
129 !if "$(BUILDARCH)" == "i486"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
130 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
131 -platformName Win32 \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
132 -define IA32 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
133 -ignorePath x86_64 \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
134 -define TARGET_ARCH_MODEL_x86_32
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
135 !else
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
136 !if "$(BUILDARCH)" == "amd64"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
137 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
138 -platformName x64 \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
139 -define AMD64 \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
140 -define _LP64 \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
141 -ignorePath x86_32 \
2233
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
142 -define TARGET_ARCH_MODEL_x86_64 \
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
143 -define TARGET_OS_ARCH_MODEL_windows_x86_64
15d6977f04b0 7017824: Add support for creating 64-bit Visual Studio projects
sla
parents: 2027
diff changeset
144 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
146
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
147 ProjectCreatorIDEOptionsIgnoreCompiler1=\
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
148 -ignorePath_TARGET compiler1 \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
149 -ignorePath_TARGET tiered \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
150 -ignorePath_TARGET c1_
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
151
7216
5a95c784febf fixed windows make files and VS2012-specific compilation issues
Christian Haeubl <haeubl@ssw.jku.at>
parents: 6948
diff changeset
152 ProjectCreatorIDEOptionsIgnoreGraal=\
8265
ded5288f5b96 fix windows build of the server and client vms
Andreas Woess <andreas.woess@jku.at>
parents: 8124
diff changeset
153 -ignorePath_TARGET src/share/vm/graal \
ded5288f5b96 fix windows build of the server and client vms
Andreas Woess <andreas.woess@jku.at>
parents: 8124
diff changeset
154 -ignorePath_TARGET graal/generated \
ded5288f5b96 fix windows build of the server and client vms
Andreas Woess <andreas.woess@jku.at>
parents: 8124
diff changeset
155 -ignorePath_TARGET vm/graal
ded5288f5b96 fix windows build of the server and client vms
Andreas Woess <andreas.woess@jku.at>
parents: 8124
diff changeset
156
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
157 ProjectCreatorIDEOptionsIgnoreCompiler2=\
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
158 -ignorePath_TARGET compiler2 \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
159 -ignorePath_TARGET tiered \
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
160 -ignorePath_TARGET src/share/vm/opto \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
161 -ignorePath_TARGET src/share/vm/libadt \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
162 -ignorePath_TARGET adfiles \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
163 -ignoreFile_TARGET bcEscapeAnalyzer.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
164 -ignoreFile_TARGET bcEscapeAnalyzer.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
165 -ignorePath_TARGET chaitin \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
166 -ignorePath_TARGET c2_ \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
167 -ignorePath_TARGET runtime_ \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
168 -ignoreFile_TARGET ciTypeFlow.cpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
169 -ignoreFile_TARGET ciTypeFlow.hpp \
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
170 -ignoreFile_TARGET $(Platform_arch_model).ad
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
171
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
172 ##################################################
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173 # Client(C1) compiler specific options
a61af66fc99e Initial load
duke
parents:
diff changeset
174 ##################################################
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
175 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
176 -define_compiler1 COMPILER1 \
8283
09290d9deab3 windows build fix: server+graal build needs TIERED; include graal in client build
Andreas Woess <andreas.woess@jku.at>
parents: 8265
diff changeset
177 -define_compiler1 GRAAL \
09290d9deab3 windows build fix: server+graal build needs TIERED; include graal in client build
Andreas Woess <andreas.woess@jku.at>
parents: 8265
diff changeset
178 -ignorePath_compiler1 graal/generated \
7216
5a95c784febf fixed windows make files and VS2012-specific compilation issues
Christian Haeubl <haeubl@ssw.jku.at>
parents: 6948
diff changeset
179 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=compiler1)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 ##################################################
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4443
diff changeset
182 # Graal compiler specific options
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4443
diff changeset
183 ##################################################
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4443
diff changeset
184 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
14119
c1b0b02a6528 windows: enable C1+Graal tiered
Andreas Woess <andreas.woess@jku.at>
parents: 13819
diff changeset
185 -define_graal COMPILER1 \
14124
7ad529321294 make: remove GRAALVM and introduce COMPILERGRAAL. fix client hosted-mode
Bernhard Urban <bernhard.urban@jku.at>
parents: 14120
diff changeset
186 -define_graal COMPILERGRAAL \
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4443
diff changeset
187 -define_graal GRAAL \
7216
5a95c784febf fixed windows make files and VS2012-specific compilation issues
Christian Haeubl <haeubl@ssw.jku.at>
parents: 6948
diff changeset
188 $(ProjectCreatorIDEOptionsIgnoreCompiler2:TARGET=graal)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ##################################################
a61af66fc99e Initial load
duke
parents:
diff changeset
191 # Server(C2) compiler specific options
a61af66fc99e Initial load
duke
parents:
diff changeset
192 ##################################################
a61af66fc99e Initial load
duke
parents:
diff changeset
193 #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
194 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
14120
158dcef18506 windows: enable C1+C2 tiered
Andreas Woess <andreas.woess@jku.at>
parents: 14119
diff changeset
195 -define_compiler2 COMPILER1 \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 -define_compiler2 COMPILER2 \
8265
ded5288f5b96 fix windows build of the server and client vms
Andreas Woess <andreas.woess@jku.at>
parents: 8124
diff changeset
197 -define_compiler2 GRAAL \
ded5288f5b96 fix windows build of the server and client vms
Andreas Woess <andreas.woess@jku.at>
parents: 8124
diff changeset
198 -ignorePath_compiler2 graal/generated \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
199 -additionalFile_compiler2 $(Platform_arch_model).ad \
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
200 -additionalFile_compiler2 ad_$(Platform_arch_model).cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
201 -additionalFile_compiler2 ad_$(Platform_arch_model).hpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
202 -additionalFile_compiler2 ad_$(Platform_arch_model)_clone.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
203 -additionalFile_compiler2 ad_$(Platform_arch_model)_expand.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
204 -additionalFile_compiler2 ad_$(Platform_arch_model)_format.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
205 -additionalFile_compiler2 ad_$(Platform_arch_model)_gen.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
206 -additionalFile_compiler2 ad_$(Platform_arch_model)_misc.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
207 -additionalFile_compiler2 ad_$(Platform_arch_model)_peephole.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
208 -additionalFile_compiler2 ad_$(Platform_arch_model)_pipeline.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
209 -additionalFile_compiler2 adGlobals_$(Platform_arch_model).hpp \
14120
158dcef18506 windows: enable C1+C2 tiered
Andreas Woess <andreas.woess@jku.at>
parents: 14119
diff changeset
210 -additionalFile_compiler2 dfa_$(Platform_arch_model).cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 # Add in the jvmti (JSR-163) options
a61af66fc99e Initial load
duke
parents:
diff changeset
213 # NOTE: do not pull in jvmtiEnvRecommended.cpp. This file is generated
a61af66fc99e Initial load
duke
parents:
diff changeset
214 # so the programmer can diff it with jvmtiEnv.cpp to be sure the
a61af66fc99e Initial load
duke
parents:
diff changeset
215 # code merge was done correctly (@see jvmti.make and jvmtiEnvFill.java).
a61af66fc99e Initial load
duke
parents:
diff changeset
216 # 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
217 ProjectCreatorIDEOptions=$(ProjectCreatorIDEOptions) \
6801
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
218 -additionalFile jvmtiEnv.hpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
219 -additionalFile jvmtiEnter.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
220 -additionalFile jvmtiEnterTrace.cpp \
1a9b9cfcef41 7163863: Updated projectcreator
neliasso
parents: 5978
diff changeset
221 -additionalFile jvmti.h \
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
222 -additionalFile bytecodeInterpreterWithChecks.cpp \
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
223 -additionalFile traceEventClasses.hpp \
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
224 -additionalFile traceEventIds.hpp \
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
225 !if "$(OPENJDK)" != "true"
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
226 -additionalFile traceRequestables.hpp \
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
227 -additionalFile traceEventControl.hpp \
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
228 -additionalFile traceProducer.cpp \
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
229 !endif
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10277
diff changeset
230 -additionalFile traceTypes.hpp