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.
92
92
Profile Guided Optimization
93
93
^^^^^^^^^^^^^^^^^^^^^^^^^^^
94
94
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.
97
98
98
99
First, the entire Python directory is cleaned of temporary files that may have
99
100
resulted in a previous compilation.
100
101
101
102
Then, 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
104
105
it has profiling instructions embedded inside.
105
106
106
107
After this instrumented version of the interpreter is built, the Makefile will
You can’t perform that action at this time.
0 commit comments