aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/cc/msvc.txt
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2015-07-18 22:49:28 +0200
committerSimon Warta <[email protected]>2015-07-21 20:06:18 +0200
commita631f01cc981773d0756334d95ddb3e8485b2d00 (patch)
tree57af278a132019f0ea91ca9616875f9329e90932 /src/build-data/cc/msvc.txt
parent8e552a417cc895e9a20eadc2c3684c5e3925e0db (diff)
Adjust MSVC compile flags
/FS is needed for parallel builds /bigobj is needed for amalgamation build. Remove explicit setting from appveyor /DEBUG is a parameter, not a precompiler constant Conflicts: src/build-data/cc/msvc.txt
Diffstat (limited to 'src/build-data/cc/msvc.txt')
-rw-r--r--src/build-data/cc/msvc.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build-data/cc/msvc.txt b/src/build-data/cc/msvc.txt
index 123c593e6..1bb7454ba 100644
--- a/src/build-data/cc/msvc.txt
+++ b/src/build-data/cc/msvc.txt
@@ -8,8 +8,8 @@ add_include_dir_option "/I"
add_lib_dir_option -L
add_lib_option ""
-compile_flags_release "/O2"
-compile_flags_debug "/Od /Zi /DDEBUG"
+compile_flags_release "/bigobj /O2"
+compile_flags_debug "/bigobj /Od /Zi /FS /DEBUG"
app_opt_flags_release "/D_CONSOLE"
app_opt_flags_debug "/D_CONSOLE"