mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-30 11:37:24 +00:00
Create lib64 symlink for 64-bit, non-macOS, POSIX environments (#3584)
## Summary Closes https://github.com/astral-sh/uv/issues/3578#issuecomment-2110675382. ## Test Plan Verified that in the OpenSUSE test, we create both, and they're symlinks: ```text INFO: Creating virtual environment with `venv`... INFO: Installing into `venv` virtual environment... DEBUG Found a virtualenv named .venv at: /tmp/tmp4nape29h/.venv DEBUG Cached interpreter info for Python 3.10.14, skipping probing: .venv/bin/python DEBUG Using Python 3.10.14 environment at .venv/bin/python DEBUG Trying to lock if free: .venv/.lock purelib: "/tmp/tmp4nape29h/.venv/lib/python3.10/site-packages" platlib: "/tmp/tmp4nape29h/.venv/lib64/python3.10/site-packages" is_same_file(purelib, platlib): Ok(true) ```
This commit is contained in:
parent
e64c337cc5
commit
30a7475029
5 changed files with 57 additions and 2 deletions
|
|
@ -17,6 +17,7 @@ use pypi_types::Scheme;
|
|||
use uv_cache::{Cache, CacheBucket, CachedByTimestamp, Freshness, Timestamp};
|
||||
use uv_fs::{write_atomic_sync, PythonExt, Simplified};
|
||||
|
||||
use crate::pointer_size::PointerSize;
|
||||
use crate::{Error, PythonVersion, Target, VirtualEnvironment};
|
||||
|
||||
/// A Python executable and its associated platform markers.
|
||||
|
|
@ -35,6 +36,7 @@ pub struct Interpreter {
|
|||
stdlib: PathBuf,
|
||||
tags: OnceCell<Tags>,
|
||||
target: Option<Target>,
|
||||
pointer_size: PointerSize,
|
||||
gil_disabled: bool,
|
||||
}
|
||||
|
||||
|
|
@ -56,6 +58,7 @@ impl Interpreter {
|
|||
virtualenv: info.virtualenv,
|
||||
prefix: info.prefix,
|
||||
base_exec_prefix: info.base_exec_prefix,
|
||||
pointer_size: info.pointer_size,
|
||||
gil_disabled: info.gil_disabled,
|
||||
base_prefix: info.base_prefix,
|
||||
base_executable: info.base_executable,
|
||||
|
|
@ -95,6 +98,7 @@ impl Interpreter {
|
|||
stdlib: PathBuf::from("/dev/null"),
|
||||
tags: OnceCell::new(),
|
||||
target: None,
|
||||
pointer_size: PointerSize::_64,
|
||||
gil_disabled: false,
|
||||
}
|
||||
}
|
||||
|
|
@ -326,6 +330,11 @@ impl Interpreter {
|
|||
&self.virtualenv
|
||||
}
|
||||
|
||||
/// Return the [`PointerSize`] of the Python interpreter (i.e., 32- vs. 64-bit).
|
||||
pub fn pointer_size(&self) -> PointerSize {
|
||||
self.pointer_size
|
||||
}
|
||||
|
||||
/// Return whether this is a Python 3.13+ freethreading Python, as specified by the sysconfig var
|
||||
/// `Py_GIL_DISABLED`.
|
||||
///
|
||||
|
|
@ -429,6 +438,7 @@ struct InterpreterInfo {
|
|||
sys_executable: PathBuf,
|
||||
sys_path: Vec<PathBuf>,
|
||||
stdlib: PathBuf,
|
||||
pointer_size: PointerSize,
|
||||
gil_disabled: bool,
|
||||
}
|
||||
|
||||
|
|
@ -662,6 +672,7 @@ mod tests {
|
|||
"purelib": "lib/python3.12/site-packages",
|
||||
"scripts": "bin"
|
||||
},
|
||||
"pointer_size": "64",
|
||||
"gil_disabled": true
|
||||
}
|
||||
"##};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue