Bug 17817
| Summary: | REGRESSION (r30981): Release build broken under VC++ Express due to PGO | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Adam Roben (:aroben) <aroben> |
| Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | sfalken |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
Adam Roben (:aroben)
r30981 turned on Profile-Guided Optimization (PGO) in the Windows Release configuration by default. VC++ Express doesn't support PGO, so the Release build is broken by default for all VC++ Express users.
There is a workaround, which is to turn off PGO using the following command:
sed -i -e 's/LinkTimeCodeGeneration="4"/LinkTimeCodeGeneration="1"/' ~/WebKit/WebKit/win/WebKit.vcproj/WebKit.vcproj
We need to make the build work by default again!
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Adam Roben (:aroben)
Fixed by sfalken in r31033, which turned off PGO by default.