Add some preliminary options for building with msvc and waf

This commit is contained in:
John Emmas 2014-12-22 17:41:02 +00:00
parent 92376a657d
commit 1eda0bac19
1 changed files with 6 additions and 5 deletions

11
wscript
View File

@ -55,16 +55,17 @@ compiler_flags_dictionaries= {
'c99': '-std=c99',
},
'msvc' : {
'debuggable' : ['/Od', '/Zi', '/MTd'],
'linker-debuggable' : ['/DEBUG' ],
'nondebuggable' : [ '/MD', '-DNDEBUG' ],
'debuggable' : ['/DDEBUG', '/Od', '/Zi', '/MDd', '/Gd', '/EHsc'],
'linker-debuggable' : ['/DEBUG', '/INCREMENTAL' ],
'nondebuggable' : ['/DNDEBUG', '/Ob1', '/MD', '/Gd', '/EHsc'],
'profile' : '',
'sse' : '/arch:SSE',
'silence-unused-arguments' : '',
'sse' : '',
'fpmath-see' : '',
'xmmintrinsics' : '',
'pipe' : '',
'full-optimization' : '',
'full-optimization' : '/O2',
'no-frame-pointer' : '',
'fast-math' : '',
'strength-reduce' : '',
@ -78,7 +79,7 @@ compiler_flags_dictionaries= {
'c-strict' : '',
'cxx-strict' : '',
'strict' : '',
'c99': '-TP',
'c99': '/TP',
},
}