From 1cabb6e02b1408b783038627a4ad1d30eabb7f10 Mon Sep 17 00:00:00 2001 From: Andrew Linzie Date: Sun, 8 Sep 2024 15:13:47 -0400 Subject: [PATCH] docs: Use `--verbose` with performance CPython build instructions (#3053) --- plugins/python-build/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/README.md b/plugins/python-build/README.md index 2c02e76c..b717512f 100644 --- a/plugins/python-build/README.md +++ b/plugins/python-build/README.md @@ -208,7 +208,7 @@ enables PGO (profile guided optimization). While your mileage may vary, it is common for performance improvement from this to be in the ballpark of 30%. ```sh -env PYTHON_CONFIGURE_OPTS='--enable-optimizations --with-lto' PYTHON_CFLAGS='-march=native -mtune=native' pyenv install 3.6.0 +env PYTHON_CONFIGURE_OPTS='--enable-optimizations --with-lto' PYTHON_CFLAGS='-march=native -mtune=native' pyenv install --verbose 3.6.0 ``` You can also customize the task used for profile guided optimization by setting