diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-10-09 17:40:00 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-10-10 18:01:19 -0400 |
commit | 1dfd9313a2e1c25c5da5bfce9710a90a6016a0cd (patch) | |
tree | 3f5f09a173b7da77e7faef08956086afdcba7228 /SConstruct | |
parent | 766331436b3dcb71d57926a2727bd8980622f6e0 (diff) | |
download | mongo-1dfd9313a2e1c25c5da5bfce9710a90a6016a0cd.tar.gz |
MSVC & Clang Warning Cleanup
FAllocate & FTruncate fixes
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index b2df6ccc3f6..cc7a0f49343 100644 --- a/SConstruct +++ b/SConstruct @@ -16,7 +16,7 @@ AddOption("--enable-snappy", dest="snappy", type="string", nargs=1, action="stor env = Environment( CPPPATH = ["#/src/include/", "#/."], - CFLAGS = ["/Z7"], + CFLAGS = ["/Z7", "/wd4090"], LINKFLAGS = ["/DEBUG"], ) @@ -112,7 +112,6 @@ env.Program("wt", [ "src/utilities/util_create.c", "src/utilities/util_drop.c", "src/utilities/util_dump.c", - "src/utilities/util_getopt.c", "src/utilities/util_list.c", "src/utilities/util_load.c", "src/utilities/util_loadtext.c", |