comparison make/windows/makefiles/compile.make @ 8821:6b748c9e1845

8010651: create.bat still builds the kernel Summary: Remove old kernel build targets and VS C++ projects created by create.bat on Windows Reviewed-by: coleenp, sla
author zgu
date Tue, 26 Mar 2013 14:11:21 -0400
parents 74c359c4a9e5
children 0380df7c3cd0
comparison
equal deleted inserted replaced
8816:729be16a470b 8821:6b748c9e1845
219 !if "$(BUILDARCH)" == "i486" 219 !if "$(BUILDARCH)" == "i486"
220 LD_FLAGS = /SAFESEH $(LD_FLAGS) 220 LD_FLAGS = /SAFESEH $(LD_FLAGS)
221 !endif 221 !endif
222 !endif 222 !endif
223 223
224 # Compile for space above time.
225 !if "$(Variant)" == "kernel"
226 PRODUCT_OPT_OPTION = /O1 /Oy-
227 FASTDEBUG_OPT_OPTION = /O1 /Oy-
228 DEBUG_OPT_OPTION = /Od
229 !endif
230
231 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off 224 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
232 !ifdef NO_OPTIMIZATIONS 225 !ifdef NO_OPTIMIZATIONS
233 PRODUCT_OPT_OPTION = $(DEBUG_OPT_OPTION) 226 PRODUCT_OPT_OPTION = $(DEBUG_OPT_OPTION)
234 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION) 227 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
235 !endif 228 !endif