make/windows/makefiles/vm.make

Wed, 11 Jan 2012 17:34:02 -0500

author
phh
date
Wed, 11 Jan 2012 17:34:02 -0500
changeset 3427
94ec88ca68e2
parent 3229
95009f678859
child 3518
719f7007c8e8
permissions
-rw-r--r--

7115199: Add event tracing hooks and Java Flight Recorder infrastructure
Summary: Added a nop tracing infrastructure, JFR makefile changes and other infrastructure used only by JFR.
Reviewed-by: acorn, sspitsyn
Contributed-by: markus.gronlund@oracle.com

     1 #
     2 # Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.
     8 #
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12 # version 2 for more details (a copy is included in the LICENSE file that
    13 # accompanied this code).
    14 #
    15 # You should have received a copy of the GNU General Public License version
    16 # 2 along with this work; if not, write to the Free Software Foundation,
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 #
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    21 # questions.
    22 #
    23 #
    25 # Resource file containing VERSIONINFO
    26 Res_Files=.\version.res
    28 !include ..\generated\objfiles.make
    30 COMMONSRC=$(WorkSpace)\src
    31 ALTSRC=$(WorkSpace)\src\closed
    33 !ifdef RELEASE
    34 !ifdef DEVELOP
    35 CPP_FLAGS=$(CPP_FLAGS) /D "DEBUG"
    36 !else
    37 CPP_FLAGS=$(CPP_FLAGS) /D "PRODUCT"
    38 !endif
    39 !else
    40 CPP_FLAGS=$(CPP_FLAGS) /D "ASSERT"
    41 !endif
    43 !if "$(Variant)" == "core"
    44 # No need to define anything, CORE is defined as !COMPILER1 && !COMPILER2
    45 !endif
    47 !if "$(Variant)" == "kernel"
    48 CPP_FLAGS=$(CPP_FLAGS) /D "KERNEL"
    49 !endif
    51 !if "$(Variant)" == "compiler1"
    52 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1"
    53 !endif
    55 !if "$(Variant)" == "compiler2"
    56 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER2"
    57 !endif
    59 !if "$(Variant)" == "tiered"
    60 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "COMPILER2"
    61 !endif
    63 !if "$(BUILDARCH)" == "i486"
    64 HOTSPOT_LIB_ARCH=i386
    65 !else
    66 HOTSPOT_LIB_ARCH=$(BUILDARCH)
    67 !endif
    69 # The following variables are defined in the generated local.make file.
    70 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_RELEASE_VERSION=\"$(HS_BUILD_VER)\""
    71 CPP_FLAGS=$(CPP_FLAGS) /D "JRE_RELEASE_VERSION=\"$(JRE_RELEASE_VER)\""
    72 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_LIB_ARCH=\"$(HOTSPOT_LIB_ARCH)\""
    73 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_TARGET=\"$(BUILD_FLAVOR)\""
    74 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_USER=\"$(BuildUser)\""
    75 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_VM_DISTRO=\"$(HOTSPOT_VM_DISTRO)\""
    77 !ifndef JAVASE_EMBEDDED
    78 CPP_FLAGS=$(CPP_FLAGS) /D "INCLUDE_TRACE"
    79 !endif
    81 CPP_FLAGS=$(CPP_FLAGS) $(CPP_INCLUDE_DIRS)
    83 # Define that so jni.h is on correct side
    84 CPP_FLAGS=$(CPP_FLAGS) /D "_JNI_IMPLEMENTATION_"
    86 !if "$(BUILDARCH)" == "ia64"
    87 STACK_SIZE="/STACK:1048576,262144"
    88 !else
    89 STACK_SIZE=
    90 !endif
    92 !if "$(BUILDARCH)" == "ia64"
    93 # AsyncGetCallTrace is not supported on IA64 yet
    94 AGCT_EXPORT=
    95 !else
    96 !if "$(Variant)" == "kernel"
    97 AGCT_EXPORT=
    98 !else
    99 AGCT_EXPORT=/export:AsyncGetCallTrace
   100 !endif
   101 !endif
   103 # If you modify exports below please do the corresponding changes in
   104 # src/share/tools/ProjectCreator/WinGammaPlatformVC7.java
   105 LINK_FLAGS=$(LINK_FLAGS) $(STACK_SIZE) /subsystem:windows /dll /base:0x8000000 \
   106   /export:JNI_GetDefaultJavaVMInitArgs       \
   107   /export:JNI_CreateJavaVM                   \
   108   /export:JVM_FindClassFromBootLoader        \
   109   /export:JNI_GetCreatedJavaVMs              \
   110   /export:jio_snprintf                       \
   111   /export:jio_printf                         \
   112   /export:jio_fprintf                        \
   113   /export:jio_vfprintf                       \
   114   /export:jio_vsnprintf                      \
   115   $(AGCT_EXPORT)                             \
   116   /export:JVM_GetVersionInfo                 \
   117   /export:JVM_GetThreadStateNames            \
   118   /export:JVM_GetThreadStateValues           \
   119   /export:JVM_InitAgentProperties
   121 CPP_INCLUDE_DIRS=/I "..\generated"
   123 !if exists($(ALTSRC)\share\vm)
   124 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\share\vm"
   125 !endif
   127 !if exists($(ALTSRC)\os\windows\vm)
   128 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\os\windows\vm"
   129 !endif
   131 !if exists($(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm)
   132 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm"
   133 !endif
   135 !if exists($(ALTSRC)\cpu\$(Platform_arch)\vm)
   136 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\cpu\$(Platform_arch)\vm"
   137 !endif
   139 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) \
   140   /I "$(COMMONSRC)\share\vm" \
   141   /I "$(COMMONSRC)\share\vm\precompiled" \
   142   /I "$(COMMONSRC)\share\vm\prims" \
   143   /I "$(COMMONSRC)\os\windows\vm" \
   144   /I "$(COMMONSRC)\os_cpu\windows_$(Platform_arch)\vm" \
   145   /I "$(COMMONSRC)\cpu\$(Platform_arch)\vm"
   147 CPP_DONT_USE_PCH=/D DONT_USE_PRECOMPILED_HEADER
   149 !if "$(USE_PRECOMPILED_HEADER)" != "0"
   150 CPP_USE_PCH=/Fp"vm.pch" /Yu"precompiled.hpp"
   151 !else
   152 CPP_USE_PCH=$(CPP_DONT_USE_PCH)
   153 !endif
   155 # Where to find the source code for the virtual machine (is this used?)
   156 VM_PATH=../generated
   157 VM_PATH=$(VM_PATH);../generated/adfiles
   158 VM_PATH=$(VM_PATH);../generated/jvmtifiles
   159 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/c1
   160 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/compiler
   161 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/code
   162 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/interpreter
   163 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/ci
   164 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/classfile
   165 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parallelScavenge
   166 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/shared
   167 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parNew
   168 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/concurrentMarkSweep
   169 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/g1
   170 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_interface
   171 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/asm
   172 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/memory
   173 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/oops
   174 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/prims
   175 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/runtime
   176 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/services
   177 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/trace
   178 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/utilities
   179 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/libadt
   180 VM_PATH=$(VM_PATH);$(WorkSpace)/src/os/windows/vm
   181 VM_PATH=$(VM_PATH);$(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm
   182 VM_PATH=$(VM_PATH);$(WorkSpace)/src/cpu/$(Platform_arch)/vm
   183 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/opto
   185 !if exists($(ALTSRC)\share\vm\jfr)
   186 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr/agent
   187 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr/agent/isolated_deps/util
   188 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr/jvm
   189 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr
   190 !endif
   192 VM_PATH={$(VM_PATH)}
   194 # Special case files not using precompiled header files.
   196 c1_RInfo_$(Platform_arch).obj: $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp 
   197 	 $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp
   199 os_windows.obj: $(WorkSpace)\src\os\windows\vm\os_windows.cpp
   200         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\os_windows.cpp
   202 os_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
   203         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
   205 osThread_windows.obj: $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
   206         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
   208 conditionVar_windows.obj: $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
   209         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
   211 getThread_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
   212         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
   214 opcodes.obj: $(WorkSpace)\src\share\vm\opto\opcodes.cpp
   215         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\share\vm\opto\opcodes.cpp
   217 bytecodeInterpreter.obj: $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
   218         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
   220 bytecodeInterpreterWithChecks.obj: ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
   221         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
   223 # Default rules for the Virtual Machine
   224 {$(COMMONSRC)\share\vm\c1}.cpp.obj::
   225         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   227 {$(COMMONSRC)\share\vm\compiler}.cpp.obj::
   228         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   230 {$(COMMONSRC)\share\vm\code}.cpp.obj::
   231         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   233 {$(COMMONSRC)\share\vm\interpreter}.cpp.obj::
   234         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   236 {$(COMMONSRC)\share\vm\ci}.cpp.obj::
   237         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   239 {$(COMMONSRC)\share\vm\classfile}.cpp.obj::
   240         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   242 {$(COMMONSRC)\share\vm\gc_implementation\parallelScavenge}.cpp.obj::
   243         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   245 {$(COMMONSRC)\share\vm\gc_implementation\shared}.cpp.obj::
   246         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   248 {$(COMMONSRC)\share\vm\gc_implementation\parNew}.cpp.obj::
   249         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   251 {$(COMMONSRC)\share\vm\gc_implementation\concurrentMarkSweep}.cpp.obj::
   252         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   254 {$(COMMONSRC)\share\vm\gc_implementation\g1}.cpp.obj::
   255         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   257 {$(COMMONSRC)\share\vm\gc_interface}.cpp.obj::
   258         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   260 {$(COMMONSRC)\share\vm\asm}.cpp.obj::
   261         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   263 {$(COMMONSRC)\share\vm\memory}.cpp.obj::
   264         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   266 {$(COMMONSRC)\share\vm\oops}.cpp.obj::
   267         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   269 {$(COMMONSRC)\share\vm\prims}.cpp.obj::
   270         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   272 {$(COMMONSRC)\share\vm\runtime}.cpp.obj::
   273         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   275 {$(COMMONSRC)\share\vm\services}.cpp.obj::
   276         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   278 {$(COMMONSRC)\share\vm\trace}.cpp.obj::
   279         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   281 {$(COMMONSRC)\share\vm\utilities}.cpp.obj::
   282         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   284 {$(COMMONSRC)\share\vm\libadt}.cpp.obj::
   285         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   287 {$(COMMONSRC)\share\vm\opto}.cpp.obj::
   288         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   290 {$(COMMONSRC)\os\windows\vm}.cpp.obj::
   291         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   293 # This guy should remain a single colon rule because
   294 # otherwise we can't specify the output filename.
   295 {$(COMMONSRC)\os\windows\vm}.rc.res:
   296         @$(RC) $(RC_FLAGS) /fo"$@" $<
   298 {$(COMMONSRC)\cpu\$(Platform_arch)\vm}.cpp.obj::
   299         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   301 {$(COMMONSRC)\os_cpu\windows_$(Platform_arch)\vm}.cpp.obj::
   302         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   304 {$(ALTSRC)\share\vm\c1}.cpp.obj::
   305         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   307 {$(ALTSRC)\share\vm\compiler}.cpp.obj::
   308         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   310 {$(ALTSRC)\share\vm\code}.cpp.obj::
   311         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   313 {$(ALTSRC)\share\vm\interpreter}.cpp.obj::
   314         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   316 {$(ALTSRC)\share\vm\ci}.cpp.obj::
   317         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   319 {$(ALTSRC)\share\vm\classfile}.cpp.obj::
   320         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   322 {$(ALTSRC)\share\vm\gc_implementation\parallelScavenge}.cpp.obj::
   323         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   325 {$(ALTSRC)\share\vm\gc_implementation\shared}.cpp.obj::
   326         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   328 {$(ALTSRC)\share\vm\gc_implementation\parNew}.cpp.obj::
   329         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   331 {$(ALTSRC)\share\vm\gc_implementation\concurrentMarkSweep}.cpp.obj::
   332         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   334 {$(ALTSRC)\share\vm\gc_implementation\g1}.cpp.obj::
   335         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   337 {$(ALTSRC)\share\vm\gc_interface}.cpp.obj::
   338         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   340 {$(ALTSRC)\share\vm\asm}.cpp.obj::
   341         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   343 {$(ALTSRC)\share\vm\memory}.cpp.obj::
   344         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   346 {$(ALTSRC)\share\vm\oops}.cpp.obj::
   347         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   349 {$(ALTSRC)\share\vm\prims}.cpp.obj::
   350         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   352 {$(ALTSRC)\share\vm\runtime}.cpp.obj::
   353         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   355 {$(ALTSRC)\share\vm\services}.cpp.obj::
   356         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   358 {$(ALTSRC)\share\vm\trace}.cpp.obj::
   359         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   361 {$(ALTSRC)\share\vm\utilities}.cpp.obj::
   362         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   364 {$(ALTSRC)\share\vm\libadt}.cpp.obj::
   365         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   367 {$(ALTSRC)\share\vm\opto}.cpp.obj::
   368         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   370 {$(ALTSRC)\os\windows\vm}.cpp.obj::
   371         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   373 # otherwise we can't specify the output filename.
   374 {$(ALTSRC)\os\windows\vm}.rc.res:
   375         @$(RC) $(RC_FLAGS) /fo"$@" $<
   377 {$(ALTSRC)\cpu\$(Platform_arch)\vm}.cpp.obj::
   378         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   380 {$(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm}.cpp.obj::
   381         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   383 {..\generated\incls}.cpp.obj::
   384         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   386 {..\generated\adfiles}.cpp.obj::
   387         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   389 {..\generated\jvmtifiles}.cpp.obj::
   390         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   392 {$(ALTSRC)\share\vm\jfr}.cpp.obj::
   393         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   395 {$(ALTSRC)\share\vm\jfr\agent}.cpp.obj::
   396         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   398 {$(ALTSRC)\share\vm\jfr\agent\isolated_deps\util}.cpp.obj::
   399         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   401 {$(ALTSRC)\share\vm\jfr\jvm}.cpp.obj::
   402         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
   404 default::
   406 _build_pch_file.obj:
   407         @echo #include "precompiled.hpp" > ../generated/_build_pch_file.cpp
   408         $(CPP) $(CPP_FLAGS) /Fp"vm.pch" /Yc"precompiled.hpp" /c ../generated/_build_pch_file.cpp

mercurial