comparison make/windows/makefiles/debug.make @ 5915:2d503de963b3

7148152: Add whitebox testing API to HotSpot Summary: Add an internal testing API to HotSpot to enable more targeted testing of vm functionality Reviewed-by: phh, dholmes
author mgerdin
date Thu, 23 Feb 2012 14:58:35 +0100
parents 719f7007c8e8
children 74c359c4a9e5
comparison
equal deleted inserted replaced
4956:4ab89de75552 5915:2d503de963b3
1 # 1 #
2 # Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 # 4 #
5 # This code is free software; you can redistribute it and/or modify it 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 6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
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 36 default:: $(BUILD_PCH_FILE) $(AOUT) launcher checkAndBuildSA wb
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) $(DEBUG_OPT_OPTION) 41 CXX_FLAGS=$(CXX_FLAGS) $(DEBUG_OPT_OPTION)
63 !endif 63 !endif
64 64
65 !include $(WorkSpace)/make/windows/makefiles/shared.make 65 !include $(WorkSpace)/make/windows/makefiles/shared.make
66 !include $(WorkSpace)/make/windows/makefiles/sa.make 66 !include $(WorkSpace)/make/windows/makefiles/sa.make
67 !include $(WorkSpace)/make/windows/makefiles/launcher.make 67 !include $(WorkSpace)/make/windows/makefiles/launcher.make
68 !include $(WorkSpace)/make/windows/makefiles/wb.make