mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
Use optimized versions of managed Python on Linux (#4775)
Fix #4774. ## Summary Change the python interpreter for linux installed with `uv python` to an optimized one. ## Test Plan I ran the following command on Linux (glibc) to confirm that an optimized (not debug built) Python is installed. ```bash # install python uv python install 3.12.3 # check build type uv run python -c "import sysconfig;print(sysconfig.get_config_var('Py_DEBUG'))" 0 ```
This commit is contained in:
parent
d858fb8901
commit
dc4ff84443
3 changed files with 658 additions and 661 deletions
File diff suppressed because it is too large
Load diff
|
@ -36,9 +36,6 @@ FLAVOR_PREFERENCES = [
|
||||||
"shared-noopt",
|
"shared-noopt",
|
||||||
"shared-noopt",
|
"shared-noopt",
|
||||||
"static-noopt",
|
"static-noopt",
|
||||||
"gnu-pgo+lto",
|
|
||||||
"gnu-lto",
|
|
||||||
"gnu-pgo",
|
|
||||||
"pgo+lto",
|
"pgo+lto",
|
||||||
"lto",
|
"lto",
|
||||||
"pgo",
|
"pgo",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue