Bug 47417

Summary: Windows Release build of WebKit fails on 32-bit systems
Product: WebKit Reporter: Adam Roben (:aroben) <aroben>
Component: Tools / TestsAssignee: Adam Roben (:aroben) <aroben>
Status: RESOLVED FIXED    
Severity: Normal CC: sfalken
Priority: P2 Keywords: InRadar, PlatformOnly
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Windows XP   

Description Adam Roben (:aroben) 2010-10-08 08:11:03 PDT
The Windows Release build is failing on 32-bit systems again. WebCore has grown so large that the linker can't map it all into virtual memory.
Comment 1 Adam Roben (:aroben) 2010-10-08 08:12:21 PDT
I tried consolidating all .cpp files in WebCore/rendering into a RenderingAllInOne.cpp file. This made WebCore.vcproj succeed, but WebKit.vcproj is now failing with this error:

13>fatal error C1083: Cannot open compiler intermediate file: 'h:\cyghome\dev\Build_WebKit\lib\WebCore.lib': Not enough space

I then tried also consolidating all .cpp files in WebCore/rendering/style into a StyleAllInOne.cpp, and now WebKit.vcproj says:

10>fatal error C1083: Cannot open compiler intermediate file: 'h:\cyghome\dev\Build_WebKit\lib\WebKitLib.lib': Not enough space
Comment 2 Adam Roben (:aroben) 2010-10-08 08:14:40 PDT
<rdar://problem/8529362>
Comment 3 Adam Roben (:aroben) 2010-10-08 08:55:47 PDT
Consolidating all of WebCore/dom in addition to WebCore/rendering seems to have done the trick.
Comment 4 Adam Roben (:aroben) 2010-10-08 09:04:47 PDT
Committed r69404: <http://trac.webkit.org/changeset/69404>