Changeset 71179 in webkit


Ignore:
Timestamp:
Nov 2, 2010 3:35:40 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-11-02 Marc-Antoine Ruel <maruel@chromium.org>

Reviewed by Dimitri Glazkov.

Disable incremental linking for webkit_unit_test and DumpRenderTRee on x86 Windows on chromium build.
https://bugs.webkit.org/show_bug.cgi?id=48836

It fails to link otherwise due to lack of virtual address space.

  • WebKit.gyp:
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r71158 r71179  
     12010-11-02  Marc-Antoine Ruel  <maruel@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Disable incremental linking for webkit_unit_test and DumpRenderTRee on x86 Windows on chromium build.
     6        https://bugs.webkit.org/show_bug.cgi?id=48836
     7
     8        It fails to link otherwise due to lack of virtual address space.
     9
     10        * WebKit.gyp:
     11
    1122010-11-02  Ilya Sherman  <isherman@chromium.org>
    213
  • trunk/WebKit/chromium/WebKit.gyp

    r71077 r71179  
    801801                    ],
    802802                }],
     803                ['inside_chromium_build==1 and OS=="win" and component!="shared_library"', {
     804                    'configurations': {
     805                        'Debug_Base': {
     806                            'msvs_settings': {
     807                                'VCLinkerTool': {
     808                                    'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
     809                                },
     810                            },
     811                        },
     812                    },
     813                }],
    803814            ],
    804815        },
     
    872883                                '../../JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp:wtf',
    873884                            ],
     885                        }],
     886                        ['inside_chromium_build==1', {
     887                            'configurations': {
     888                                'Debug_Base': {
     889                                    'msvs_settings': {
     890                                        'VCLinkerTool': {
     891                                            'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
     892                                        },
     893                                    },
     894                                },
     895                            },
    874896                        }],
    875897                    ],
Note: See TracChangeset for help on using the changeset viewer.