0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

use Z7 on windows for debug builds so scons can run in parallel

This commit is contained in:
Eliot Horowitz 2010-07-04 08:28:50 -04:00
parent 8eb88a0f6e
commit ddd4bd9b9e

View File

@ -646,7 +646,7 @@ elif "win32" == os.sys.platform:
# /ZI debug info w/edit & continue
# /TP it's a c++ file
# RTC1 /GZ (Enable Stack Frame Run-Time Error Checking)
env.Append( CPPFLAGS=" /Od /RTC1 /MDd /Zi /TP /errorReport:none " )
env.Append( CPPFLAGS=" /Od /RTC1 /MDd /Z7 /TP /errorReport:none " )
env.Append( CPPFLAGS=' /Fd"mongod.pdb" ' )
env.Append( LINKFLAGS=" /debug " )