]> granicus.if.org Git - python/commitdiff
Clean up the readme text around PGO a bit. (GH-6538)
authorGregory P. Smith <greg@krypto.org>
Thu, 19 Apr 2018 15:58:17 +0000 (08:58 -0700)
committerGitHub <noreply@github.com>
Thu, 19 Apr 2018 15:58:17 +0000 (08:58 -0700)
README.rst

index 05daca298ae74a68922163fd35ad8c1bd298959d..5420558f0dcaadc2cea2f1c98f8d19494012f468 100644 (file)
@@ -92,15 +92,16 @@ below.
 Profile Guided Optimization
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-PGO takes advantage of recent versions of the GCC or Clang compilers.  If ran,
-``make profile-opt`` will do several steps.
+PGO takes advantage of recent versions of the GCC or Clang compilers.  If used,
+either via ``configure --enable-optimizations`` above or by manually running
+``make profile-opt`` regardless of configure flags it will do several steps.
 
 First, the entire Python directory is cleaned of temporary files that may have
 resulted in a previous compilation.
 
 Then, an instrumented version of the interpreter is built, using suitable
-compiler flags for each flavour. Note that this is just an intermediary step
-and the binary resulted after this step is not good for real life workloads, as
+compiler flags for each flavour. Note that this is just an intermediary step.
+The binary resulting from this step is not good for real life workloads as
 it has profiling instructions embedded inside.
 
 After this instrumented version of the interpreter is built, the Makefile will