Bug 47417
| Summary: | Windows Release build of WebKit fails on 32-bit systems | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Adam Roben (:aroben) <aroben> |
| Component: | Tools / Tests | Assignee: | 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 | ||
Adam Roben (:aroben)
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.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Adam Roben (:aroben)
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
Adam Roben (:aroben)
<rdar://problem/8529362>
Adam Roben (:aroben)
Consolidating all of WebCore/dom in addition to WebCore/rendering seems to have done the trick.
Adam Roben (:aroben)
Committed r69404: <http://trac.webkit.org/changeset/69404>