[Python-checkins] cpython: Output lib files for PGO build into PGO directory.

martin.v.loewis python-checkins at python.org
Fri Aug 24 16:13:03 CEST 2012


http://hg.python.org/cpython/rev/46e83012c413
changeset:   78730:46e83012c413
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Fri Aug 24 16:12:28 2012 +0200
summary:
  Output lib files for PGO build into PGO directory.

files:
  Misc/NEWS              |  2 ++
  PCbuild/pgupdate.props |  1 +
  2 files changed, 3 insertions(+), 0 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -115,6 +115,8 @@
 Build
 -----
 
+- Output lib files for PGO build into PGO directory.
+
 - Pick up 32-bit launcher from PGO directory on 64-bit PGO build.
 
 - Drop PC\python_nt.h as it's not used. Add input dependency on custom
diff --git a/PCbuild/pgupdate.props b/PCbuild/pgupdate.props
--- a/PCbuild/pgupdate.props
+++ b/PCbuild/pgupdate.props
@@ -11,6 +11,7 @@
     <Link>
       <AdditionalManifestDependencies>%(AdditionalManifestDependencies)</AdditionalManifestDependencies>
       <LinkTimeCodeGeneration>PGUpdate</LinkTimeCodeGeneration>
+      <ImportLibrary>$(OutDir)$(TargetName).lib</ImportLibrary>
     </Link>
   </ItemDefinitionGroup>
 </Project>
\ No newline at end of file

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list