annotate make/windows/makefiles/vm.make @ 4572:76841bdd5f3e

(Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
author Andreas Woess <andreas.woess@jku.at>
date Sat, 11 Feb 2012 23:35:44 +0100
parents c843578c269d
children 33df1aeaebbf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
2426
1d1603768966 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 2199
diff changeset
2 # Copyright (c) 1997, 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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # Resource file containing VERSIONINFO
a61af66fc99e Initial load
duke
parents:
diff changeset
26 Res_Files=.\version.res
a61af66fc99e Initial load
duke
parents:
diff changeset
27
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 !include ..\generated\objfiles.make
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
30 COMMONSRC=$(WorkSpace)\src
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
31 ALTSRC=$(WorkSpace)\src\closed
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 !ifdef RELEASE
a61af66fc99e Initial load
duke
parents:
diff changeset
34 !ifdef DEVELOP
a61af66fc99e Initial load
duke
parents:
diff changeset
35 CPP_FLAGS=$(CPP_FLAGS) /D "DEBUG"
a61af66fc99e Initial load
duke
parents:
diff changeset
36 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
37 CPP_FLAGS=$(CPP_FLAGS) /D "PRODUCT"
a61af66fc99e Initial load
duke
parents:
diff changeset
38 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
39 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
40 CPP_FLAGS=$(CPP_FLAGS) /D "ASSERT"
a61af66fc99e Initial load
duke
parents:
diff changeset
41 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 !if "$(Variant)" == "core"
a61af66fc99e Initial load
duke
parents:
diff changeset
44 # No need to define anything, CORE is defined as !COMPILER1 && !COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
45 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 !if "$(Variant)" == "kernel"
a61af66fc99e Initial load
duke
parents:
diff changeset
48 CPP_FLAGS=$(CPP_FLAGS) /D "KERNEL"
a61af66fc99e Initial load
duke
parents:
diff changeset
49 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 !if "$(Variant)" == "compiler1"
a61af66fc99e Initial load
duke
parents:
diff changeset
52 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1"
a61af66fc99e Initial load
duke
parents:
diff changeset
53 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 !if "$(Variant)" == "compiler2"
a61af66fc99e Initial load
duke
parents:
diff changeset
56 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER2"
a61af66fc99e Initial load
duke
parents:
diff changeset
57 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 !if "$(Variant)" == "tiered"
a61af66fc99e Initial load
duke
parents:
diff changeset
60 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "COMPILER2"
a61af66fc99e Initial load
duke
parents:
diff changeset
61 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
62
4572
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4177
diff changeset
63 !if "$(Variant)" == "graal"
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4177
diff changeset
64 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "GRAAL"
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4177
diff changeset
65 !endif
76841bdd5f3e (Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
Andreas Woess <andreas.woess@jku.at>
parents: 4177
diff changeset
66
720
67a2f5ba5582 6684007: PrintAssembly plugin not available for linux or windows
never
parents: 356
diff changeset
67 !if "$(BUILDARCH)" == "i486"
67a2f5ba5582 6684007: PrintAssembly plugin not available for linux or windows
never
parents: 356
diff changeset
68 HOTSPOT_LIB_ARCH=i386
67a2f5ba5582 6684007: PrintAssembly plugin not available for linux or windows
never
parents: 356
diff changeset
69 !else
67a2f5ba5582 6684007: PrintAssembly plugin not available for linux or windows
never
parents: 356
diff changeset
70 HOTSPOT_LIB_ARCH=$(BUILDARCH)
67a2f5ba5582 6684007: PrintAssembly plugin not available for linux or windows
never
parents: 356
diff changeset
71 !endif
67a2f5ba5582 6684007: PrintAssembly plugin not available for linux or windows
never
parents: 356
diff changeset
72
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 # The following variables are defined in the generated local.make file.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_RELEASE_VERSION=\"$(HS_BUILD_VER)\""
a61af66fc99e Initial load
duke
parents:
diff changeset
75 CPP_FLAGS=$(CPP_FLAGS) /D "JRE_RELEASE_VERSION=\"$(JRE_RELEASE_VER)\""
720
67a2f5ba5582 6684007: PrintAssembly plugin not available for linux or windows
never
parents: 356
diff changeset
76 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_LIB_ARCH=\"$(HOTSPOT_LIB_ARCH)\""
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_TARGET=\"$(BUILD_FLAVOR)\""
a61af66fc99e Initial load
duke
parents:
diff changeset
78 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_USER=\"$(BuildUser)\""
a61af66fc99e Initial load
duke
parents:
diff changeset
79 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_VM_DISTRO=\"$(HOTSPOT_VM_DISTRO)\""
a61af66fc99e Initial load
duke
parents:
diff changeset
80
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1983
diff changeset
81 CPP_FLAGS=$(CPP_FLAGS) $(CPP_INCLUDE_DIRS)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 # Define that so jni.h is on correct side
a61af66fc99e Initial load
duke
parents:
diff changeset
84 CPP_FLAGS=$(CPP_FLAGS) /D "_JNI_IMPLEMENTATION_"
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 !if "$(BUILDARCH)" == "ia64"
a61af66fc99e Initial load
duke
parents:
diff changeset
87 STACK_SIZE="/STACK:1048576,262144"
a61af66fc99e Initial load
duke
parents:
diff changeset
88 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
89 STACK_SIZE=
a61af66fc99e Initial load
duke
parents:
diff changeset
90 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 !if "$(BUILDARCH)" == "ia64"
a61af66fc99e Initial load
duke
parents:
diff changeset
93 # AsyncGetCallTrace is not supported on IA64 yet
a61af66fc99e Initial load
duke
parents:
diff changeset
94 AGCT_EXPORT=
a61af66fc99e Initial load
duke
parents:
diff changeset
95 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
96 !if "$(Variant)" == "kernel"
a61af66fc99e Initial load
duke
parents:
diff changeset
97 AGCT_EXPORT=
a61af66fc99e Initial load
duke
parents:
diff changeset
98 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
99 AGCT_EXPORT=/export:AsyncGetCallTrace
a61af66fc99e Initial load
duke
parents:
diff changeset
100 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
101 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
102
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1983
diff changeset
103 # If you modify exports below please do the corresponding changes in
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1983
diff changeset
104 # src/share/tools/ProjectCreator/WinGammaPlatformVC7.java
226
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
105 LINK_FLAGS=$(LINK_FLAGS) $(STACK_SIZE) /subsystem:windows /dll /base:0x8000000 \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
106 /export:JNI_GetDefaultJavaVMInitArgs \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
107 /export:JNI_CreateJavaVM \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
108 /export:JVM_FindClassFromBootLoader \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
109 /export:JNI_GetCreatedJavaVMs \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
110 /export:jio_snprintf \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
111 /export:jio_printf \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
112 /export:jio_fprintf \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
113 /export:jio_vfprintf \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
114 /export:jio_vsnprintf \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
115 $(AGCT_EXPORT) \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
116 /export:JVM_GetVersionInfo \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
117 /export:JVM_GetThreadStateNames \
d5ba4f8aa38a 6714758: hotspot: provide an entry point to the BootStrap Class loader[dholmes,acorn]
ksrini
parents: 110
diff changeset
118 /export:JVM_GetThreadStateValues \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
119 /export:JVM_InitAgentProperties
a61af66fc99e Initial load
duke
parents:
diff changeset
120
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
121 CPP_INCLUDE_DIRS=/I "..\generated"
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
122
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
123 !if exists($(ALTSRC)\share\vm)
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
124 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\share\vm"
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
125 !endif
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
126
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
127 !if exists($(ALTSRC)\os\windows\vm)
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
128 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\os\windows\vm"
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
129 !endif
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
130
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
131 !if exists($(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm)
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
132 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm"
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
133 !endif
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
134
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
135 !if exists($(ALTSRC)\cpu\$(Platform_arch)\vm)
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
136 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\cpu\$(Platform_arch)\vm"
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
137 !endif
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
138
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
139 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) \
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
140 /I "$(COMMONSRC)\share\vm" \
4033
95009f678859 7106766: Move the precompiled header from the src/share/vm directory
brutisso
parents: 2426
diff changeset
141 /I "$(COMMONSRC)\share\vm\precompiled" \
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
142 /I "$(COMMONSRC)\share\vm\prims" \
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
143 /I "$(COMMONSRC)\os\windows\vm" \
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
144 /I "$(COMMONSRC)\os_cpu\windows_$(Platform_arch)\vm" \
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
145 /I "$(COMMONSRC)\cpu\$(Platform_arch)\vm"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
146
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
147 CPP_DONT_USE_PCH=/D DONT_USE_PRECOMPILED_HEADER
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
148
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
149 !if "$(USE_PRECOMPILED_HEADER)" != "0"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
150 CPP_USE_PCH=/Fp"vm.pch" /Yu"precompiled.hpp"
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
151 !else
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
152 CPP_USE_PCH=$(CPP_DONT_USE_PCH)
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
153 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
154
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
155 # Where to find the source code for the virtual machine (is this used?)
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
156 VM_PATH=../generated
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
157 VM_PATH=$(VM_PATH);../generated/adfiles
0
a61af66fc99e Initial load
duke
parents:
diff changeset
158 VM_PATH=$(VM_PATH);../generated/jvmtifiles
a61af66fc99e Initial load
duke
parents:
diff changeset
159 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/c1
4177
c843578c269d Make building work on Windows.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4137
diff changeset
160 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/graal
0
a61af66fc99e Initial load
duke
parents:
diff changeset
161 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
162 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/code
a61af66fc99e Initial load
duke
parents:
diff changeset
163 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
164 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/ci
a61af66fc99e Initial load
duke
parents:
diff changeset
165 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/classfile
a61af66fc99e Initial load
duke
parents:
diff changeset
166 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parallelScavenge
a61af66fc99e Initial load
duke
parents:
diff changeset
167 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/shared
a61af66fc99e Initial load
duke
parents:
diff changeset
168 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parNew
a61af66fc99e Initial load
duke
parents:
diff changeset
169 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/concurrentMarkSweep
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 110
diff changeset
170 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/g1
0
a61af66fc99e Initial load
duke
parents:
diff changeset
171 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_interface
a61af66fc99e Initial load
duke
parents:
diff changeset
172 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/asm
a61af66fc99e Initial load
duke
parents:
diff changeset
173 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/memory
a61af66fc99e Initial load
duke
parents:
diff changeset
174 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/oops
a61af66fc99e Initial load
duke
parents:
diff changeset
175 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/prims
a61af66fc99e Initial load
duke
parents:
diff changeset
176 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/runtime
a61af66fc99e Initial load
duke
parents:
diff changeset
177 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/services
a61af66fc99e Initial load
duke
parents:
diff changeset
178 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/utilities
a61af66fc99e Initial load
duke
parents:
diff changeset
179 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/libadt
a61af66fc99e Initial load
duke
parents:
diff changeset
180 VM_PATH=$(VM_PATH);$(WorkSpace)/src/os/windows/vm
a61af66fc99e Initial load
duke
parents:
diff changeset
181 VM_PATH=$(VM_PATH);$(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm
a61af66fc99e Initial load
duke
parents:
diff changeset
182 VM_PATH=$(VM_PATH);$(WorkSpace)/src/cpu/$(Platform_arch)/vm
a61af66fc99e Initial load
duke
parents:
diff changeset
183 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/opto
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 VM_PATH={$(VM_PATH)}
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 # Special case files not using precompiled header files.
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 c1_RInfo_$(Platform_arch).obj: $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
190 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 os_windows.obj: $(WorkSpace)\src\os\windows\vm\os_windows.cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
193 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\os_windows.cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 os_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
196 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 osThread_windows.obj: $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
199 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 conditionVar_windows.obj: $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
202 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 getThread_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
205 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 opcodes.obj: $(WorkSpace)\src\share\vm\opto\opcodes.cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
208 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\share\vm\opto\opcodes.cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 bytecodeInterpreter.obj: $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
211 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 bytecodeInterpreterWithChecks.obj: ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
1983
c760f78e0a53 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 1972
diff changeset
214 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
0
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 # Default rules for the Virtual Machine
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
217 {$(COMMONSRC)\share\vm\c1}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
219
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
220 {$(COMMONSRC)\share\vm\compiler}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
221 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
222
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
223 {$(COMMONSRC)\share\vm\code}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
225
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
226 {$(COMMONSRC)\share\vm\interpreter}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
228
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
229 {$(COMMONSRC)\share\vm\ci}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
230 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
231
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
232 {$(COMMONSRC)\share\vm\classfile}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
233 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
234
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
235 {$(COMMONSRC)\share\vm\gc_implementation\parallelScavenge}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
237
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
238 {$(COMMONSRC)\share\vm\gc_implementation\shared}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
239 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
240
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
241 {$(COMMONSRC)\share\vm\gc_implementation\parNew}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
242 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
243
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
244 {$(COMMONSRC)\share\vm\gc_implementation\concurrentMarkSweep}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
246
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
247 {$(COMMONSRC)\share\vm\gc_implementation\g1}.cpp.obj::
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 110
diff changeset
248 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 110
diff changeset
249
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
250 {$(COMMONSRC)\share\vm\gc_interface}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
251 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
252
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
253 {$(COMMONSRC)\share\vm\asm}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
254 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
255
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
256 {$(COMMONSRC)\share\vm\memory}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
257 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
258
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
259 {$(COMMONSRC)\share\vm\oops}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
260 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
261
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
262 {$(COMMONSRC)\share\vm\prims}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
263 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
264
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
265 {$(COMMONSRC)\share\vm\runtime}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
266 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
267
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
268 {$(COMMONSRC)\share\vm\services}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
269 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
270
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
271 {$(COMMONSRC)\share\vm\utilities}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
272 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
273
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
274 {$(COMMONSRC)\share\vm\libadt}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
275 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
276
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
277 {$(COMMONSRC)\share\vm\opto}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
278 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
279
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
280 {$(COMMONSRC)\os\windows\vm}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 # This guy should remain a single colon rule because
a61af66fc99e Initial load
duke
parents:
diff changeset
284 # otherwise we can't specify the output filename.
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
285 {$(COMMONSRC)\os\windows\vm}.rc.res:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
286 @$(RC) $(RC_FLAGS) /fo"$@" $<
a61af66fc99e Initial load
duke
parents:
diff changeset
287
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
288 {$(COMMONSRC)\cpu\$(Platform_arch)\vm}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
289 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
290
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
291 {$(COMMONSRC)\os_cpu\windows_$(Platform_arch)\vm}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
292 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
293
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
294 {$(ALTSRC)\share\vm\c1}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
295 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
296
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
297 {$(ALTSRC)\share\vm\compiler}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
298 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
299
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
300 {$(ALTSRC)\share\vm\code}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
301 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
302
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
303 {$(ALTSRC)\share\vm\interpreter}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
304 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
305
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
306 {$(ALTSRC)\share\vm\ci}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
307 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
308
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
309 {$(ALTSRC)\share\vm\classfile}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
310 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
311
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
312 {$(ALTSRC)\share\vm\gc_implementation\parallelScavenge}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
313 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
314
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
315 {$(ALTSRC)\share\vm\gc_implementation\shared}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
316 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
317
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
318 {$(ALTSRC)\share\vm\gc_implementation\parNew}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
319 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
320
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
321 {$(ALTSRC)\share\vm\gc_implementation\concurrentMarkSweep}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
322 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
323
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
324 {$(ALTSRC)\share\vm\gc_implementation\g1}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
325 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
326
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
327 {$(ALTSRC)\share\vm\gc_interface}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
328 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
329
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
330 {$(ALTSRC)\share\vm\asm}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
331 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
332
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
333 {$(ALTSRC)\share\vm\memory}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
334 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
335
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
336 {$(ALTSRC)\share\vm\oops}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
337 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
338
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
339 {$(ALTSRC)\share\vm\prims}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
340 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
341
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
342 {$(ALTSRC)\share\vm\runtime}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
343 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
344
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
345 {$(ALTSRC)\share\vm\services}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
346 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
347
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
348 {$(ALTSRC)\share\vm\utilities}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
349 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
350
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
351 {$(ALTSRC)\share\vm\libadt}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
352 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
353
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
354 {$(ALTSRC)\share\vm\opto}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
355 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
356
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
357 {$(ALTSRC)\os\windows\vm}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
358 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
359
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
360 # otherwise we can't specify the output filename.
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
361 {$(ALTSRC)\os\windows\vm}.rc.res:
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
362 @$(RC) $(RC_FLAGS) /fo"$@" $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
363
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
364 {$(ALTSRC)\cpu\$(Platform_arch)\vm}.cpp.obj::
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
365 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
366
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2027
diff changeset
367 {$(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm}.cpp.obj::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
368 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 {..\generated\incls}.cpp.obj::
a61af66fc99e Initial load
duke
parents:
diff changeset
371 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
372
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
373 {..\generated\adfiles}.cpp.obj::
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
374 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
375
0
a61af66fc99e Initial load
duke
parents:
diff changeset
376 {..\generated\jvmtifiles}.cpp.obj::
a61af66fc99e Initial load
duke
parents:
diff changeset
377 $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 default::
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 _build_pch_file.obj:
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
382 @echo #include "precompiled.hpp" > ../generated/_build_pch_file.cpp
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
383 $(CPP) $(CPP_FLAGS) /Fp"vm.pch" /Yc"precompiled.hpp" /c ../generated/_build_pch_file.cpp