Index: native_client_sdk/src/tools/host_vc.mk |
diff --git a/native_client_sdk/src/tools/host_vc.mk b/native_client_sdk/src/tools/host_vc.mk |
index 945fee3892e6bf898b10bc242cde87fb0b0e3e13..d41629b22d8e9a762715d74392caa4f425e048b3 100644 |
--- a/native_client_sdk/src/tools/host_vc.mk |
+++ b/native_client_sdk/src/tools/host_vc.mk |
@@ -27,13 +27,13 @@ $(error Unable to find cl.exe in PATH while building Windows host build) |
endif |
-ifeq ('Debug','$(CONFIG)') |
-WIN_OPT_FLAGS ?= /Od /MTd /Z7 -D NACL_SDK_DEBUG |
-else |
+ifeq ($(CONFIG),Release) |
Sam Clegg
2013/05/30 17:40:19
This is now consistent with the corresponding chec
|
WIN_OPT_FLAGS ?= /O2 /MT /Z7 |
+else |
+WIN_OPT_FLAGS ?= /Od /MTd /Z7 -DNACL_SDK_DEBUG |
endif |
-WIN_FLAGS ?= -D WIN32 -D _WIN32 -D PTW32_STATIC_LIB |
+WIN_FLAGS ?= -DWIN32 -D_WIN32 -DPTW32_STATIC_LIB |
# |