diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-08-01 08:05:27 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-08-01 08:05:27 (GMT) |
commit | 33f8c3a901cac9cd977d628c7bcf051a60f01969 (patch) | |
tree | cd62a33ea60526591d7a49fdd9355bfb04f45791 /PCbuild | |
parent | 8a15c37df7415189f6e9291df074fba68b68df43 (diff) | |
download | cpython-33f8c3a901cac9cd977d628c7bcf051a60f01969.zip cpython-33f8c3a901cac9cd977d628c7bcf051a60f01969.tar.gz cpython-33f8c3a901cac9cd977d628c7bcf051a60f01969.tar.bz2 |
Issue #8847: Disable COMDAT folding in Windows PGO builds.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pginstrument.vsprops | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pginstrument.vsprops b/PCbuild/pginstrument.vsprops index 38c5f18..99c117b 100644 --- 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"
|