comparison make/windows/makefiles/fastdebug.make @ 8098:1b0dc9f87e75

8006753: fix failed for JDK-8002415 White box testing API for HotSpot Summary: Modify WhiteBoxAPI to use interface classes from test/testlibrary instead, add ClassFileInstaller to resolve the boot class path issue Reviewed-by: ctornqvi, dsamersoff, coleenp, kvn
author mgerdin
date Tue, 19 Feb 2013 18:45:49 +0100
parents 74c359c4a9e5
children aabf54ccedb1
comparison
equal deleted inserted replaced
8069:1048edb5434a 8098:1b0dc9f87e75
31 # Allow the user to turn off precompiled headers from the command line. 31 # Allow the user to turn off precompiled headers from the command line.
32 !if "$(USE_PRECOMPILED_HEADER)" != "0" 32 !if "$(USE_PRECOMPILED_HEADER)" != "0"
33 BUILD_PCH_FILE=_build_pch_file.obj 33 BUILD_PCH_FILE=_build_pch_file.obj
34 !endif 34 !endif
35 35
36 default:: $(BUILD_PCH_FILE) $(AOUT) launcher checkAndBuildSA wb 36 default:: $(BUILD_PCH_FILE) $(AOUT) launcher checkAndBuildSA
37 37
38 !include ../local.make 38 !include ../local.make
39 !include compile.make 39 !include compile.make
40 40
41 CXX_FLAGS=$(CXX_FLAGS) $(FASTDEBUG_OPT_OPTION) 41 CXX_FLAGS=$(CXX_FLAGS) $(FASTDEBUG_OPT_OPTION)
69 !endif 69 !endif
70 70
71 !include $(WorkSpace)/make/windows/makefiles/shared.make 71 !include $(WorkSpace)/make/windows/makefiles/shared.make
72 !include $(WorkSpace)/make/windows/makefiles/sa.make 72 !include $(WorkSpace)/make/windows/makefiles/sa.make
73 !include $(WorkSpace)/make/windows/makefiles/launcher.make 73 !include $(WorkSpace)/make/windows/makefiles/launcher.make
74 !include $(WorkSpace)/make/windows/makefiles/wb.make