Bug 47417 - Windows Release build of WebKit fails on 32-bit systems
Summary: Windows Release build of WebKit fails on 32-bit systems
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Windows XP
: P2 Normal
Assignee: Adam Roben (:aroben)
URL:
Keywords: InRadar, PlatformOnly
Depends on:
Blocks:
 
Reported: 2010-10-08 08:11 PDT by Adam Roben (:aroben)
Modified: 2010-10-08 09:04 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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>