Turning on incremental linking for 64-bit machines.

BUG=18646
TEST=None

Review URL: http://codereview.chromium.org/165140

git-svn-id: http://src.chromium.org/svn/trunk/src/build@22790 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
bradnelson@chromium.org 2009-08-07 21:16:03 +00:00
Родитель 9bd2745ff5
Коммит 18a84ba68c
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -151,6 +151,12 @@
},{
'msvs_multi_core_compile%': 1,
}],
# Don't do incremental linking for large modules on 32-bit.
['MSVS_OS_BITS==32', {
'msvs_large_module_debug_link_mode%': '1', # No
},{
'msvs_large_module_debug_link_mode%': '2', # Yes
}],
],
}],
],
@ -205,7 +211,7 @@
'VCLinkerTool': {
'Profile': 'true',
},
'VCCLCompilerTool': {
'VCCLCompilerTool': {
# /Z7, not /Zi, so coverage is happyb
'DebugInformationFormat': '1',
'AdditionalOptions': '/Yd',