cpython (2.7): Issue #8847: Disable COMDAT folding in Windows PGO builds.
http://hg.python.org/cpython/rev/5a8c5631463f changeset: 78365:5a8c5631463f branch: 2.7 parent: 78350:8f1a8e80f330 user: Martin v. Löwis <martin@v.loewis.de> date: Wed Aug 01 10:05:27 2012 +0200 summary: Issue #8847: Disable COMDAT folding in Windows PGO builds. files: Misc/NEWS | 2 ++ PCbuild/pginstrument.vsprops | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS --- a/Misc/NEWS +++ b/Misc/NEWS @@ -315,6 +315,8 @@ Build ----- +- Issue #8847: Disable COMDAT folding in Windows PGO builds. + - Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs. - Issue #8767: Restore building with --disable-unicode. diff --git a/PCbuild/pginstrument.vsprops b/PCbuild/pginstrument.vsprops --- a/PCbuild/pginstrument.vsprops +++ b/PCbuild/pginstrument.vsprops @@ -22,7 +22,7 @@ <Tool Name="VCLinkerTool" OptimizeReferences="2" - EnableCOMDATFolding="2" + EnableCOMDATFolding="1" LinkTimeCodeGeneration="2" ProfileGuidedDatabase="$(SolutionDir)$(PlatformName)-pgi\$(TargetName).pgd" ImportLibrary="$(OutDirPGI)\$(TargetName).lib" -- Repository URL: http://hg.python.org/cpython
participants (1)
-
martin.v.loewis