File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -92,15 +92,16 @@ below.
9292Profile Guided Optimization
9393^^^^^^^^^^^^^^^^^^^^^^^^^^^
9494
95- PGO takes advantage of recent versions of the GCC or Clang compilers. If ran,
96- ``make profile-opt `` will do several steps.
95+ PGO takes advantage of recent versions of the GCC or Clang compilers. If used,
96+ either via ``configure --enable-optimizations `` above or by manually running
97+ ``make profile-opt `` regardless of configure flags it will do several steps.
9798
9899First, the entire Python directory is cleaned of temporary files that may have
99100resulted in a previous compilation.
100101
101102Then, an instrumented version of the interpreter is built, using suitable
102- compiler flags for each flavour. Note that this is just an intermediary step
103- and the binary resulted after this step is not good for real life workloads, as
103+ compiler flags for each flavour. Note that this is just an intermediary step.
104+ The binary resulting from this step is not good for real life workloads as
104105it has profiling instructions embedded inside.
105106
106107After this instrumented version of the interpreter is built, the Makefile will
You can’t perform that action at this time.
0 commit comments